diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml
deleted file mode 100644
index 4c68ceaa2..000000000
--- a/.github/workflows/bot.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Helper
-
-on:
- pull_request:
- types:
- - closed
-
-jobs:
- instructions:
- name: instructions
- runs-on: ubuntu-latest
- steps:
- - run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }}
- if: github.event.action == 'closed' && github.event.pull_request.merged == true
-# - uses: actions/checkout@v2
-# - name: Comment
-# if: github.event.action == 'closed' && github.event.pull_request.merged == true
-# uses: actions/github-script@v3
-# with:
-# github-token: ${{secrets.GITHUB_TOKEN}}
-# script: |
-# const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
-# const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
-# if (hasLabel(context, 'domain'))
-# console.log('Domain');
-# await instructions(context, github);
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 786060ccc..f4cc4fe4a 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -13,8 +13,8 @@ jobs:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- days-before-stale: 30
- days-before-close: 20
+ days-before-stale: 7
+ days-before-close: 14
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it'
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
exempt-issue-labels: 'no-stale'
diff --git a/.github/workflows/url-validation.yml b/.github/workflows/url-validation.yml
deleted file mode 100644
index 9818ba4f7..000000000
--- a/.github/workflows/url-validation.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: URL Validation
-on:
- schedule:
- - cron: '0 0 * * 1' # At 00:00 on Monday
- workflow_dispatch:
-
-jobs:
- validation:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- ref: ${{ github.event.pull_request.head.sha }}
- fetch-depth: 0
- - name: Setup Up Python
- uses: actions/setup-python@v4
- with:
- python-version: '3.10'
- - run: pip install requests
- - run: python tests/url-validation.py
- - name: Upload Artifact
- uses: actions/upload-artifact@v3
- with:
- name: URL Validiation Result
- path: url-validation-result.json
- retention-days: 7
diff --git a/Dockerfile b/Dockerfile
index d5a4de6b7..990a6e0b2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,17 +5,18 @@ RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
RUN apt-get -y update
RUN apt-get install -y nodejs npm curl wget dnsutils certbot --fix-missing
+RUN apt-get install -y unzip
-RUN npm i -g n yarn && n 15.11
+RUN bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'"
-RUN node -v
+RUN ~/.bun/bin/bun -v
WORKDIR /opt/app
-COPY yarn.lock .
+COPY bun.lockb .
COPY package.json .
-RUN yarn install
+RUN ~/.bun/bin/bun install
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
diff --git a/README.md b/README.md
index eca842896..a550559cc 100644
--- a/README.md
+++ b/README.md
@@ -16,12 +16,17 @@
+## Issues
+
+If you have any problems then feel free to open a issue on github.
+If you have an issue that contains confidental infomation then email hello@maintainers.is-a.dev any other emails will be ignored.
+
## Register
### Automated Registration
-Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your github account and click the register page in the navbar. Fill out some questions and it will all happen automagically!
+Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your GitHub account and click the register page in the navbar. Fill out some questions and it will all happen automatically!
-Another method is to join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing.
+Another method is to join our [Discord server](https://discord.gg/PZCGHz4RhQ), head to the commands channel and run `/register`. The bot will ask you a few questions then will generate your PR and domain automatically. The bot also allows for domain deletion and editing.
### Manual Registration
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
diff --git a/domains/0bun.json b/domains/0bun.json
new file mode 100644
index 000000000..4adae4bfb
--- /dev/null
+++ b/domains/0bun.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "zerobun",
+ "email": "tareku2003@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/0xaryan.json b/domains/0xaryan.json
new file mode 100644
index 000000000..aeeb2c4fc
--- /dev/null
+++ b/domains/0xaryan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aryan-212",
+ "email": "aryananandxic07@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/0xsurya.json b/domains/0xsurya.json
deleted file mode 100644
index 0c858e72f..000000000
--- a/domains/0xsurya.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "0xSuryax",
- "email": "surya98613@gmail.com"
- },
- "record": {
- "A": ["38.242.141.34"]
- }
-}
diff --git a/domains/1024.json b/domains/1024.json
index d2301f533..457912853 100644
--- a/domains/1024.json
+++ b/domains/1024.json
@@ -4,7 +4,7 @@
"email": "cuiyang673308817@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/123.json b/domains/123.json
new file mode 100644
index 000000000..529c35c6c
--- /dev/null
+++ b/domains/123.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NuroHimself",
+ "email": "nurorust2023@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/1ly4s0.json b/domains/1ly4s0.json
new file mode 100644
index 000000000..c1b07732a
--- /dev/null
+++ b/domains/1ly4s0.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "1ly4s0",
+ "email": "ilyaslamzouri2@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/1st-dev.json b/domains/1st-dev.json
deleted file mode 100644
index b15cfed15..000000000
--- a/domains/1st-dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "RainyXeon",
- "email": "minh15052008@gmail.com"
- },
-
- "record": {
- "CNAME": "5a3e476d-47ce-4088-9b34-42cdb8c3395b.id.repl.co"
- }
-}
diff --git a/domains/1st.json b/domains/1st.json
deleted file mode 100644
index ebca6a52b..000000000
--- a/domains/1st.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "1st.is-a.dev",
- "repo": "https://github.com/Rahuletto/1st",
- "owner": {
- "username": "Rahuletto",
- "email": "rahulmarban@gmail.com"
- },
- "record": {
- "CNAME": "d0720bf3-70d2-4b24-9273-b44ce8e0c708.id.repl.co"
- }
-}
diff --git a/domains/20gn.json b/domains/20gn.json
new file mode 100644
index 000000000..2e996496d
--- /dev/null
+++ b/domains/20gn.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "20GN",
+ "email": "da20gn@outlook.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/21z.json b/domains/21z.json
index 755d4554f..827a7ea01 100644
--- a/domains/21z.json
+++ b/domains/21z.json
@@ -4,7 +4,7 @@
"email": "hamdankalliyil@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gradle.phoenix.json b/domains/2fa.phoenix.json
similarity index 100%
rename from domains/gradle.phoenix.json
rename to domains/2fa.phoenix.json
diff --git a/domains/3kh0.json b/domains/3kh0.json
index 33565c187..0c3b4c076 100644
--- a/domains/3kh0.json
+++ b/domains/3kh0.json
@@ -4,7 +4,7 @@
"email": "echo-the-coder@tuta.io"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/4cxa.json b/domains/4cxa.json
deleted file mode 100644
index 31a49b946..000000000
--- a/domains/4cxa.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "4cxa",
- "email": "kurdiabood123@gmail.com"
- },
- "record": {
- "CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
- }
-}
diff --git a/domains/4cxaa.json b/domains/4cxaa.json
deleted file mode 100644
index 667db5586..000000000
--- a/domains/4cxaa.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VerloxDevs",
- "email": "VorlexDevs@outlook.com"
- },
- "record": {
- "CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
- }
-}
diff --git a/domains/4kh0.json b/domains/4kh0.json
new file mode 100644
index 000000000..bfa0623b9
--- /dev/null
+++ b/domains/4kh0.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EurekaMathSkillIssue",
+ "email": "ataharmolla@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/70a5.json b/domains/70a5.json
index 613a9726e..99f2d8448 100644
--- a/domains/70a5.json
+++ b/domains/70a5.json
@@ -4,7 +4,7 @@
"email": "joas.van.der.eerden@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/853.json b/domains/853.json
deleted file mode 100644
index 15f4a86fe..000000000
--- a/domains/853.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Sonic853",
- "email": "sonic853@qq.com"
- },
- "record": {
- "A": ["119.29.157.82"]
- }
-}
diff --git a/domains/9yma.net.json b/domains/9yma.net.json
new file mode 100644
index 000000000..3bfd2f73f
--- /dev/null
+++ b/domains/9yma.net.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "baratt-88",
+ "email": "anisaputry0708@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/_discord.alpha.json b/domains/_discord.alpha.json
index 4d7302871..55dd40074 100644
--- a/domains/_discord.alpha.json
+++ b/domains/_discord.alpha.json
@@ -1,7 +1,12 @@
{
"owner": {
"username": "YouFoundAlpha",
- "email": "sweepalf@gmail.com"
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
diff --git a/domains/_discord.amol254542.json b/domains/_discord.amol254542.json
new file mode 100644
index 000000000..98bc1dba9
--- /dev/null
+++ b/domains/_discord.amol254542.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amol234545",
+ "email": "amolmilton@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a"
+ }
+}
diff --git a/domains/_discord.cutedog5695.json b/domains/_discord.cutedog5695.json
new file mode 100644
index 000000000..a5a5a6012
--- /dev/null
+++ b/domains/_discord.cutedog5695.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CuteDog5695",
+ "email": "cutedog5695@gmail.com",
+ "discord": "cutedog5695",
+ "twitter": "cutedog5695"
+ },
+ "record": {
+ "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045"
+ }
+}
diff --git a/domains/_discord.dashboard.gattinhosbot.json b/domains/_discord.dashboard.gattinhosbot.json
new file mode 100644
index 000000000..557328c83
--- /dev/null
+++ b/domains/_discord.dashboard.gattinhosbot.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "stefano.delprete.08@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=8fb11c7ecad141914be5cc41aa1b4569dcd14f6c"
+ }
+}
diff --git a/domains/_discord.dyno.json b/domains/_discord.dyno.json
new file mode 100644
index 000000000..4390e6390
--- /dev/null
+++ b/domains/_discord.dyno.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DynoW",
+ "email": "naffets0@gmail.com",
+ "discord": "455608238335983617"
+ },
+ "record": {
+ "TXT": "dh=8bb2a3b679cd393d772165a0baf0eea849b5c698"
+ }
+}
diff --git a/domains/_discord.enderpoint.json b/domains/_discord.enderpoint.json
new file mode 100644
index 000000000..760e1edb2
--- /dev/null
+++ b/domains/_discord.enderpoint.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "EnderPoint07",
+ "email": "",
+ "discord": "DotM38#5497"
+ },
+ "record": {
+ "TXT": "dh=1ad21660e3db8fba8f5f18150a89514bee83350e"
+ }
+}
diff --git a/domains/_discord.jirafey.json b/domains/_discord.jirafey.json
new file mode 100644
index 000000000..363a429d5
--- /dev/null
+++ b/domains/_discord.jirafey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jirafey",
+ "email": "jirafey@tuta.io"
+ },
+ "record": {
+ "TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f"
+ }
+}
diff --git a/domains/_discord.krazy.json b/domains/_discord.krazy.json
new file mode 100644
index 000000000..e4299a3a6
--- /dev/null
+++ b/domains/_discord.krazy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KrazyKleb",
+ "email": "krazykleb@outlook.com"
+ },
+ "record": {
+ "TXT": "dh=9b437fc3639b73eb33fe9b536d5ad6acbec42dd1"
+ }
+}
diff --git a/domains/_discord.sdp.json b/domains/_discord.sdp.json
new file mode 100644
index 000000000..61a337e89
--- /dev/null
+++ b/domains/_discord.sdp.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "TXT": "dh=a34d656a6fb91723bfe4f87e413345df85ca74f7"
+ }
+}
diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json
new file mode 100644
index 000000000..16c3b5efc
--- /dev/null
+++ b/domains/_discord.yfa.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7"
+ }
+}
diff --git a/domains/_github-challenge-SpicyDevs-org.spicy.json b/domains/_github-challenge-SpicyDevs-org.spicy.json
new file mode 100644
index 000000000..e6af619d0
--- /dev/null
+++ b/domains/_github-challenge-SpicyDevs-org.spicy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "oyepriyansh",
+ "email": "oyepriyansh@hotmail.com"
+ },
+ "record": {
+ "TXT": "0e84f14f3a"
+ }
+}
diff --git a/domains/mailx.json b/domains/_github-challenge-is-a-dev-org.json
similarity index 78%
rename from domains/mailx.json
rename to domains/_github-challenge-is-a-dev-org.json
index 51b9f948b..db1e677a9 100644
--- a/domains/mailx.json
+++ b/domains/_github-challenge-is-a-dev-org.json
@@ -5,6 +5,6 @@
},
"record": {
- "A": ["217.174.245.249"]
+ "TXT": "2c9dfbe7c8"
}
}
diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json
index 2ccf8388a..ac9fe096c 100644
--- a/domains/_github-challenge-yfadev-org.alpha.json
+++ b/domains/_github-challenge-yfadev-org.alpha.json
@@ -1,7 +1,12 @@
{
- "owner": {
- "username": "YouFoundAlpha",
- "email": "sweepalf@gmail.com"
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "9568f60569"
diff --git a/domains/_github-challenge-yfadev-org.yfa.json b/domains/_github-challenge-yfadev-org.yfa.json
new file mode 100644
index 000000000..99114f25d
--- /dev/null
+++ b/domains/_github-challenge-yfadev-org.yfa.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "TXT": "3436b41d67"
+ }
+}
diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json
new file mode 100644
index 000000000..e7ee3c7b6
--- /dev/null
+++ b/domains/_github-challenge-yfadev-org.yfadev.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "TXT": "ed3c92c01a"
+ }
+}
diff --git a/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json
new file mode 100644
index 000000000..838943fcc
--- /dev/null
+++ b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CuteDog5695",
+ "email": "cutedog5695@gmail.com",
+ "discord": "cutedog5695",
+ "twitter": "cutedog5695"
+ },
+ "record": {
+ "TXT": "cd8aac10494e4b5b76656163a11508"
+ }
+}
diff --git a/domains/_github-pages-challenge-FoxsDenYT.foxsden.json b/domains/_github-pages-challenge-FoxsDenYT.foxsden.json
new file mode 100644
index 000000000..fea4fdbf5
--- /dev/null
+++ b/domains/_github-pages-challenge-FoxsDenYT.foxsden.json
@@ -0,0 +1,10 @@
+{
+ "description": "GitHub Pages verification for foxsden.is-a.dev",
+ "owner": {
+ "username": "FoxsDenYT",
+ "email": "foxsdenyt+isadev@gmail.com"
+ },
+ "record": {
+ "TXT": "37455d1a9cf706acc4f0cd6ada2ce7"
+ }
+}
diff --git a/domains/_github-pages-challenge-aravinds-arv.arv.json b/domains/_github-pages-challenge-aravinds-arv.arv.json
new file mode 100644
index 000000000..257fe1155
--- /dev/null
+++ b/domains/_github-pages-challenge-aravinds-arv.arv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aravinds-arv",
+ "email": "aravinds.arv@pm.me"
+ },
+ "record": {
+ "TXT": "4596a3ed04da898883da2218983b90"
+ }
+}
diff --git a/domains/_github-pages-challenge-avipars.avi.json b/domains/_github-pages-challenge-avipars.avi.json
index 65a8f5eeb..5bfed34ce 100644
--- a/domains/_github-pages-challenge-avipars.avi.json
+++ b/domains/_github-pages-challenge-avipars.avi.json
@@ -4,6 +4,6 @@
"email": "avi.pars@gmail.com"
},
"record": {
- "TXT": "68e225e3d290a962de10935ed3f684"
+ "TXT": "870948b647f71ebf9489fa34db4efb"
}
}
diff --git a/domains/_github-pages-challenge-berzcode.saurabhkirve.json b/domains/_github-pages-challenge-berzcode.saurabhkirve.json
new file mode 100644
index 000000000..a4f402de8
--- /dev/null
+++ b/domains/_github-pages-challenge-berzcode.saurabhkirve.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sxurabh",
+ "email": "saurabhkirve@gmail.com"
+ },
+
+ "record": {
+ "TXT": "e587577c97f73d2047aaf6ec8ff92c"
+ }
+}
diff --git a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json
new file mode 100644
index 000000000..088cebcb7
--- /dev/null
+++ b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github page domain verification",
+ "owner": {
+ "username": "fa-fifi",
+ "email": "fafifi1997@gmail.com"
+ },
+ "record": {
+ "TXT": "4076c15aac94a89c1a131d252cf368"
+ }
+}
diff --git a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json
index 6f3e033b2..ab60d6e9f 100644
--- a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json
+++ b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json
@@ -4,6 +4,6 @@
"email": "cp@imtaqin.id"
},
"record": {
- "TXT": "b300a7cdb4c929b57cae7e0bf0ab69"
+ "TXT": "54ca8d4fa780d986e86c1306c00519"
}
}
diff --git a/domains/_github-pages-challenge-is-a-dev.team.json b/domains/_github-pages-challenge-is-a-dev.team.json
new file mode 100644
index 000000000..d7e139dbd
--- /dev/null
+++ b/domains/_github-pages-challenge-is-a-dev.team.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
+ },
+
+ "record": {
+ "TXT": "c551c059fb167540ec0498d9011556"
+ }
+}
diff --git a/domains/_github-pages-challenge-jakehe1226.jakehe.json b/domains/_github-pages-challenge-jakehe1226.jakehe.json
new file mode 100644
index 000000000..9e8218f8e
--- /dev/null
+++ b/domains/_github-pages-challenge-jakehe1226.jakehe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jakehe1226",
+ "email": "jakehe1226@gmail.com"
+ },
+ "record": {
+ "TXT": "d96dac12901888fba491ca3e7666b6"
+ }
+}
diff --git a/domains/_github-pages-challenge-likalium.likalium.json b/domains/_github-pages-challenge-likalium.likalium.json
new file mode 100644
index 000000000..8e5150129
--- /dev/null
+++ b/domains/_github-pages-challenge-likalium.likalium.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "likalium",
+ "email": "",
+ "discord": "likalium"
+ },
+ "record": {
+ "TXT": "57407626f3a1e351e728a974c6d5af"
+ }
+}
diff --git a/domains/_github-pages-challenge-ottercodes101.otter.json b/domains/_github-pages-challenge-ottercodes101.otter.json
index 89938a826..eea69ba30 100644
--- a/domains/_github-pages-challenge-ottercodes101.otter.json
+++ b/domains/_github-pages-challenge-ottercodes101.otter.json
@@ -5,6 +5,6 @@
"email": "oliver.anderson4435@gmail.com"
},
"record": {
- "TXT": "088d75670097903fabd47977697d42"
+ "TXT": "39223fa7956e66887c05db8b244538"
}
}
diff --git a/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json
new file mode 100644
index 000000000..d54751e7b
--- /dev/null
+++ b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prakhillohiya",
+ "email": "prakhillohiya@gmail.com"
+ },
+ "record": {
+ "TXT": "31f067f6796f63a3cb4e0110ff10df"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json
new file mode 100644
index 000000000..26f89e82a
--- /dev/null
+++ b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riviox",
+ "email": "rivioxyt@hotmail.com"
+ },
+ "record": {
+ "TXT": "15bce163359555d636e6bd2cc5903f"
+ }
+}
diff --git a/domains/_github-pages-challenge-riviox.riviox.json b/domains/_github-pages-challenge-riviox.riviox.json
new file mode 100644
index 000000000..90cc26348
--- /dev/null
+++ b/domains/_github-pages-challenge-riviox.riviox.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riviox",
+ "email": "rivioxyt@hotmail.com"
+ },
+ "record": {
+ "TXT": "56a8f3f0363cd17d881a7380ede544"
+ }
+}
diff --git a/domains/_github-pages-challenge-rivioxgaming.riviox.json b/domains/_github-pages-challenge-rivioxgaming.riviox.json
new file mode 100644
index 000000000..be8ce37c2
--- /dev/null
+++ b/domains/_github-pages-challenge-rivioxgaming.riviox.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riviox",
+ "email": "rivioxyt@hotmail.com"
+ },
+ "record": {
+ "TXT": "2f2432d565a3e7e8f3a4577c0e4a90"
+ }
+}
diff --git a/domains/_github-pages-challenge-superuser-l.it.json b/domains/_github-pages-challenge-superuser-l.it.json
new file mode 100644
index 000000000..ff1a7f754
--- /dev/null
+++ b/domains/_github-pages-challenge-superuser-l.it.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tr1xem",
+ "email": "kmtechnical2006@gmail.com"
+ },
+ "record": {
+ "TXT": "612be6ed1c46c3f2ae43faf700aa5a"
+ }
+}
diff --git a/domains/_github-pages-challenge-superuser-l.this.json b/domains/_github-pages-challenge-superuser-l.this.json
new file mode 100644
index 000000000..ebb8e9ba5
--- /dev/null
+++ b/domains/_github-pages-challenge-superuser-l.this.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tr1xem",
+ "email": "kmtechnical2006@gmail.com"
+ },
+ "record": {
+ "TXT": "a877a72296a97b52bb3913a1fc05da"
+ }
+}
diff --git a/domains/_github-pages-challenge-wdhdev.data.json b/domains/_github-pages-challenge-wdhdev.data.json
index 36d8e3f0a..b49214e4c 100644
--- a/domains/_github-pages-challenge-wdhdev.data.json
+++ b/domains/_github-pages-challenge-wdhdev.data.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
+ "username": "wdhdev",
+ "email": "william@williamharrison.dev"
},
"record": {
- "TXT": "98ab14aec3df26fb9b1626d584d5f5"
+ "TXT": "dd771e3f8e535c62bb471e3760dc66"
}
}
diff --git a/domains/_github-pages-challenge-wdhdev.raw-api.json b/domains/_github-pages-challenge-wdhdev.raw-api.json
index 0aeb7a4cf..9c0dbc10a 100644
--- a/domains/_github-pages-challenge-wdhdev.raw-api.json
+++ b/domains/_github-pages-challenge-wdhdev.raw-api.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
+ "username": "wdhdev",
+ "email": "william@williamharrison.dev"
},
"record": {
- "TXT": "a6bc96312c4473df6c37f63d3e0fed"
+ "TXT": "f702ea064c3d034b70bb3576bba918"
}
}
diff --git a/domains/a-j.json b/domains/a-j.json
new file mode 100644
index 000000000..17469e2f2
--- /dev/null
+++ b/domains/a-j.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alijafari-gd",
+ "email": "ali.jafari.sn@gmail.com"
+ },
+ "record": {
+ "URL": "https://alijafari.is-a.dev"
+ }
+}
diff --git a/domains/a001.json b/domains/a001.json
deleted file mode 100644
index 2f065b786..000000000
--- a/domains/a001.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "9898video",
- "email": "548625653@qq.com"
- },
- "record": {
- "CNAME": "mg.707077.xyz"
- }
-}
diff --git a/domains/a1x5h04.json b/domains/a1x5h04.json
new file mode 100644
index 000000000..64b1c61ec
--- /dev/null
+++ b/domains/a1x5h04.json
@@ -0,0 +1,11 @@
+{
+ "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/aadarshksingh.json b/domains/aadarshksingh.json
index 68f8e3a8f..d4f64db9f 100644
--- a/domains/aadarshksingh.json
+++ b/domains/aadarshksingh.json
@@ -4,7 +4,7 @@
"email": "aadarshkumarsingh198@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aakashcse.json b/domains/aakashcse.json
index 8380c0883..f29055f82 100644
--- a/domains/aakashcse.json
+++ b/domains/aakashcse.json
@@ -4,7 +4,7 @@
"email": "polsagyipols6@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aakrisht.json b/domains/aakrisht.json
index 9712a5ffe..4ecc72ead 100644
--- a/domains/aakrisht.json
+++ b/domains/aakrisht.json
@@ -4,7 +4,7 @@
"email": "akrisht62@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aantarip.json b/domains/aantarip.json
index 6c6f29227..fdca6031e 100644
--- a/domains/aantarip.json
+++ b/domains/aantarip.json
@@ -4,7 +4,7 @@
"email": "aantaripdas@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aantaripdas.json b/domains/aantaripdas.json
deleted file mode 100644
index bd2a07b31..000000000
--- a/domains/aantaripdas.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A Personal Portfilo",
- "repo": "https://portfolio.anime0test.repl.co",
- "owner": {
- "username": "LittleSoldierGaming",
- "email": "aantaripdas@gmail.com",
- "twitter": "littlesoldiergaming"
- },
- "record": {
- "CNAME": "2df92555-30ba-4899-bbb8-2906a8f5c7e0.id.repl.co"
- }
-}
diff --git a/domains/aarav-puri.json b/domains/aarav-puri.json
new file mode 100644
index 000000000..8e104b237
--- /dev/null
+++ b/domains/aarav-puri.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CoderApuri",
+ "email": "puri.aarav@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aarav.json b/domains/aarav.json
new file mode 100644
index 000000000..b744909bf
--- /dev/null
+++ b/domains/aarav.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AaravAtGit",
+ "email": "aarav54897@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aaron.json b/domains/aaron.json
index 03a7c8804..08726b68c 100644
--- a/domains/aaron.json
+++ b/domains/aaron.json
@@ -4,7 +4,7 @@
"email": "d1qtwmsmdga@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aayank.json b/domains/aayank.json
new file mode 100644
index 000000000..269b5017e
--- /dev/null
+++ b/domains/aayank.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "aayank13",
+ "email": "aayank1306@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aayush-bharti.json b/domains/aayush-bharti.json
new file mode 100644
index 000000000..a5f6f87e9
--- /dev/null
+++ b/domains/aayush-bharti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AayushBharti",
+ "email": "aayushbh2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/aayushbh.json b/domains/aayushbh.json
new file mode 100644
index 000000000..0b1cdb994
--- /dev/null
+++ b/domains/aayushbh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AayushBharti",
+ "email": "aayushbh2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aayushbharti.json b/domains/aayushbharti.json
new file mode 100644
index 000000000..0b1cdb994
--- /dev/null
+++ b/domains/aayushbharti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AayushBharti",
+ "email": "aayushbh2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abdallah.json b/domains/abdallah.json
new file mode 100644
index 000000000..8e5735abe
--- /dev/null
+++ b/domains/abdallah.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "abdallahmehiz",
+ "email": "abdallah.mehiz@univ-bba.dz"
+ },
+
+ "record": {
+ "CNAME": "abdallah.mehiz.xyz"
+ }
+}
diff --git a/domains/abdel.json b/domains/abdel.json
new file mode 100644
index 000000000..cab8ce785
--- /dev/null
+++ b/domains/abdel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "netsterX",
+ "email": "mb3202879@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abdelghani.json b/domains/abdelghani.json
new file mode 100644
index 000000000..e35dd9f69
--- /dev/null
+++ b/domains/abdelghani.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdessattarElyagoubi",
+ "email": "abdeldroid2@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdessattar-elyagoubi.github.io"
+ }
+}
diff --git a/domains/abdeljallil.json b/domains/abdeljallil.json
index e709988a8..0bfe2c46c 100644
--- a/domains/abdeljallil.json
+++ b/domains/abdeljallil.json
@@ -4,7 +4,7 @@
"email": "aleatoir3@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/abdessattar.json b/domains/abdessattar.json
new file mode 100644
index 000000000..5049083e5
--- /dev/null
+++ b/domains/abdessattar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdessattarElyagoubi",
+ "email": "abdeldroid2@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdessattarelyagoubi.github.io"
+ }
+}
diff --git a/domains/abdo.json b/domains/abdo.json
index 9a460c08a..6adc0831c 100644
--- a/domains/abdo.json
+++ b/domains/abdo.json
@@ -1,11 +1,11 @@
{
"owner": {
- "username": "5enox",
- "email": "animikantan@gmail.com"
+ "username": "xAbdoAT",
+ "email": "ABDO199877@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
\ No newline at end of file
+}
diff --git a/domains/abdul.json b/domains/abdul.json
deleted file mode 100644
index 65a80cf0c..000000000
--- a/domains/abdul.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Abdul1810",
- "email": "abdulking8010@gmail.com",
- "discord": "Abdul ♥#5464"
- },
- "record": {
- "CNAME": "rahman.works"
- }
-}
diff --git a/domains/abdullohalimov.json b/domains/abdullohalimov.json
deleted file mode 100644
index ee61db0a4..000000000
--- a/domains/abdullohalimov.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "abdullohalimov",
- "email": "raistlinmajere10@gmail.com"
- },
- "record": {
- "A": ["91.200.84.14"]
- }
-}
diff --git a/domains/abhay.json b/domains/abhay.json
new file mode 100644
index 000000000..e86124761
--- /dev/null
+++ b/domains/abhay.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MRJ-Badshah",
+ "email": "illegalhacker2.0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abhijit.json b/domains/abhijit.json
index d26b45d0e..747e159da 100644
--- a/domains/abhijit.json
+++ b/domains/abhijit.json
@@ -4,7 +4,7 @@
"email": "abhiwa6@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/abhinandan.json b/domains/abhinandan.json
deleted file mode 100644
index b39196bd5..000000000
--- a/domains/abhinandan.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "abhinandanwadwa",
- "email": "abhinandanwadhwa5@gmail.com"
- },
-
- "record": {
- "A": ["139.59.76.105"]
- }
-}
diff --git a/domains/abhinav.json b/domains/abhinav.json
index 92a55747a..c0b04b27d 100644
--- a/domains/abhinav.json
+++ b/domains/abhinav.json
@@ -4,7 +4,7 @@
"email": "abhinavcool42@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/abhishekpanda.json b/domains/abhishekpanda.json
index d9f28916f..103021ac7 100644
--- a/domains/abhishekpanda.json
+++ b/domains/abhishekpanda.json
@@ -4,7 +4,7 @@
"email": "abxisxekpanda@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/abhishekpb.json b/domains/abhishekpb.json
index 0cf904664..f65db0321 100644
--- a/domains/abhishekpb.json
+++ b/domains/abhishekpb.json
@@ -4,7 +4,7 @@
"email": "studentabhishekpb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/abhishekyadav.json b/domains/abhishekyadav.json
new file mode 100644
index 000000000..59b9a08a9
--- /dev/null
+++ b/domains/abhishekyadav.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "demoxs",
+ "email": "devatjps@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abv.json b/domains/abv.json
new file mode 100644
index 000000000..e182b420b
--- /dev/null
+++ b/domains/abv.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "leburgue",
+ "email": "albertonazijew@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/achintya.json b/domains/achintya.json
deleted file mode 100644
index 72c37e1ec..000000000
--- a/domains/achintya.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ajachintya",
- "email": "ajachintyajaiswal@gmail.com"
- },
- "record": {
- "URL": "https://portfolio-app-production.up.railway.app"
- }
-}
diff --git a/domains/activate.json b/domains/activate.json
deleted file mode 100644
index a88e7a643..000000000
--- a/domains/activate.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ActivateClosur3",
- "email": "activateclosureyt@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
- "MX": ["hosts.is-a.dev"]
- }
-}
diff --git a/domains/acto.json b/domains/acto.json
index 7322387dc..263e78197 100644
--- a/domains/acto.json
+++ b/domains/acto.json
@@ -4,7 +4,7 @@
"email": "acton.clever@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ad1107.json b/domains/ad1107.json
index 06a4456f1..70d9295d3 100644
--- a/domains/ad1107.json
+++ b/domains/ad1107.json
@@ -4,7 +4,7 @@
"email": "nguyenanhducxmen@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/adam.json b/domains/adam.json
new file mode 100644
index 000000000..bca392249
--- /dev/null
+++ b/domains/adam.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AdamEXu",
+ "email": "adam.yi.xu@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adamousmer.json b/domains/adamousmer.json
new file mode 100644
index 000000000..1f417a07c
--- /dev/null
+++ b/domains/adamousmer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AdamOusmer",
+ "email": "aousmer03@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 include:icloud.com ~all"
+ }
+}
diff --git a/domains/adarsh-a-inamdar.json b/domains/adarsh-a-inamdar.json
index 72637a9e4..e13ae528c 100644
--- a/domains/adarsh-a-inamdar.json
+++ b/domains/adarsh-a-inamdar.json
@@ -4,7 +4,7 @@
"email": "adarshinamdar2003@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/adeshsingh.json b/domains/adeshsingh.json
index 6ccd389fb..0ca51bda7 100644
--- a/domains/adeshsingh.json
+++ b/domains/adeshsingh.json
@@ -4,7 +4,7 @@
"email": "akshworkmail@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/adhitht.json b/domains/adhitht.json
new file mode 100644
index 000000000..a8fa25cab
--- /dev/null
+++ b/domains/adhitht.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "adhitht",
+ "email": "adhith.tharammal@gmail.com"
+ },
+ "record": {
+ "URL": "https://adhitht.me"
+ }
+}
diff --git a/domains/adib.json b/domains/adib.json
deleted file mode 100644
index 995da37e9..000000000
--- a/domains/adib.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Adib23704",
- "email": "adib23704@gmail.com"
- },
- "record": {
- "CNAME": "adib23704.tk"
- }
-}
diff --git a/domains/adioblu.json b/domains/adioblu.json
index bb24f59d0..0e3ead462 100644
--- a/domains/adioblu.json
+++ b/domains/adioblu.json
@@ -4,7 +4,7 @@
"email": "adyoblu2000@yahoo.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aditya-awasthi.json b/domains/aditya-awasthi.json
deleted file mode 100644
index 01e7a379b..000000000
--- a/domains/aditya-awasthi.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "This is my personal portfolio website",
- "repo": "https://github.com/Adityyaaa/adityyaaa.github.io",
- "owner": {
- "username": "Adityyaaa",
- "email": "aditya.awasthi612@gmail.com"
- },
- "record": {
- "CNAME": "adityyaaa.github.io"
- }
-}
diff --git a/domains/adityabhattacharya.json b/domains/adityabhattacharya.json
index ccc0759c1..3f14149cd 100644
--- a/domains/adityabhattacharya.json
+++ b/domains/adityabhattacharya.json
@@ -4,7 +4,7 @@
"email": "utoprocess@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/adityajyoti.json b/domains/adityajyoti.json
new file mode 100644
index 000000000..d79405ed0
--- /dev/null
+++ b/domains/adityajyoti.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aditya-Jyoti",
+ "email": "aj.adityajyoti@gmail.com"
+ },
+ "record": {
+ "URL": "https://aditya-jyoti.github.io"
+ }
+}
diff --git a/domains/adityakotha.json b/domains/adityakotha.json
index 16614ccc8..f787d6cd4 100644
--- a/domains/adityakotha.json
+++ b/domains/adityakotha.json
@@ -4,7 +4,7 @@
"email": "adityakotha2001@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/adityaredflag.json b/domains/adityaredflag.json
new file mode 100644
index 000000000..16d679383
--- /dev/null
+++ b/domains/adityaredflag.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "adityaREDFLAG",
+ "email": "adi.redflag@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adiy.json b/domains/adiy.json
index 095ab4c57..451552dd0 100644
--- a/domains/adiy.json
+++ b/domains/adiy.json
@@ -4,7 +4,7 @@
"email": "ramanandyadav7650@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/adnanahmed.json b/domains/adnanahmed.json
new file mode 100644
index 000000000..ac6d25ac2
--- /dev/null
+++ b/domains/adnanahmed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "adnahmed",
+ "email": "khanadnanahmed01@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adriantandara.json b/domains/adriantandara.json
new file mode 100644
index 000000000..5cd6e0771
--- /dev/null
+++ b/domains/adriantandara.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "adriantandara",
+ "email": "adrian.tandara05@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adrien.json b/domains/adrien.json
deleted file mode 100644
index a38cd1704..000000000
--- a/domains/adrien.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Adri11334",
- "email": "adrien.vermersch@epitech.eu",
- "discord": "Дdяi1#7501"
- },
- "record": {
- "A": ["116.203.127.206"]
- }
-}
diff --git a/domains/advik.json b/domains/advik.json
new file mode 100644
index 000000000..06031f4e6
--- /dev/null
+++ b/domains/advik.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Advik-B",
+ "email": "advik.b@gmail.com",
+ "discord": "765739254164357121"
+ },
+
+ "record": {
+ "CNAME": "advik-b.github.io"
+ }
+ }
+
diff --git a/domains/aedotris.json b/domains/aedotris.json
new file mode 100644
index 000000000..f9831cc11
--- /dev/null
+++ b/domains/aedotris.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "levinhkhangzz",
+ "email": "levinhkhang631@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aeolus.json b/domains/aeolus.json
index 7f7f2630a..76e6816dd 100644
--- a/domains/aeolus.json
+++ b/domains/aeolus.json
@@ -4,7 +4,7 @@
"email": "aeolusdeveloper@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aerial-ace1.json b/domains/aerial-ace1.json
new file mode 100644
index 000000000..3cfb704dc
--- /dev/null
+++ b/domains/aerial-ace1.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aerial-ace1",
+ "email": "abhinav.pottigari@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aestra.json b/domains/aestra.json
deleted file mode 100644
index 854c14831..000000000
--- a/domains/aestra.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Will save it for future for my portfolio site",
- "owner": {
- "username": "aestra",
- "email": "aestradev@gmail.com",
- "github": "aestradev"
- },
- "record": {
- "CNAME": "portfolio-production-7e27.up.railway.app"
- }
-}
diff --git a/domains/aetinx.json b/domains/aetinx.json
deleted file mode 100644
index e664aacc4..000000000
--- a/domains/aetinx.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "owner": {
- "username": "aetinx",
- "email": "",
- "twitter": "aetinx",
- "discord": "aetinx#8300",
- "note": "amogus"
- },
- "description": "Aetinx's domain. https://aetinx.glitch.me",
- "record": {
- "CNAME": "glitch.edgeapp.net"
- }
-}
diff --git a/domains/afcu.json b/domains/afcu.json
new file mode 100644
index 000000000..14438577e
--- /dev/null
+++ b/domains/afcu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "afcunotify",
+ "email": "rockkahan12@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/afnan.json b/domains/afnan.json
deleted file mode 100644
index 70f940ec2..000000000
--- a/domains/afnan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "afnan007a",
- "email": "mr.goblin007a@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-cci.pages.dev"
- }
-}
diff --git a/domains/afp.json b/domains/afp.json
deleted file mode 100644
index ca40eafd9..000000000
--- a/domains/afp.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "AndreasFxPro",
- "email": "",
- "discord": "AndreasFxPro#9330"
- },
- "description": "this is-a.dev page is for me, i'll post my projects",
- "record": {
- "A": ["140.238.175.208"]
- }
-}
diff --git a/domains/ahaan.json b/domains/ahaan.json
new file mode 100644
index 000000000..71e5a6572
--- /dev/null
+++ b/domains/ahaan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ahaan1984",
+ "email": "ahaansekhar1984@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ahmad-muhajir.json b/domains/ahmad-muhajir.json
index fd270c337..a37bbecaf 100644
--- a/domains/ahmad-muhajir.json
+++ b/domains/ahmad-muhajir.json
@@ -1,11 +1,11 @@
{
"description": "My Portfolio",
- "repo": "https://github.com/JeremyJFN71/JeremyJFN71.github.io",
+ "repo": "https://github.com/amuhajirs/amuhajirs.github.io",
"owner": {
- "username": "JeremyJFN71",
+ "username": "amuhajirs",
"email": "jeremyjeferson71@gmail.com"
},
"record": {
- "CNAME": "JeremyJFN71.github.io"
+ "CNAME": "amuhajirs.github.io"
}
}
diff --git a/domains/ahmed.json b/domains/ahmed.json
deleted file mode 100644
index c7f5646cc..000000000
--- a/domains/ahmed.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Ahmed's personal site",
- "repo": "https://github.com/Dropheart",
- "owner": {
- "username": "dropheart",
- "email": "ahmed@techfromtheheart.com"
- },
- "record": {
- "URL": "https://techfromtheheart.com"
- }
-}
diff --git a/domains/ahmet.json b/domains/ahmet.json
deleted file mode 100644
index e7261eae6..000000000
--- a/domains/ahmet.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ahmet's personal website",
- "repo": "https://github.com/ahmetesad",
- "owner": {
- "username": "ahmetesad",
- "email": "ahmetesad@pm.me"
- },
- "record": {
- "CNAME": "f13e0f65-a2c0-4466-b220-29a46ae78562.id.repl.co"
- }
-}
diff --git a/domains/aidan.json b/domains/aidan.json
index 440354659..555fcbdc4 100644
--- a/domains/aidan.json
+++ b/domains/aidan.json
@@ -4,7 +4,7 @@
"email": "24aidanwhite@usd266.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aikoo7.json b/domains/aikoo7.json
deleted file mode 100644
index 025b8aa3d..000000000
--- a/domains/aikoo7.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-
- "owner": {
- "username": "aikooo7",
- "email": "prozinhopro1973@gmail.com"
- },
- "record": {
- "CNAME": "my-blog-vpp1.onrender.com"
- }
- }
diff --git a/domains/ailakks.json b/domains/ailakks.json
deleted file mode 100644
index 34ca71d86..000000000
--- a/domains/ailakks.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ailakks.is-a.dev.",
- "repo": "https://github.com/ailakks",
- "owner": {
- "username": "ailakks",
- "email": "hola@cortmnzz.com"
- },
- "record": {
- "URL": "https://cortmnzz.com"
- }
-}
diff --git a/domains/aivietnamllm.json b/domains/aivietnamllm.json
new file mode 100644
index 000000000..100cd8b28
--- /dev/null
+++ b/domains/aivietnamllm.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "BachNgoH",
+ "email": "nlmbao2015@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aizawakiyaworu.json b/domains/aizawakiyaworu.json
deleted file mode 100644
index 212259d2d..000000000
--- a/domains/aizawakiyaworu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "mhmdysf",
- "email": "muhammadyusuf1325@smp.belajar.id"
- },
- "record": {
- "URL": "https://linktr.ee/aizawakiyaworu"
- }
-}
diff --git a/domains/aj.json b/domains/aj.json
new file mode 100644
index 000000000..d79405ed0
--- /dev/null
+++ b/domains/aj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aditya-Jyoti",
+ "email": "aj.adityajyoti@gmail.com"
+ },
+ "record": {
+ "URL": "https://aditya-jyoti.github.io"
+ }
+}
diff --git a/domains/ajaykrshna.json b/domains/ajaykrshna.json
new file mode 100644
index 000000000..41d834eec
--- /dev/null
+++ b/domains/ajaykrshna.json
@@ -0,0 +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
diff --git a/domains/ajlemon.json b/domains/ajlemon.json
new file mode 100644
index 000000000..f01e0357b
--- /dev/null
+++ b/domains/ajlemon.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Atharvjha7",
+ "email": "jha.atharv27@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ak-dev.json b/domains/ak-dev.json
new file mode 100644
index 000000000..7413f5fbd
--- /dev/null
+++ b/domains/ak-dev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LRxDarkDevil",
+ "email": "tahaadnanawan@gmail.com"
+ },
+ "record": {
+ "CNAME": "ak-dev.github.io"
+ }
+}
diff --git a/domains/akas.json b/domains/akas.json
index f6826b605..6e3eebef0 100644
--- a/domains/akas.json
+++ b/domains/akas.json
@@ -1,11 +1,11 @@
{
- "description": "Akas Portfolio",
- "repo": "https://github.com/akasrai/akasrai.github.io",
"owner": {
"username": "akasrai",
"email": "akasky70@gmail.com"
},
"record": {
- "CNAME": "akasrai.github.io"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/akash.json b/domains/akash.json
index 93efbb43e..ff5b01645 100644
--- a/domains/akash.json
+++ b/domains/akash.json
@@ -4,7 +4,7 @@
"email": "squaresmp@asia.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/akki.json b/domains/akki.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/akki.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/aknbs-vpn.json b/domains/aknbs-vpn.json
deleted file mode 100644
index bc15cb044..000000000
--- a/domains/aknbs-vpn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Abdulazizkhan-K-N-B",
- "email": "abdulazizkhan.k.n.b@gmail.com"
- },
- "record": {
- "A": ["47.242.127.210"]
- }
-}
diff --git a/domains/akpi.json b/domains/akpi.json
index 0790a324e..edc06ecb0 100644
--- a/domains/akpi.json
+++ b/domains/akpi.json
@@ -6,7 +6,7 @@
},
"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"
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all", "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDmKWCucfCBImz9pOWBPV5+SO3KNqeQSt6Jusv+3Rbm8BbSv8H0x+E0TEe4JjfNNUmVQ7zNlZFJK4Hlv453aXBNbkk9kzsekW8qm4ZGjeQwMBo2f4V6tkxPFtcYnUfNskc3194C5gH4AusJ4WMbYOe9GNxCRhuok+5tIGciJXxbWQIDAQAB"]
}
}
diff --git a/domains/akshat.json b/domains/akshat.json
new file mode 100644
index 000000000..5113df671
--- /dev/null
+++ b/domains/akshat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nerkoux",
+ "email": "akshatmehta_14434@mpsjaipur.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/akshath.json b/domains/akshath.json
new file mode 100644
index 000000000..af635e002
--- /dev/null
+++ b/domains/akshath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "d7dx",
+ "email": "d7dx@proton.me"
+ },
+ "record": {
+ "CNAME": "d7dx.github.io"
+ }
+}
diff --git a/domains/akshatt.json b/domains/akshatt.json
new file mode 100644
index 000000000..d7bc03d75
--- /dev/null
+++ b/domains/akshatt.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "noob0701",
+ "email": "akshat250870@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "main.dfn6axfpgkelx.amplifyapp.com"
+ }
+}
diff --git a/domains/akshay.json b/domains/akshay.json
index 3d14f0680..03969670a 100644
--- a/domains/akshay.json
+++ b/domains/akshay.json
@@ -6,7 +6,6 @@
"email": "phenax5@gmail.com"
},
"record": {
- "URL": "https://ediblemonad.dev",
- "TXT": [ "Hello there!", "It's me, Akshay" ]
+ "URL": "https://ediblemonad.dev"
}
}
diff --git a/domains/akshayashok.json b/domains/akshayashok.json
index 8a125a296..75225c01f 100644
--- a/domains/akshayashok.json
+++ b/domains/akshayashok.json
@@ -4,7 +4,7 @@
"email": "akshayashok209@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/akshayks.json b/domains/akshayks.json
new file mode 100644
index 000000000..234714bc5
--- /dev/null
+++ b/domains/akshayks.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "akshaynox",
+ "email": "mail.akshayks@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/akshayn.json b/domains/akshayn.json
deleted file mode 100644
index d080caa3e..000000000
--- a/domains/akshayn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "akshaynstack",
- "email": "akshay.fivem@gmail.com"
- },
- "record": {
- "A": ["52.66.193.17"]
- }
-}
diff --git a/domains/akshtt.json b/domains/akshtt.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/akshtt.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/akuto.json b/domains/akuto.json
deleted file mode 100644
index 3267fe125..000000000
--- a/domains/akuto.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "justdont0",
- "email": "hello.and.ios@gmail.com"
- },
- "record": {
- "CNAME": "akutosait.dsds6.repl.co"
- }
-}
diff --git a/domains/akvityxs.json b/domains/akvityxs.json
deleted file mode 100644
index b4cb288ea..000000000
--- a/domains/akvityxs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Akvityxs",
- "email": "akvityxs@gmail.com"
- },
- "record": {
- "A": ["80.87.196.168"]
- }
-}
diff --git a/domains/albuman.json b/domains/albuman.json
index 9b04706fb..84e78e300 100644
--- a/domains/albuman.json
+++ b/domains/albuman.json
@@ -4,7 +4,7 @@
"email": "oliver.young4@student.education.wa.edu.au"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/alby.json b/domains/alby.json
new file mode 100644
index 000000000..57d3ebe1e
--- /dev/null
+++ b/domains/alby.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ALBINPRAVEEN",
+ "email": "albinpraveen135790@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/alcex.json b/domains/alcex.json
deleted file mode 100644
index 201795d0e..000000000
--- a/domains/alcex.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Alcexn",
- "email": "alcexn@163.com"
- },
-
- "record": {
- "A": ["76.223.126.88"]
- }
-}
diff --git a/domains/alchion.json b/domains/alchion.json
new file mode 100644
index 000000000..77592c7b8
--- /dev/null
+++ b/domains/alchion.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Alchion",
+ "email": "pythonmc2021@163.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/alcyoneus.json b/domains/alcyoneus.json
index 04547dd69..a90eb77e5 100644
--- a/domains/alcyoneus.json
+++ b/domains/alcyoneus.json
@@ -4,7 +4,7 @@
"email": "datemage+xd1@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ale1x.json b/domains/ale1x.json
deleted file mode 100644
index ddf69879b..000000000
--- a/domains/ale1x.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ale1x",
- "email": "info@ale1x.com"
- },
- "record": {
- "URL": "https://alee1x.repl.co"
- }
-}
diff --git a/domains/alex-s.json b/domains/alex-s.json
index f57bc8cd7..44cc30e86 100644
--- a/domains/alex-s.json
+++ b/domains/alex-s.json
@@ -4,7 +4,7 @@
"email": "ultra980@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/alexander.json b/domains/alexander.json
deleted file mode 100644
index 8cde1ff5f..000000000
--- a/domains/alexander.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Alexander's personal website",
- "repo": "https://github.com/amatzen",
- "owner": {
- "username": "amatzen",
- "email": "alexander@alexander.dk"
- },
- "record": {
- "CNAME": "alexander.dk"
- }
-}
diff --git a/domains/alexandre.json b/domains/alexandre.json
deleted file mode 100644
index 64d729b8a..000000000
--- a/domains/alexandre.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ARCIKE",
- "email": "alexarcike@gmail.com"
- },
- "record": {
- "URL": "https://portfolio.alexandre-dev.gq"
- }
-}
diff --git a/domains/alexcodesgames.json b/domains/alexcodesgames.json
new file mode 100644
index 000000000..f11299499
--- /dev/null
+++ b/domains/alexcodesgames.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AlexCodesGames",
+ "email": "alexPazder@hotmail.ca"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/alexr.json b/domains/alexr.json
index ca0678a85..d1147a63c 100644
--- a/domains/alexr.json
+++ b/domains/alexr.json
@@ -4,7 +4,7 @@
"email": "amelia.R0se@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/algmapper.json b/domains/algmapper.json
new file mode 100644
index 000000000..d616d1915
--- /dev/null
+++ b/domains/algmapper.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Alg-MapPer",
+ "email": "abu7atm9@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/algoarchive.json b/domains/algoarchive.json
deleted file mode 100644
index 95ae15a2c..000000000
--- a/domains/algoarchive.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "justdont0",
- "email": "hello.and.ios@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 981586348198735912"
- },
-
- "record": {
- "CNAME": "698db1dc-bd48-452b-9497-4633804b4225.id.repl.co"
-
- }
-}
diff --git a/domains/alguienrandom.json b/domains/alguienrandom.json
deleted file mode 100644
index 18a9dc664..000000000
--- a/domains/alguienrandom.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "alguien random web",
- "owner": {
- "username": "alguien-random",
- "email": "alguienrandom.is-a.dev"
- },
- "record": {
- "CNAME": "8152606b-2e68-4a11-bb81-6799f00d4909.id.repl.co"
- }
-}
diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json
new file mode 100644
index 000000000..9f7d2a511
--- /dev/null
+++ b/domains/ali-abdurrazzak.json
@@ -0,0 +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"
+ }
+}
diff --git a/domains/aliazhar.json b/domains/aliazhar.json
index e12586e58..358445ab5 100644
--- a/domains/aliazhar.json
+++ b/domains/aliazhar.json
@@ -4,7 +4,7 @@
"email": "aliazhar1906@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aliezan.json b/domains/aliezan.json
new file mode 100644
index 000000000..dacfaacd2
--- /dev/null
+++ b/domains/aliezan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aliezan",
+ "email": "muhammadalieza4@gmail.com"
+ },
+ "record": {
+ "CNAME": "aliezan.github.io"
+ }
+}
diff --git a/domains/alijafari.json b/domains/alijafari.json
new file mode 100644
index 000000000..e638a8338
--- /dev/null
+++ b/domains/alijafari.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "alijafari-gd",
+ "email": "ali.jafari.sn@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/alisher.json b/domains/alisher.json
deleted file mode 100644
index f2d39353a..000000000
--- a/domains/alisher.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Alisher's Website!",
- "repo": "https://github.com/alisher-usmonov/portfolio-Website",
- "owner": {
- "username": "alisher-usmonov",
- "email": "alisher.null@gmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/alkadhumi.json b/domains/alkadhumi.json
index a075eca1e..3f0a9bb45 100644
--- a/domains/alkadhumi.json
+++ b/domains/alkadhumi.json
@@ -4,6 +4,8 @@
"email": "alihassan7722@gmail.com"
},
"record": {
- "URL": "https://alkadhumi.github.io"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/allancoding.json b/domains/allancoding.json
index c8fab571d..8590559c0 100644
--- a/domains/allancoding.json
+++ b/domains/allancoding.json
@@ -1,11 +1,11 @@
{
"owner": {
"username": "allancoding",
- "email": "allancoding.dev@gmail.com"
+ "email": "allancoding.dev@gmail.com",
+ "twitter": "allancoding",
+ "discord": "allancoding"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "CNAME": "allancoding.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/almaz.json b/domains/almaz.json
new file mode 100644
index 000000000..910dd32c2
--- /dev/null
+++ b/domains/almaz.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "AlmaziikDev",
+ "email": "almazgamer228@gmail.com"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/alpha.json b/domains/alpha.json
index 1841389ca..2e27c31f0 100644
--- a/domains/alpha.json
+++ b/domains/alpha.json
@@ -1,7 +1,12 @@
{
- "owner": {
+ "owner": {
"username": "YouFoundAlpha",
- "email": "sweepalf@gmail.com"
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"A": [
diff --git a/domains/alvin.json b/domains/alvin.json
new file mode 100644
index 000000000..7a0af849b
--- /dev/null
+++ b/domains/alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinbengeorge",
+ "email": "alvinallen333@gmail.com"
+ },
+ "record": {
+ "CNAME": "alvinbengeorge.vercel.app"
+ }
+}
diff --git a/domains/amanda.json b/domains/amanda.json
new file mode 100644
index 000000000..08cab2ff2
--- /dev/null
+++ b/domains/amanda.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "at669",
+ "email": "at669@cornell.edu"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amar.json b/domains/amar.json
new file mode 100644
index 000000000..a72ca1285
--- /dev/null
+++ b/domains/amar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AyTea14",
+ "email": "muhdamar4687@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazing.devs.json b/domains/amazing.devs.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazing.devs.json
+++ b/domains/amazing.devs.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amazing.json b/domains/amazing.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazing.json
+++ b/domains/amazing.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amazingdev.json b/domains/amazingdev.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazingdev.json
+++ b/domains/amazingdev.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amazingdevel.json b/domains/amazingdevel.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazingdevel.json
+++ b/domains/amazingdevel.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amazingdevels.json b/domains/amazingdevels.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazingdevels.json
+++ b/domains/amazingdevels.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amazingdevs.json b/domains/amazingdevs.json
index c55b7045c..79426f3d7 100644
--- a/domains/amazingdevs.json
+++ b/domains/amazingdevs.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ambon.json b/domains/ambon.json
new file mode 100644
index 000000000..ad97df8d3
--- /dev/null
+++ b/domains/ambon.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BangMbon",
+ "email": "dci.reborn@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amelia.json b/domains/amelia.json
index ca0678a85..d1147a63c 100644
--- a/domains/amelia.json
+++ b/domains/amelia.json
@@ -4,7 +4,7 @@
"email": "amelia.R0se@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ameysawant.json b/domains/ameysawant.json
index 42bab9e6d..0658eb823 100644
--- a/domains/ameysawant.json
+++ b/domains/ameysawant.json
@@ -4,7 +4,7 @@
"email": "assawant06@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/amin.json b/domains/amin.json
new file mode 100644
index 000000000..96add1396
--- /dev/null
+++ b/domains/amin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "amenm0",
+ "email": "mjmwtmjls@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amirhossein-esanezhad.json b/domains/amirhossein-esanezhad.json
new file mode 100644
index 000000000..30ff0bcde
--- /dev/null
+++ b/domains/amirhossein-esanezhad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "esa-zz",
+ "email": "amirhossein6055@gmail.com"
+ },
+ "record": {
+ "A": ["51.38.127.41"]
+ }
+}
diff --git a/domains/ammy.json b/domains/ammy.json
index 768ac3d8b..32f879584 100644
--- a/domains/ammy.json
+++ b/domains/ammy.json
@@ -4,7 +4,7 @@
"email": "codewithamey@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amodity.json b/domains/amodity.json
new file mode 100644
index 000000000..26cbc9d64
--- /dev/null
+++ b/domains/amodity.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "adytia-lika-ardiansyah",
+ "email": "nakpegiba.li@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amol254542.json b/domains/amol254542.json
new file mode 100644
index 000000000..521f3c192
--- /dev/null
+++ b/domains/amol254542.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amol234545",
+ "email": "amolmilton@gmail.com"
+ },
+ "record": {
+ "CNAME":"amol234545.github.io"
+ }
+}
diff --git a/domains/amol3.json b/domains/amol3.json
new file mode 100644
index 000000000..bf67336b1
--- /dev/null
+++ b/domains/amol3.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amol234545",
+ "email": "amolmilton@gmail.com"
+ },
+ "record": {
+ "CNAME": "amol234545.github.io"
+ }
+}
diff --git a/domains/amr.elrefaie.json b/domains/amr.elrefaie.json
deleted file mode 100644
index 6d2e04d5a..000000000
--- a/domains/amr.elrefaie.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "amour86",
- "email": "amour86@gmail.com"
- },
-
- "record": {
- "A": ["35.154.162.29"]
- }
-}
diff --git a/domains/amulyasingh.json b/domains/amulyasingh.json
index f91fc50e4..77aeb7865 100644
--- a/domains/amulyasingh.json
+++ b/domains/amulyasingh.json
@@ -4,7 +4,7 @@
"email": "amulyasingh370@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/amya.json b/domains/amya.json
index 768ac3d8b..32f879584 100644
--- a/domains/amya.json
+++ b/domains/amya.json
@@ -4,7 +4,7 @@
"email": "codewithamey@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/anakhalal.json b/domains/anakhalal.json
new file mode 100644
index 000000000..3bf40404c
--- /dev/null
+++ b/domains/anakhalal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AdeebToPro",
+ "email": "blackfriday.xp@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anamolsapkota.json b/domains/anamolsapkota.json
deleted file mode 100644
index 4b0a907df..000000000
--- a/domains/anamolsapkota.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A personal portfolio site for all my projects and commissions.",
- "repo": "https://github.com/anamolsapkota/sapkotaanamol.com.np",
- "owner": {
- "username": "anamolsapkota",
- "email": "info@sapkotaanamol.com.np"
- },
- "record": {
- "URL": "https://sapkotaanamol.com.np"
- }
-}
diff --git a/domains/anand-ramakrishna.json b/domains/anand-ramakrishna.json
new file mode 100644
index 000000000..ddba91548
--- /dev/null
+++ b/domains/anand-ramakrishna.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/theanandramakrishna/theanandramakrishna.github.io",
+ "owner": {
+ "username": "theanandramakrishna",
+ "email": "theanandramakrishna@gmail.com"
+ },
+ "record": {
+ "CNAME": "theanandramakrishna.github.io"
+ }
+}
diff --git a/domains/anay-208.json b/domains/anay-208.json
new file mode 100644
index 000000000..451065340
--- /dev/null
+++ b/domains/anay-208.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "anay-208",
+ "email": "admin@anayparaswani.me"
+ },
+
+ "record": {
+ "URL": "https://anayparaswani.me/"
+ }
+}
diff --git a/domains/anay.json b/domains/anay.json
index 6da5d0981..451065340 100644
--- a/domains/anay.json
+++ b/domains/anay.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "Anay028",
- "email": "anayparswani2008@gmail.com"
+ "username": "anay-208",
+ "email": "admin@anayparaswani.me"
},
"record": {
- "CNAME": "anay028.github.io"
+ "URL": "https://anayparaswani.me/"
}
}
diff --git a/domains/anayparaswani.json b/domains/anayparaswani.json
new file mode 100644
index 000000000..451065340
--- /dev/null
+++ b/domains/anayparaswani.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "anay-208",
+ "email": "admin@anayparaswani.me"
+ },
+
+ "record": {
+ "URL": "https://anayparaswani.me/"
+ }
+}
diff --git a/domains/anderson.json b/domains/anderson.json
deleted file mode 100644
index cd770ffee..000000000
--- a/domains/anderson.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A personal portfolio site for show my projects, my social networks, my knowledges...",
- "repo": "https://github.com/AndersonPGS/me",
- "owner": {
- "username": "andersonpgs",
- "email": "andersonpgs2001@hotmail.com"
- },
- "record": {
- "URL": "https://andersonpgs.vercel.app"
- }
-}
diff --git a/domains/andreat.json b/domains/andreat.json
deleted file mode 100644
index 75e29d02c..000000000
--- a/domains/andreat.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "AToska21",
- "email": "toskaandrea@gmail.com"
- },
- "record": {
- "A": ["185.32.21.42"]
- }
-}
diff --git a/domains/andrewstech.json b/domains/andrewstech.json
index fb97d0eb3..06c4ac08f 100644
--- a/domains/andrewstech.json
+++ b/domains/andrewstech.json
@@ -4,8 +4,8 @@
"email": "andrew@win11react.com"
},
"record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
- "MX": ["mailx.is-a.dev"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all",
+ "MX": ["mail.is-a.dev"]
}
}
diff --git a/domains/andrewtest.json b/domains/andrewtest.json
index 4becd0c6d..b5900cfe6 100644
--- a/domains/andrewtest.json
+++ b/domains/andrewtest.json
@@ -4,6 +4,9 @@
"email": "is-a-dev@win11react.com"
},
"record": {
- "CNAME": "hosts.is-a.dev"
+ "A": [
+ "51.161.54.161",
+ "217.174.245.249"
+ ]
}
}
diff --git a/domains/andrewtest22.json b/domains/andrewtest22.json
index 4dd4aa718..b2c659267 100644
--- a/domains/andrewtest22.json
+++ b/domains/andrewtest22.json
@@ -4,7 +4,7 @@
"email": "is-a-dev@win11react.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/andriy.json b/domains/andriy.json
deleted file mode 100644
index 0704f1365..000000000
--- a/domains/andriy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "andriyandriyan",
- "email": "andriy.andriyan1@gmail.com"
- },
- "record": {
- "CNAME": "andriy.pages.dev"
- }
-}
diff --git a/domains/angel.json b/domains/angel.json
new file mode 100644
index 000000000..4947639f7
--- /dev/null
+++ b/domains/angel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chewieleaf",
+ "email": "cchirrpy@outlook.com"
+ },
+ "record": {
+ "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512"
+ }
+}
diff --git a/domains/angi-talk.json b/domains/angi-talk.json
new file mode 100644
index 000000000..5d2664cff
--- /dev/null
+++ b/domains/angi-talk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Angi-g",
+ "email": "dguyard@student.42.fr"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/angi.json b/domains/angi.json
new file mode 100644
index 000000000..5d2664cff
--- /dev/null
+++ b/domains/angi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Angi-g",
+ "email": "dguyard@student.42.fr"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aniketrajsingh.json b/domains/aniketrajsingh.json
new file mode 100644
index 000000000..432de6374
--- /dev/null
+++ b/domains/aniketrajsingh.json
@@ -0,0 +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"
+ }
+}
diff --git a/domains/anil.json b/domains/anil.json
deleted file mode 100644
index f4b5a90fa..000000000
--- a/domains/anil.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "AnilSeervi",
- "email": "",
- "twitter": "linASeervi"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/aniruddh.json b/domains/aniruddh.json
deleted file mode 100644
index 66ed6cd63..000000000
--- a/domains/aniruddh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "aniruddhnishad",
- "email": "mr.aniruddhnishad@gmail.com"
- },
- "record": {
- "A": ["23.94.14.190", "193.36.237.98"]
- }
-}
diff --git a/domains/aniwon.json b/domains/aniwon.json
new file mode 100644
index 000000000..4495fc47d
--- /dev/null
+++ b/domains/aniwon.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Panwar0",
+ "email": "panwarnishchey+02@gmail.com",
+ "discord": "821976026984611850"
+ },
+
+ "record": {
+ "A": ["185.191.231.137"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/anjayy.json b/domains/anjayy.json
new file mode 100644
index 000000000..c1004942b
--- /dev/null
+++ b/domains/anjayy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MacengBOT",
+ "email": "macengbot@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anoriin.json b/domains/anoriin.json
deleted file mode 100644
index f85967e16..000000000
--- a/domains/anoriin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "AnOrrinn",
- "email": "longoriit@gmail.com"
- },
-
- "record": {
- "A": ["103.97.126.28"]
- }
-}
diff --git a/domains/ansh.json b/domains/ansh.json
new file mode 100644
index 000000000..6fda717e2
--- /dev/null
+++ b/domains/ansh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ansh04196",
+ "email": "anshchouksey08@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anshbhimani.json b/domains/anshbhimani.json
index 2a831a2f4..168508a4f 100644
--- a/domains/anshbhimani.json
+++ b/domains/anshbhimani.json
@@ -4,7 +4,7 @@
"email": "anshbhimani2003@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/antimanipulationbridgade.json b/domains/antimanipulationbridgade.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/antimanipulationbridgade.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/anto.json b/domains/anto.json
index 07bf9b7df..e66843a44 100644
--- a/domains/anto.json
+++ b/domains/anto.json
@@ -4,7 +4,7 @@
"email": "bollengier.antoine@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/antogamer.json b/domains/antogamer.json
index 273726cc2..8e0c3ebfb 100644
--- a/domains/antogamer.json
+++ b/domains/antogamer.json
@@ -1,9 +1,11 @@
{
"owner": {
"username": "AntogamerYT",
- "email": "antonio.antogamer@gmail.com"
+ "email": "antonio.antogamer@gmail.com",
+ "discord": "thisisanto",
+ "twitter": "ThisIsAnto_"
},
"record": {
- "A": ["141.148.238.95"]
+ "A": ["141.144.196.233"]
}
}
diff --git a/domains/antoine.json b/domains/antoine.json
index 07bf9b7df..e66843a44 100644
--- a/domains/antoine.json
+++ b/domains/antoine.json
@@ -4,7 +4,7 @@
"email": "bollengier.antoine@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/antonilin.json b/domains/antonilin.json
deleted file mode 100644
index b929aa3a6..000000000
--- a/domains/antonilin.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "bronislav",
- "email": "anton@ilin.dn.ua"
- },
- "record": {
- "CNAME": "bronislav.me"
- }
-}
diff --git a/domains/antoniod.json b/domains/antoniod.json
new file mode 100644
index 000000000..3178c5a5f
--- /dev/null
+++ b/domains/antoniod.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "well-it-wasnt-me",
+ "email": "dangeloantonio179@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anubhav.json b/domains/anubhav.json
new file mode 100644
index 000000000..db76a0aed
--- /dev/null
+++ b/domains/anubhav.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Anubhav-Pathak",
+ "email": "anubhavpathak99@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anujjamdade.json b/domains/anujjamdade.json
index 6a5e935d3..612b3ff5d 100644
--- a/domains/anujjamdade.json
+++ b/domains/anujjamdade.json
@@ -4,7 +4,7 @@
"email": "jamdadeanuj@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/anurag.json b/domains/anurag.json
index 44fc3480b..1e937f41e 100644
--- a/domains/anurag.json
+++ b/domains/anurag.json
@@ -4,7 +4,7 @@
"email": "singh.ask@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/apa.json b/domains/apa.json
index 0af1ce035..e0542791b 100644
--- a/domains/apa.json
+++ b/domains/apa.json
@@ -4,7 +4,7 @@
"email": "eagam0002@mymail.lausd.net"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/apanel.json b/domains/apanel.json
new file mode 100644
index 000000000..779c3ad7e
--- /dev/null
+++ b/domains/apanel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Heroku403",
+ "email": "juhisharma0757@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/apexweb.json b/domains/apexweb.json
new file mode 100644
index 000000000..583b71514
--- /dev/null
+++ b/domains/apexweb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "shahfahad19",
+ "email": "sfahad4280@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/api-kyouka.json b/domains/api-kyouka.json
deleted file mode 100644
index 02518a0ec..000000000
--- a/domains/api-kyouka.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "APIKEY KYOUKA | SHIORI BOT",
- "repo": "https://github.com/Yuri-Neko",
- "owner": {
- "username": "Yuri-Neko",
- "email": "apikeykyouka@gmail.com"
- },
- "record": {
- "CNAME": "free.api-kyouka.my.id"
- }
-}
diff --git a/domains/api.arman.json b/domains/api.arman.json
deleted file mode 100644
index 53c36f404..000000000
--- a/domains/api.arman.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Arman's Api",
- "owner": {
- "username": "ItzArman09",
- "email": "contact@mail.arman.is-a.dev"
- },
- "record": {
- "CNAME": "b25320ee-226d-4531-ad1f-db62e88ac1d4.id.repl.co"
- }
-}
diff --git a/domains/api.astra.json b/domains/api.astra.json
new file mode 100644
index 000000000..5cf54865a
--- /dev/null
+++ b/domains/api.astra.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "LilyMusic",
+ "email": "lilymusicdiscord@gmail.com",
+ "discord": "981225782938579014"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
diff --git a/domains/api.autoplay88.xyz.json b/domains/api.autoplay88.xyz.json
new file mode 100644
index 000000000..cfc41a65d
--- /dev/null
+++ b/domains/api.autoplay88.xyz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "chaiyen123",
+ "email": "pasakornpakjeera@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/api.badboy.json b/domains/api.badboy.json
deleted file mode 100644
index d8433f050..000000000
--- a/domains/api.badboy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Semant Api",
- "owner": {
- "username": "s3mant",
- "email": "contact@semant.is-a.dev"
- },
- "record": {
- "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co"
- }
-}
diff --git a/domains/api.gurubot.json b/domains/api.gurubot.json
deleted file mode 100644
index 76f3049a3..000000000
--- a/domains/api.gurubot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Guru322",
- "email": "sahoogurucharan00@gmail.com"
- },
- "record": {
- "CNAME": "guruapi-rlc1.onrender.com"
- }
-}
diff --git a/domains/api.json b/domains/api.json
index 2afedf41e..942fee6dc 100644
--- a/domains/api.json
+++ b/domains/api.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
+ "username": "wdhdev",
+ "email": "william@williamharrison.dev"
},
"record": {
diff --git a/domains/api.semant.json b/domains/api.semant.json
index e10b2f2ac..2320f5723 100644
--- a/domains/api.semant.json
+++ b/domains/api.semant.json
@@ -6,6 +6,6 @@
"discord": "445073800850046977"
},
"record": {
- "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co"
+ "CNAME": "proxy.private.danbot.host"
}
}
diff --git a/domains/api.stefdp.json b/domains/api.stefdp.json
index ac75435d3..7a920dce5 100644
--- a/domains/api.stefdp.json
+++ b/domains/api.stefdp.json
@@ -6,7 +6,7 @@
},
"record": {
"A": [
- "84.46.245.191"
+ "109.71.252.37"
]
}
}
diff --git a/domains/api.taoanhdep.json b/domains/api.taoanhdep.json
deleted file mode 100644
index 6fb447243..000000000
--- a/domains/api.taoanhdep.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "bracou",
- "email": "bracoui809@gmail.com"
- },
- "record": {
- "CNAME": "f9fbfdf8-17b8-4bce-be7f-34c1f919bb92.id.repl.co"
- }
-}
diff --git a/domains/apiharam.json b/domains/apiharam.json
deleted file mode 100644
index e4b37ae77..000000000
--- a/domains/apiharam.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "For My Haram API",
- "repo": "https://github.com/ThisMe124",
- "owner": {
- "username": "ThisMe124",
- "email": "anonymous.orgn@gmail.com"
- },
- "record": {
- "CNAME": "haram-api-production.up.railway.app"
- }
-}
diff --git a/domains/apiwebserver.json b/domains/apiwebserver.json
new file mode 100644
index 000000000..ad97df8d3
--- /dev/null
+++ b/domains/apiwebserver.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BangMbon",
+ "email": "dci.reborn@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/app.allancoding.json b/domains/app.allancoding.json
new file mode 100644
index 000000000..2deb8c97c
--- /dev/null
+++ b/domains/app.allancoding.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "allancoding",
+ "email": "allancoding.dev@gmail.com",
+ "twitter": "allancoding",
+ "discord": "allancoding"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/appeals.json b/domains/appeals.json
new file mode 100644
index 000000000..35e798d00
--- /dev/null
+++ b/domains/appeals.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "mtgsquad",
+ "email": "mahir@molai.dev"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/appscom.json b/domains/appscom.json
index afd933cb3..4822e0816 100644
--- a/domains/appscom.json
+++ b/domains/appscom.json
@@ -4,7 +4,7 @@
"email": "eduardomp.mendoza@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/arafat.json b/domains/arafat.json
new file mode 100644
index 000000000..1793b599a
--- /dev/null
+++ b/domains/arafat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CodingWithArafat",
+ "email": "codingwitharafat@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/araon.json b/domains/araon.json
new file mode 100644
index 000000000..a900700e1
--- /dev/null
+++ b/domains/araon.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Araon",
+ "email": "soumik.ghosh1998@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/arctix.json b/domains/arctix.json
index 4ff651cb4..3fc5cf560 100644
--- a/domains/arctix.json
+++ b/domains/arctix.json
@@ -4,7 +4,7 @@
"email": "sarbes60@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/arda.json b/domains/arda.json
deleted file mode 100644
index d1af8b954..000000000
--- a/domains/arda.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "personal website",
- "repo": "https://github.com/duzelicem",
- "owner": {
- "username": "duzelicem",
- "email": "ardagkc@proton.me",
- "discord": "dcez"
- },
- "record": {
- "CNAME": "duzelicem.com"
- }
-}
diff --git a/domains/arghozali.json b/domains/arghozali.json
deleted file mode 100644
index 6a0a6926a..000000000
--- a/domains/arghozali.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ARGHOZALI",
- "email": "arghozalichannel@gmail.com"
- },
- "record": {
- "A": ["47.88.91.10"]
- }
-}
diff --git a/domains/argonnetworkmainframe.json b/domains/argonnetworkmainframe.json
new file mode 100644
index 000000000..46797af02
--- /dev/null
+++ b/domains/argonnetworkmainframe.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "carterkimbler",
+ "email": "kimblercarter@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/croissant.json b/domains/arhammusheer.json
similarity index 100%
rename from domains/croissant.json
rename to domains/arhammusheer.json
diff --git a/domains/ari.json b/domains/ari.json
deleted file mode 100644
index 97509f6f9..000000000
--- a/domains/ari.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "RayhanADev's Website!",
- "repo": "https://github.com/rayhanadev/Personal-Website",
- "owner": {
- "username": "rayhanadev",
- "email": "rayhanadev@protonmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/ariez.json b/domains/ariez.json
deleted file mode 100644
index b3c759cd9..000000000
--- a/domains/ariez.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ariezinc",
- "email": "ttkeaton@outlook.com"
- },
-
- "record": {
- "CNAME": "meowriez-me.pages.dev"
- }
-}
diff --git a/domains/arin.json b/domains/arin.json
deleted file mode 100644
index 0bdedfb6c..000000000
--- a/domains/arin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "arin's personal website",
- "repo": "https://github.com/6Arin9",
- "owner": {
- "username": "arin",
- "email": "karciello.yt@gmail.com"
- },
- "record": {
- "CNAME": "arindev.tech"
- }
-}
diff --git a/domains/ark.json b/domains/ark.json
new file mode 100644
index 000000000..6674f9466
--- /dev/null
+++ b/domains/ark.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SamarthGhante",
+ "email": "samarthghante.dev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/arman.json b/domains/arman.json
deleted file mode 100644
index 7744011a9..000000000
--- a/domains/arman.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Arman's personal website!",
- "repo": "https://github.com/ItzArman09/website",
- "owner": {
- "username": "ItzArman09",
- "email": "contact@mail.arman.is-a.dev"
- },
- "record": {
- "A": ["89.106.200.1"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/artix.json b/domains/artix.json
index f8acd04bd..72121f9b3 100644
--- a/domains/artix.json
+++ b/domains/artix.json
@@ -4,6 +4,6 @@
"email": "yu1234u73f.com@gmail.com"
},
"record": {
- "URL": "http://51.68.194.254:3116"
+ "CNAME": "proxy.private.danbot.host"
}
}
diff --git a/domains/arunodmanohara.json b/domains/arunodmanohara.json
index 0160f9183..74a402204 100644
--- a/domains/arunodmanohara.json
+++ b/domains/arunodmanohara.json
@@ -4,7 +4,7 @@
"email": "arunodmanoharaofficial@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/arv.json b/domains/arv.json
new file mode 100644
index 000000000..2e17cc5ad
--- /dev/null
+++ b/domains/arv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aravinds-arv",
+ "email": "aravinds.arv@pm.me"
+ },
+ "record": {
+ "CNAME": "aravinds-arv.github.io"
+ }
+}
diff --git a/domains/aryan.json b/domains/aryan.json
index fbb497634..05281c543 100644
--- a/domains/aryan.json
+++ b/domains/aryan.json
@@ -4,7 +4,7 @@
"email": "aryanmenghare@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ash.json b/domains/ash.json
new file mode 100644
index 000000000..6152a1f7f
--- /dev/null
+++ b/domains/ash.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Drake-Ash",
+ "email": "ashwinv4444@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ashey.json b/domains/ashey.json
new file mode 100644
index 000000000..bfd473234
--- /dev/null
+++ b/domains/ashey.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "notashleel",
+ "email": "aumanshk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/asheyxd.json b/domains/asheyxd.json
new file mode 100644
index 000000000..bfd473234
--- /dev/null
+++ b/domains/asheyxd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "notashleel",
+ "email": "aumanshk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ashin.json b/domains/ashin.json
deleted file mode 100644
index 8ded3b280..000000000
--- a/domains/ashin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ashin.is-a.dev",
- "repo": "https://github.com/ashinberish/v3",
- "owner": {
- "username": "ashinberish",
- "email": "ashinberish@gmail.com"
- },
- "record": {
- "URL": "https://master.d2p2zrx0sxsnxz.amplifyapp.com"
- }
-}
diff --git a/domains/ashutoshgupta.json b/domains/ashutoshgupta.json
new file mode 100644
index 000000000..64afb72c0
--- /dev/null
+++ b/domains/ashutoshgupta.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "imAshutoshGupta",
+ "email": "aguptaworkspace@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ashvani-kumar.json b/domains/ashvani-kumar.json
new file mode 100644
index 000000000..17afeab15
--- /dev/null
+++ b/domains/ashvani-kumar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AshvaniRaman",
+ "email": "ashvani.gcpublic@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/asmin.json b/domains/asmin.json
index 11226af27..a13d7cc92 100644
--- a/domains/asmin.json
+++ b/domains/asmin.json
@@ -4,7 +4,7 @@
"email": "asmingiriofficial@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/asmo.json b/domains/asmo.json
new file mode 100644
index 000000000..de762a484
--- /dev/null
+++ b/domains/asmo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Asmo343",
+ "email": "jan.glomb1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aspect404.json b/domains/aspect404.json
deleted file mode 100644
index a297a1402..000000000
--- a/domains/aspect404.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Aspect404_'s Website",
- "owner": {
- "username": "Aspect-404",
- "email": "newaspectdevelopment@gmail.com",
- "discord": "807361766572818484",
- "twitter": "Aspect404_"
- },
- "record": {
- "CNAME": "e070f94f-3589-4c49-ac40-baa97dea6ccd.id.repl.co"
- }
-}
diff --git a/domains/asriel.json b/domains/asriel.json
index e3eae9fbc..9d3db8c62 100644
--- a/domains/asriel.json
+++ b/domains/asriel.json
@@ -3,10 +3,10 @@
"repo": "https://github.com/asrielthegoat/asrielthegoat.github.io",
"owner": {
"username": "AsrieltheGoat",
- "email": "admin@dreemurrs.eu.org",
- "discord": "AsrieltheGoat#9753"
+ "email": "ganyu@segs.eu.org",
+ "discord": "AsrieltheGoat"
},
"record": {
- "A": ["146.56.191.239"]
+ "CNAME": "asrielthegoat.github.io"
}
}
diff --git a/domains/asteria.json b/domains/asteria.json
new file mode 100644
index 000000000..65ede161f
--- /dev/null
+++ b/domains/asteria.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "asteriau",
+ "email": "dorahaladita@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/astra.json b/domains/astra.json
new file mode 100644
index 000000000..5cf54865a
--- /dev/null
+++ b/domains/astra.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "LilyMusic",
+ "email": "lilymusicdiscord@gmail.com",
+ "discord": "981225782938579014"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
diff --git a/domains/astrix.json b/domains/astrix.json
deleted file mode 100644
index 8d446cff0..000000000
--- a/domains/astrix.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "LeGi0N09",
- "email": "priyanshmodi9@gmail.com",
- "discord": "712212307585007677"
- },
-
- "record": {
- "CNAME": "b618f6e1-a380-430e-a0cd-d65c68368b5e.id.repl.co"
- }
-}
diff --git a/domains/astro.json b/domains/astro.json
new file mode 100644
index 000000000..7c7961232
--- /dev/null
+++ b/domains/astro.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "777advait",
+ "email": "advait.nsj@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/atharv-jha.json b/domains/atharv-jha.json
index 369030a99..f01e0357b 100644
--- a/domains/atharv-jha.json
+++ b/domains/atharv-jha.json
@@ -4,7 +4,7 @@
"email": "jha.atharv27@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/atharva.json b/domains/atharva.json
index 98fa0ec8c..7e7ba7b5f 100644
--- a/domains/atharva.json
+++ b/domains/atharva.json
@@ -2,10 +2,10 @@
"repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io",
"owner": {
"username": "atharvaupadhyay",
- "email": "atharva.upadhyay1099@gmail.com",
- "discord": "atharvaupadhyay"
+ "email": "atharva.upadhyay1099@gmail.com"
},
"record": {
- "CNAME": "atharvaupadhyay.github.io"
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/atharvaupadhyay.json b/domains/atharvaupadhyay.json
index ffcd25ce4..d243d4020 100644
--- a/domains/atharvaupadhyay.json
+++ b/domains/atharvaupadhyay.json
@@ -1,9 +1,12 @@
{
+ "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io",
"owner": {
"username": "atharvaupadhyay",
"email": "atharva.upadhyay1099@gmail.com"
},
"record": {
- "CNAME": "atharvaupadhyay.github.io"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com", "hosts.is-a.dev"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/athir.json b/domains/athir.json
new file mode 100644
index 000000000..ea712e13c
--- /dev/null
+++ b/domains/athir.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tharth0ur",
+ "email": "athir.aldefaie1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/attaditya.json b/domains/attaditya.json
deleted file mode 100644
index 4d1f8c4b2..000000000
--- a/domains/attaditya.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "I am Aditya, a Game Developer, a Web Developer, a YouTuber and a Student.",
- "repo": "https://github.com/Attachment-Studios/AttAditya",
- "owner": {
- "username": "Attachment-Studios",
- "email": "aditya.adigo@gmail.com"
- },
- "record": {
- "URL": "https://attaditya.deta.dev"
- }
-}
diff --git a/domains/attafriski.json b/domains/attafriski.json
new file mode 100644
index 000000000..0c2d87856
--- /dev/null
+++ b/domains/attafriski.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "attaf-riski",
+ "email": "atafriski27@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/atuel.json b/domains/atuel.json
index 5251ae8c8..8660097a1 100644
--- a/domains/atuel.json
+++ b/domains/atuel.json
@@ -4,7 +4,7 @@
"email": "stanasqwe@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/atzu.json b/domains/atzu.json
deleted file mode 100644
index 0925deff3..000000000
--- a/domains/atzu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Atzu's Personal Website",
- "repo": "https://github.com/z3ro0k",
- "owner": {
- "username": "Atzu",
- "email": "atzu@nextgenteam.tech"
- },
- "record": {
- "URL": "https://atzu.studio"
- }
-}
diff --git a/domains/august.json b/domains/august.json
deleted file mode 100644
index 02bea3222..000000000
--- a/domains/august.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "some 16 year old who knows how to code",
- "repo": "https://github.com/auguwu",
- "record": {
- "URL": "https://augu.dev"
- },
- "owner": {
- "username": "auguwu",
- "email": "august@augu.dev"
- }
-}
diff --git a/domains/augustin.json b/domains/augustin.json
deleted file mode 100644
index b6949cd92..000000000
--- a/domains/augustin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Augustin's personal developer website",
- "repo": "https://github.com/AugustinJose1221",
- "owner": {
- "username": "AugustinJose1221",
- "email": "augustinjose1221@gmail.com"
- },
- "record": {
- "CNAME": "www.augustinjose.com"
- }
-}
diff --git a/domains/austin.json b/domains/austin.json
deleted file mode 100644
index 46f7bd605..000000000
--- a/domains/austin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Austin's personal developer website",
- "repo": "https://github.com/austindyoung",
- "owner": {
- "username": "austindyoung",
- "email": "austin@doesweb.dev"
- },
- "record": {
- "URL": "http://austindyoung.github.io"
- }
-}
diff --git a/domains/austinleath.json b/domains/austinleath.json
deleted file mode 100644
index f78798a50..000000000
--- a/domains/austinleath.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "AustinLeath",
- "email": "austinleath18@gmail.com"
- },
-
- "record": {
- "A": ["153.33.92.51"]
- }
-}
diff --git a/domains/autobean.json b/domains/autobean.json
new file mode 100644
index 000000000..c49ac6ea1
--- /dev/null
+++ b/domains/autobean.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AriesPowv",
+ "email": "apowvalla26@jesuitmail.org"
+ },
+ "record": {
+ "A": ["34.111.254.92"]
+ }
+}
diff --git a/domains/auuub.json b/domains/auuub.json
index 873fd0888..ddd70f4fc 100644
--- a/domains/auuub.json
+++ b/domains/auuub.json
@@ -4,7 +4,7 @@
"email": "gonzales.gabrielbaral+github@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ave.json b/domains/ave.json
index 7e93c23bc..456a3e924 100644
--- a/domains/ave.json
+++ b/domains/ave.json
@@ -1,11 +1,11 @@
{
- "description": "Personal site for github@ayvacs",
- "repo": "https://github.com/ayvacs/ayvacs.github.io",
- "owner": {
- "username": "ayvacs",
- "email": "ayvacs@proton.me"
- },
- "record": {
- "CNAME": "ayvacs.github.io"
- }
+ "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/avg.json b/domains/avg.json
index d0aba07f1..9eedf1aed 100644
--- a/domains/avg.json
+++ b/domains/avg.json
@@ -1,12 +1,10 @@
{
- "description": "An average developer's blog",
- "repo": "https://github.com/AverageHelper/AverageHelper.github.io",
"owner": {
"username": "AverageHelper",
- "email": "avghelper.5fh6g@simplelogin.co",
- "twitter": "avghelper"
+ "email": "",
+ "mastodon": "@avghelper@average.name"
},
"record": {
- "URL": "https://averagehelper.github.io"
+ "URL": "https://average.name"
}
}
diff --git a/domains/avi.json b/domains/avi.json
index ecabd2b20..a423d3823 100644
--- a/domains/avi.json
+++ b/domains/avi.json
@@ -1,9 +1,11 @@
{
"owner": {
"username": "avipars",
- "email": "avi.pars@gmail.com"
+ "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
new file mode 100644
index 000000000..62dacdc06
--- /dev/null
+++ b/domains/avidevs31.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AviDevs31",
+ "email": "josealbertotaverazz@gmail.com"
+ },
+ "record": {
+ "CNAME": "avidevs31.github.io"
+ }
+}
diff --git a/domains/avikek.json b/domains/avikek.json
index 6ea85b620..6da227cf9 100644
--- a/domains/avikek.json
+++ b/domains/avikek.json
@@ -4,7 +4,7 @@
"email": "abhishek.fodikar29@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/aware.json b/domains/aware.json
index 6b0b6cba3..e8e1899ce 100644
--- a/domains/aware.json
+++ b/domains/aware.json
@@ -4,7 +4,7 @@
"email": "david.boltong@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ayaan.json b/domains/ayaan.json
index c059fac4c..71c2d2acd 100644
--- a/domains/ayaan.json
+++ b/domains/ayaan.json
@@ -4,7 +4,7 @@
"email": "dexjrdexjr@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ayaanhaider.json b/domains/ayaanhaider.json
new file mode 100644
index 000000000..0069f747a
--- /dev/null
+++ b/domains/ayaanhaider.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ayaanhaider-dev",
+ "email": "ayaanhaider.dev@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "ayaanhaider-dev.web.app"
+ }
+}
diff --git a/domains/ayanamy.json b/domains/ayanamy.json
deleted file mode 100644
index fccd3e0c2..000000000
--- a/domains/ayanamy.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "AyanAmy's About Page",
- "repo": "https://github.com/jy1263/jy1263.github.io",
- "owner": {
- "username": "jy1263",
- "email": "",
- "twitter": "jy126orjy126"
- },
- "record": {
- "URL": "https://jy1263.github.io"
- }
-}
diff --git a/domains/aymenjelassi.json b/domains/aymenjelassi.json
index 3c16e3cf2..c98f7f421 100644
--- a/domains/aymenjelassi.json
+++ b/domains/aymenjelassi.json
@@ -4,7 +4,7 @@
"email": "jelassiaymen094@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ayrox.json b/domains/ayrox.json
new file mode 100644
index 000000000..1194d5dd7
--- /dev/null
+++ b/domains/ayrox.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ayroxtv",
+ "email": "me@robinbridoux.fr"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ayushi.json b/domains/ayushi.json
index 59581e1d1..e89ab5238 100644
--- a/domains/ayushi.json
+++ b/domains/ayushi.json
@@ -4,7 +4,7 @@
"email": "ayushisaxena24111999@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ayushmann.json b/domains/ayushmann.json
new file mode 100644
index 000000000..3de43983b
--- /dev/null
+++ b/domains/ayushmann.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ayushmann025",
+ "email": "aayush.srivastava25@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ayuv.json b/domains/ayuv.json
new file mode 100644
index 000000000..736b8f756
--- /dev/null
+++ b/domains/ayuv.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "bugholic",
+ "email": "masterav2001@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ayxdacat.json b/domains/ayxdacat.json
new file mode 100644
index 000000000..42963d8d1
--- /dev/null
+++ b/domains/ayxdacat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ayxkaddd",
+ "email": "bladeec1ty@protonmail.com"
+ },
+ "record": {
+ "URL": "https://ayxdacat.lol"
+ }
+}
diff --git a/domains/azul.json b/domains/azul.json
index aa6eaf81c..fe69cc94c 100644
--- a/domains/azul.json
+++ b/domains/azul.json
@@ -4,7 +4,7 @@
"email": "TheRealGeoDash2019@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/b5i.json b/domains/b5i.json
index 07bf9b7df..e66843a44 100644
--- a/domains/b5i.json
+++ b/domains/b5i.json
@@ -4,7 +4,7 @@
"email": "bollengier.antoine@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/baba.json b/domains/baba.json
index 892aaafd8..6b83db4ba 100644
--- a/domains/baba.json
+++ b/domains/baba.json
@@ -4,7 +4,7 @@
"email": "sangueotario@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bachwumpus.json b/domains/bachwumpus.json
deleted file mode 100644
index 363ca6786..000000000
--- a/domains/bachwumpus.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "BachLe2000",
- "email": "tinh200974@gmail.com"
- },
- "record": {
- "CNAME": "web.frawgnu.tk"
- }
-}
diff --git a/domains/badboy.json b/domains/badboy.json
deleted file mode 100644
index 154fb79b5..000000000
--- a/domains/badboy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Bad Boy/Semant 's Website",
- "owner": {
- "username": "s3mant",
- "email": "contact@semant.is-a.dev"
- },
- "record": {
- "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co"
- }
-}
diff --git a/domains/bae.json b/domains/bae.json
deleted file mode 100644
index 3020d6e31..000000000
--- a/domains/bae.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Bae's personal website",
- "owner": {
- "username": "ba-e",
- "email": "bae.nyom@gmail.com"
- },
- "record": {
- "URL": "https://bae.codes"
- }
-}
diff --git a/domains/bagaz.json b/domains/bagaz.json
deleted file mode 100644
index 735fa867d..000000000
--- a/domains/bagaz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "bl33dz",
- "email": "bagaz@protonmail.ch"
- },
- "record": {
- "A": ["180.250.135.31"]
- }
-}
diff --git a/domains/balduzz.json b/domains/balduzz.json
new file mode 100644
index 000000000..df74a7998
--- /dev/null
+++ b/domains/balduzz.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Bbalduzz",
+ "email": "edoardoba2004@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/balls.json b/domains/balls.json
new file mode 100644
index 000000000..b158aaa9e
--- /dev/null
+++ b/domains/balls.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ConnorDoesDev",
+ "email": "halil_ismail@yahoo.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bampa.json b/domains/bampa.json
index f1d92badb..c061438ac 100644
--- a/domains/bampa.json
+++ b/domains/bampa.json
@@ -4,7 +4,7 @@
"email": "rafinhabampa@hotmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bangladesh.json b/domains/bangladesh.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/bangladesh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bao.json b/domains/bao.json
index 49cf955d7..1d98a98d4 100644
--- a/domains/bao.json
+++ b/domains/bao.json
@@ -4,7 +4,7 @@
"email": "thisismegiabao@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/baptiste.json b/domains/baptiste.json
index e69ec7658..38e7e7271 100644
--- a/domains/baptiste.json
+++ b/domains/baptiste.json
@@ -4,7 +4,7 @@
"email": "rouxbaptiste@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bare1.json b/domains/bare1.json
deleted file mode 100644
index 1e74f15b9..000000000
--- a/domains/bare1.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tiwlinkskwazeh",
- "email": "kwazehh@proton.me"
- },
- "record": {
- "A": ["18.215.144.92"]
- }
-}
diff --git a/domains/bashafk.json b/domains/bashafk.json
index 0427a9844..9b3d3361d 100644
--- a/domains/bashafk.json
+++ b/domains/bashafk.json
@@ -4,7 +4,7 @@
"email": "OfficialIbrahimKhan2004@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bast.json b/domains/bast.json
index 4cc301bed..8339f3bca 100644
--- a/domains/bast.json
+++ b/domains/bast.json
@@ -1,10 +1,10 @@
{
- "description": "Bast's Programming Blog",
- "owner": {
- "username": "bast0006",
- "email": "bast@bast-development.com"
- },
- "record": {
- "URL": "https://bast-development.com"
- }
+ "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/baumistlustig.json b/domains/baumistlustig.json
deleted file mode 100644
index 5eca5ebfb..000000000
--- a/domains/baumistlustig.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "baumistlustig",
- "email": "johannes.hoellwerth@protonmail.com"
- },
-
- "record": {
- "CNAME": "hoellwerth.eu"
- }
-}
diff --git a/domains/bayu.json b/domains/bayu.json
new file mode 100644
index 000000000..4d88b6558
--- /dev/null
+++ b/domains/bayu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BayuBatam2008",
+ "email": "bayusimamora2008@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bbhc.json b/domains/bbhc.json
deleted file mode 100644
index 4df6c0b06..000000000
--- a/domains/bbhc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "thetayloredman",
- "email": "",
- "telegram": "BadBoyHaloCat"
- },
- "description": "Personal website",
- "record": {
- "A": ["167.172.157.69"]
- }
-}
diff --git a/domains/bd.json b/domains/bd.json
new file mode 100644
index 000000000..da9579258
--- /dev/null
+++ b/domains/bd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bday-list.suki.json b/domains/bday-list.suki.json
deleted file mode 100644
index fa791d761..000000000
--- a/domains/bday-list.suki.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "CNAME": "65f74b16-32c4-4c9b-b6ae-8fd70c262487.id.repl.co"
- }
-}
diff --git a/domains/bdays.suki.json b/domains/bdays.suki.json
new file mode 100644
index 000000000..2f1cd119d
--- /dev/null
+++ b/domains/bdays.suki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SukiPlayz",
+ "email": "sukimayoo@outlook.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
diff --git a/domains/bdfd.json b/domains/bdfd.json
deleted file mode 100644
index c48353767..000000000
--- a/domains/bdfd.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "wansie1",
- "email": "msc2tvdn@duck.com",
- "discord": "962788530336178236"
- },
-
- "record": {
- "CNAME": "b5a101d0-5527-4851-9c20-3907f2992d26.id.repl.co"
- }
-}
diff --git a/domains/bdloser.json b/domains/bdloser.json
new file mode 100644
index 000000000..45477ee8e
--- /dev/null
+++ b/domains/bdloser.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "bdloser404",
+ "email": "ssh.mail.test@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/beabzk.json b/domains/beabzk.json
deleted file mode 100644
index b6ba68ba9..000000000
--- a/domains/beabzk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "beabzk",
- "email": "beabfekadz@gmail.com"
- },
- "record": {
- "CNAME": "beabzk.github.io"
- }
-}
diff --git a/domains/bebo.json b/domains/bebo.json
new file mode 100644
index 000000000..ee06a6d1d
--- /dev/null
+++ b/domains/bebo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Fbhfvj",
+ "email": "bebogeorge2008@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bedrock16.json b/domains/bedrock16.json
deleted file mode 100644
index 22fd5dd49..000000000
--- a/domains/bedrock16.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "my website",
- "repo": "https://github.com/Bedrock16",
- "owner": {
- "username": "atharv",
- "email": "youbed61@gmail.com"
- },
- "record": {
- "A": ["34.120.194.28"]
- }
-}
diff --git a/domains/bee.json b/domains/bee.json
deleted file mode 100644
index f7e5bc7f1..000000000
--- a/domains/bee.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "padlocks",
- "email": "",
- "twitter": "WeDoBeeVibing",
- "discord": "bee!#0001"
- },
- "description": "Commission website and links to my social medias.",
- "record": {
- "CNAME": "enbee.carrd.co"
- }
-}
diff --git a/domains/belka.json b/domains/belka.json
new file mode 100644
index 000000000..2c71953b8
--- /dev/null
+++ b/domains/belka.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zshmeta",
+ "email": "zshmeta@gmail.com"
+ },
+ "record": {
+ "A": ["84.235.229.48"]
+ }
+}
diff --git a/domains/beluminh.json b/domains/beluminh.json
deleted file mode 100644
index 9465a31d6..000000000
--- a/domains/beluminh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "istrueuser",
- "email": "thisistrueemail@gmail.com"
- },
- "record": {
- "CNAME": "b34f0c07-3581-4a0e-b0be-81eec794837c.id.repl.co"
- }
-}
diff --git a/domains/ben.json b/domains/ben.json
index f0a9bbc2c..c963c0b92 100644
--- a/domains/ben.json
+++ b/domains/ben.json
@@ -3,8 +3,17 @@
"username": "justpiple",
"email": "me@benspace.xyz"
},
-
"record": {
- "CNAME": "justpiple.github.io"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/benjae.json b/domains/benjae.json
index 68af12f91..712786f1a 100644
--- a/domains/benjae.json
+++ b/domains/benjae.json
@@ -4,7 +4,7 @@
"email": "benjaminang2009@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/bera.json b/domains/bera.json
new file mode 100644
index 000000000..583cd07b1
--- /dev/null
+++ b/domains/bera.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yusufberad",
+ "email": "ybdanisik@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/berztech.json b/domains/berztech.json
new file mode 100644
index 000000000..d7f43da5b
--- /dev/null
+++ b/domains/berztech.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sxurabh",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "CNAME": "berztech.vercel.app"
+ }
+}
diff --git a/domains/bets.json b/domains/bets.json
deleted file mode 100644
index 8afecd8f5..000000000
--- a/domains/bets.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Betsthebest",
- "email": "bets.hassoun@gmail.com"
- },
- "record": {
- "A": ["16.171.139.108"]
- }
-}
diff --git a/domains/bgz.json b/domains/bgz.json
deleted file mode 100644
index 49bf20c35..000000000
--- a/domains/bgz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "bl33dz",
- "email": "fcb775566@gmail.com"
- },
-
- "record": {
- "A": ["180.250.135.31"]
- }
-}
diff --git a/domains/bharat.json b/domains/bharat.json
new file mode 100644
index 000000000..093dcaee2
--- /dev/null
+++ b/domains/bharat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "imbharat420",
+ "email": "imbharat420@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bhavishya.json b/domains/bhavishya.json
index e6187077d..4e6c5d378 100644
--- a/domains/bhavishya.json
+++ b/domains/bhavishya.json
@@ -3,8 +3,9 @@
"username": "BH00TXD",
"email": "ghost25112006@gmail.com"
},
-
"record": {
- "A": ["164.132.74.251"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/bhavishyadahiya.json b/domains/bhavishyadahiya.json
new file mode 100644
index 000000000..5b0391be7
--- /dev/null
+++ b/domains/bhavishyadahiya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BH00TXD",
+ "email": "ghost25112006@gmail.com"
+ },
+ "record": {
+ "CNAME": "proxy.private.danbot.host"
+ }
+}
diff --git a/domains/bigyan.json b/domains/bigyan.json
new file mode 100644
index 000000000..118cfe41e
--- /dev/null
+++ b/domains/bigyan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "callmebasistha",
+ "email": "callmebasistha@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bilalkhan.json b/domains/bilalkhan.json
new file mode 100644
index 000000000..126087e49
--- /dev/null
+++ b/domains/bilalkhan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "b4bekkie",
+ "email": "iambekkie99@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bill.json b/domains/bill.json
new file mode 100644
index 000000000..daad64907
--- /dev/null
+++ b/domains/bill.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CMBill",
+ "email": "callmebill@billw.cn"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bitter-130.json b/domains/bitter-130.json
new file mode 100644
index 000000000..2a9cfef4f
--- /dev/null
+++ b/domains/bitter-130.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Bitter130",
+ "email": "devid.bitter.130@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bitter130.json b/domains/bitter130.json
new file mode 100644
index 000000000..2a9cfef4f
--- /dev/null
+++ b/domains/bitter130.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Bitter130",
+ "email": "devid.bitter.130@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blankparticle.json b/domains/blankparticle.json
index 5cf5c8339..937ac3add 100644
--- a/domains/blankparticle.json
+++ b/domains/blankparticle.json
@@ -1,9 +1,9 @@
{
"owner": {
"username": "BlankParticle",
- "email": "hello@blankparticle.me"
+ "email": "hello@blankparticle.in"
},
"record": {
- "URL": "https://www.blankparticle.me"
+ "URL": "https://blankparticle.in"
}
}
diff --git a/domains/blazyflash.json b/domains/blazyflash.json
new file mode 100644
index 000000000..bc2a714a6
--- /dev/null
+++ b/domains/blazyflash.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Thanatoslayer6",
+ "email": "thanatoslayer6@gmail.com"
+ },
+ "record": {
+ "URL": "https://ballzy.vercel.app/"
+ }
+}
diff --git a/domains/blc.json b/domains/blc.json
new file mode 100644
index 000000000..6b3cc9860
--- /dev/null
+++ b/domains/blc.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "BLCXD",
+ "email": "blctoblc223@gmail.com",
+ "discord": "723837167499083788"
+ },
+
+ "record": {
+ "CNAME": "blcpage.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/blek.json b/domains/blek.json
index 3ed49412d..df17670cf 100644
--- a/domains/blek.json
+++ b/domains/blek.json
@@ -2,9 +2,10 @@
"description": "blek is a dev",
"owner": {
"username": "b1ek",
- "email": "me@blek.codes"
+ "email": "me@blek.codes"
},
"record": {
- "A": ["185.130.226.115"]
+ "A": [ "185.130.226.115" ],
+ "AAAA": [ "2a05:b40:0:570:4563:92af:9a56:7fc8" ]
}
}
diff --git a/domains/blessingmwiti.json b/domains/blessingmwiti.json
index 5e1ec3e4e..fba1db140 100644
--- a/domains/blessingmwiti.json
+++ b/domains/blessingmwiti.json
@@ -4,7 +4,7 @@
"email": "blessingmwiti@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/blinx.json b/domains/blinx.json
index 76a343980..5cc427158 100644
--- a/domains/blinx.json
+++ b/domains/blinx.json
@@ -4,7 +4,7 @@
"email": "blinxduh@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/blob.json b/domains/blob.json
index 780cfb73f..6fb11d7a9 100644
--- a/domains/blob.json
+++ b/domains/blob.json
@@ -4,7 +4,7 @@
"email": "blob.dev@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/block.json b/domains/block.json
index dc3827c88..a21466fe4 100644
--- a/domains/block.json
+++ b/domains/block.json
@@ -4,8 +4,8 @@
"email": "romain.tocsin@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
-}
\ No newline at end of file
+}
diff --git a/domains/blockchaindevpanther.json b/domains/blockchaindevpanther.json
index cd4fcebb4..311226885 100644
--- a/domains/blockchaindevpanther.json
+++ b/domains/blockchaindevpanther.json
@@ -4,7 +4,7 @@
"email": "zahidhassankalaroa104@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/blog.crystal.json b/domains/blog.crystal.json
deleted file mode 100644
index 346c63b1f..000000000
--- a/domains/blog.crystal.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "crystalbajgai",
- "email": "crystalbajgai@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/blog.itznesbro.json b/domains/blog.itznesbro.json
deleted file mode 100644
index cd70d939b..000000000
--- a/domains/blog.itznesbro.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ItzNesbroDev",
- "email": "asnesbeer3@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/chiragnahata.json b/domains/blog.syntaxloopers.json
similarity index 100%
rename from domains/chiragnahata.json
rename to domains/blog.syntaxloopers.json
diff --git a/domains/blog.tnt.json b/domains/blog.tnt.json
deleted file mode 100644
index be2e1ff31..000000000
--- a/domains/blog.tnt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SebTNT",
- "email": "turquoisetntmultimedia@gmail.com"
- },
- "record": {
- "CNAME": "ghs.google.com"
- }
-}
diff --git a/domains/blog.whine.json b/domains/blog.whine.json
deleted file mode 100644
index 72e0ee1e2..000000000
--- a/domains/blog.whine.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "whinee",
- "email": "",
- "twitter": "whi_nyaan"
- },
- "description": "whi_ne's blog",
- "record": {
- "CNAME": "blog-production-f684.up.railway.app"
- }
-}
diff --git a/domains/blogs.harshrai.json b/domains/blogs.harshrai.json
deleted file mode 100644
index e582c3ad1..000000000
--- a/domains/blogs.harshrai.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Harshrai1023",
- "email": "harshrai1023@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/blucifer.json b/domains/blucifer.json
new file mode 100644
index 000000000..da16bd99e
--- /dev/null
+++ b/domains/blucifer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "blucifer1337",
+ "email": "blucifer1337@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blue.json b/domains/blue.json
index a7276807d..2f9386f4a 100644
--- a/domains/blue.json
+++ b/domains/blue.json
@@ -4,7 +4,7 @@
"email": "ngolong1396@hotmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bluesky01st.json b/domains/bluesky01st.json
deleted file mode 100644
index adde959e8..000000000
--- a/domains/bluesky01st.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "BlueSky01st",
- "email": "mincraft206127@outlook.com"
- },
- "record": {
- "CNAME": "blog.bluesky01st.eu.org"
- }
-}
diff --git a/domains/bni.co.id.json b/domains/bni.co.id.json
new file mode 100644
index 000000000..a650d4c88
--- /dev/null
+++ b/domains/bni.co.id.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dana-fintech-id",
+ "email": "csferdisambo2023@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bobbrown.json b/domains/bobbrown.json
deleted file mode 100644
index 20ea8eda8..000000000
--- a/domains/bobbrown.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My portfolio website!",
- "repo": "https://github.com/BobBrown1/BobBrown1.github.io",
- "owner": {
- "username": "BobBrown1",
- "email": "bob.brown.the.dev@gmail.com"
- },
- "record": {
- "CNAME": "bob-brown.info"
- }
-}
diff --git a/domains/bogdan.json b/domains/bogdan.json
index 052d58fbe..822b0d427 100644
--- a/domains/bogdan.json
+++ b/domains/bogdan.json
@@ -4,7 +4,7 @@
"email": "hysbskyblockgod@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/boggy.json b/domains/boggy.json
index 1aabec005..01ae7849e 100644
--- a/domains/boggy.json
+++ b/domains/boggy.json
@@ -1,10 +1,10 @@
{
"owner": {
"username": "boggy539",
- "email": "ethanbogdan@gmail.com"
+ "email": "boggydev@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bongopentester.json b/domains/bongopentester.json
new file mode 100644
index 000000000..2124d1588
--- /dev/null
+++ b/domains/bongopentester.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "iamunixtz",
+ "email": "unixtz@protonmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bongoshop.json b/domains/bongoshop.json
new file mode 100644
index 000000000..0ee6b86bd
--- /dev/null
+++ b/domains/bongoshop.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iamunixtz",
+ "email": "unixtz@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/booogle.json b/domains/booogle.json
index 1bb7ac378..0ccd953d1 100644
--- a/domains/booogle.json
+++ b/domains/booogle.json
@@ -4,7 +4,7 @@
"email": "phu.hoa.dp@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/boston2029.json b/domains/boston2029.json
deleted file mode 100644
index 6059e14f4..000000000
--- a/domains/boston2029.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "boston2029",
- "email": "boston2029@outlook.com"
- },
- "record": {
- "CNAME": "215de2e6-27df-4710-82aa-ae0cfa6f19bc.id.repl.co"
- }
-}
diff --git a/domains/bot.dracx.json b/domains/bot.dracx.json
new file mode 100644
index 000000000..68f770565
--- /dev/null
+++ b/domains/bot.dracx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DarindaDraX",
+ "email": "123kishanvish@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/bot.riskymh.json b/domains/bot.riskymh.json
deleted file mode 100644
index 59ebce7cb..000000000
--- a/domains/bot.riskymh.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Discord Bot Website",
- "repo": "https://github.com/RiskyMH/RiskyBOT",
- "owner": {
- "username": "RiskyMH",
- "discord": "RiskyMH#0182",
- "email": ""
- },
- "record": {
- "URL": "https://riskymh.github.io/RiskyBOT"
- }
-}
diff --git a/domains/bots.json b/domains/bots.json
deleted file mode 100644
index 070601bde..000000000
--- a/domains/bots.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Bots personal developer website",
- "repo": "https://github.com/Bicepsfako",
- "owner": {
- "username": "Bicepsfako",
- "email": "bicepsfako@gmail.com"
- },
- "record": {
- "CNAME": "vascular-barnacle-zfdxk5mcunu4qasmwk8n14na.herokudns.com"
- }
-}
diff --git a/domains/trungmystic.json b/domains/bots.trung.json
similarity index 75%
rename from domains/trungmystic.json
rename to domains/bots.trung.json
index f7dd34ceb..b8c78ecb4 100644
--- a/domains/trungmystic.json
+++ b/domains/bots.trung.json
@@ -4,6 +4,6 @@
"email": "vuthanhtrungsuper@gmail.com"
},
"record": {
- "CNAME": "proxy.private.danbot.host"
+ "CNAME": "bots-website.pages.dev"
}
}
diff --git a/domains/botspointer.json b/domains/botspointer.json
deleted file mode 100644
index c02ebe3e9..000000000
--- a/domains/botspointer.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "discord service for bots free",
- "owner": {
- "username": "Ihzy-Dev",
- "email": "sksksdev@my.com"
- },
- "record": {
- "CNAME": "dns.techhost.live"
- }
-}
diff --git a/domains/bqini.json b/domains/bqini.json
deleted file mode 100644
index a9c46f0c4..000000000
--- a/domains/bqini.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "bqini",
- "email": "",
- "twitter": "bqini"
- },
- "description": "bqini lol",
- "repo": "bqini",
- "record": {
- "CNAME": "33c90791-55a6-4f5f-b6b4-b0da920ba8ed.id.repl.co"
- }
-}
diff --git a/domains/leidenfrost.json b/domains/bracketproto.json
similarity index 57%
rename from domains/leidenfrost.json
rename to domains/bracketproto.json
index a141394fc..a646fe009 100644
--- a/domains/leidenfrost.json
+++ b/domains/bracketproto.json
@@ -1,7 +1,8 @@
{
"owner": {
- "username": "Leidenfrost2718",
- "email": "leidenfrost2718@gmail.com"
+ "username": "oxmc",
+ "email": "oxmc7769.mail@gmail.com",
+ "discord": "oxmc7769"
},
"record": {
"A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
diff --git a/domains/brahianf.json b/domains/brahianf.json
new file mode 100644
index 000000000..507cf50ef
--- /dev/null
+++ b/domains/brahianf.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "brahianf1",
+ "email": "floresbrahian@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bravestone.json b/domains/bravestone.json
deleted file mode 100644
index 82394b239..000000000
--- a/domains/bravestone.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My Personal website.",
- "repo": "https://github.com/itsbravestone",
- "owner": {
- "username": "itsbravestone",
- "email": "imbravestone@zarena.ga",
- "twitter": "imbravestone"
- },
- "record": {
- "URL": "https://imbravestone.ga"
- }
-}
diff --git a/domains/bread.json b/domains/bread.json
index cc9d2f0cc..e16e859ba 100644
--- a/domains/bread.json
+++ b/domains/bread.json
@@ -4,7 +4,7 @@
"email": "hurvzee+partizao@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/brentspine.json b/domains/brentspine.json
new file mode 100644
index 000000000..7a40c510a
--- /dev/null
+++ b/domains/brentspine.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio and personal project website by @Brentspine",
+ "owner": {
+ "username": "brentspine",
+ "email": "me@brentspine.de",
+ "twitter": "brentspine",
+ "discord": "533779674824966154"
+ },
+ "record": {
+ "URL": "https://brentspine.de"
+ }
+}
diff --git a/domains/brnsystems.json b/domains/brnsystems.json
new file mode 100644
index 000000000..34bed2cd7
--- /dev/null
+++ b/domains/brnsystems.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BRNSystems",
+ "email": "bruno@brn.systems"
+ },
+ "record": {
+ "CNAME": "brn.systems"
+ }
+}
diff --git a/domains/broduer.json b/domains/broduer.json
deleted file mode 100644
index afb99b69c..000000000
--- a/domains/broduer.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "broduer.is-a.dev",
- "owner": {
- "username": "broduer40",
- "email": "broduer@aogamers.net",
- "discord": "[AoG+] Broduer#0331"
- },
- "record": {
- "CNAME": "broduer.aogamers.net"
- }
-}
diff --git a/domains/brownvinci.json b/domains/brownvinci.json
new file mode 100644
index 000000000..578104e67
--- /dev/null
+++ b/domains/brownvinci.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BrownVinci",
+ "email": "DigitalBrownVinci@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/brpro.json b/domains/brpro.json
new file mode 100644
index 000000000..1727d584e
--- /dev/null
+++ b/domains/brpro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "raxidbou4nja",
+ "email": "rachid.boughnja@gmail.com"
+ },
+ "record": {
+ "A": ["150.136.61.251"]
+ }
+}
diff --git a/domains/bruhx.json b/domains/bruhx.json
index 7cdeea243..b9256f765 100644
--- a/domains/bruhx.json
+++ b/domains/bruhx.json
@@ -4,7 +4,7 @@
"email": "pollyx73@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/bruhxz.json b/domains/bruhxz.json
deleted file mode 100644
index e43a7b15d..000000000
--- a/domains/bruhxz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Bruhxz54",
- "email": "pollyx73@gmail.com"
- },
- "record": {
- "CNAME": "f2b3938b-4d54-4d87-b941-49461b9d3541.id.repl.co"
- }
-}
diff --git a/domains/bryce.json b/domains/bryce.json
new file mode 100644
index 000000000..9e432bec6
--- /dev/null
+++ b/domains/bryce.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "addinz",
+ "email": "leachbryce8@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bttm.json b/domains/bttm.json
deleted file mode 100644
index 5ee7b2291..000000000
--- a/domains/bttm.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "BasToTheMax",
- "email": "bas@arnold-linda.nl"
- },
- "record": {
- "A": ["185.234.69.13"]
- }
-}
diff --git a/domains/bug-writer.json b/domains/bug-writer.json
deleted file mode 100644
index 9b317de89..000000000
--- a/domains/bug-writer.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "KeIrNeGn",
- "email": "terminatorx5e@gmail.com",
- "discord": "499592235772280842"
- },
-
- "record": {
- "CNAME": "keirnegn.dev"
- }
-}
diff --git a/domains/bulkypanda.json b/domains/bulkypanda.json
new file mode 100644
index 000000000..d7b27a2f4
--- /dev/null
+++ b/domains/bulkypanda.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bulkypanda",
+ "email": "arya@gummadi.net"
+ },
+ "record": {
+ "CNAME": "bulkypanda.github.io"
+ }
+}
diff --git a/domains/bumbleboss.json b/domains/bumbleboss.json
index c17fa6f6a..9979ce838 100644
--- a/domains/bumbleboss.json
+++ b/domains/bumbleboss.json
@@ -4,7 +4,7 @@
"email": "me@bumbleboss.xyz"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/byigit.json b/domains/byigit.json
new file mode 100644
index 000000000..91445aac3
--- /dev/null
+++ b/domains/byigit.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "byigitt",
+ "email": "c2228009@student.cankaya.edu.tr"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bypass.jesgran.json b/domains/bypass.jesgran.json
new file mode 100644
index 000000000..f48e7a4c7
--- /dev/null
+++ b/domains/bypass.jesgran.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Jesgran",
+ "email": "calzdani20@libero.it"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/c22.json b/domains/c22.json
new file mode 100644
index 000000000..affe361a4
--- /dev/null
+++ b/domains/c22.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "c22dev",
+ "email": "constclerc@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cagdas.json b/domains/cagdas.json
new file mode 100644
index 000000000..448aaab81
--- /dev/null
+++ b/domains/cagdas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cagdaskemik",
+ "email": "cagdaskemik@gmail.com"
+ },
+ "record": {
+ "URL": "https://cagdas.vercel.app"
+ }
+}
diff --git a/domains/caiden.json b/domains/caiden.json
index eeaa4c360..d61673cba 100644
--- a/domains/caiden.json
+++ b/domains/caiden.json
@@ -4,7 +4,7 @@
"email": "iididhejejdj@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/caiden.xyz.json b/domains/caiden.xyz.json
index eeaa4c360..d61673cba 100644
--- a/domains/caiden.xyz.json
+++ b/domains/caiden.xyz.json
@@ -4,7 +4,7 @@
"email": "iididhejejdj@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/caillou.json b/domains/caillou.json
new file mode 100644
index 000000000..6e761d1bd
--- /dev/null
+++ b/domains/caillou.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ManIsHot",
+ "email": "palpafett@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cakihorse.json b/domains/cakihorse.json
index d224836e1..fe8e1d290 100644
--- a/domains/cakihorse.json
+++ b/domains/cakihorse.json
@@ -4,7 +4,7 @@
"email": "cakihorse06@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/calamity.json b/domains/calamity.json
new file mode 100644
index 000000000..1af848257
--- /dev/null
+++ b/domains/calamity.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "calamitywoah",
+ "email": "krivojta@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/canarddu38.json b/domains/canarddu38.json
index 5340083ce..1991f5841 100644
--- a/domains/canarddu38.json
+++ b/domains/canarddu38.json
@@ -4,7 +4,7 @@
"email": "julescanardcoin@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/carol3n.json b/domains/carol3n.json
index f03bbd3e0..958d48639 100644
--- a/domains/carol3n.json
+++ b/domains/carol3n.json
@@ -4,7 +4,7 @@
"email": "20cs031.caroline@sjec.ac.in"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/carsonday.json b/domains/carsonday.json
new file mode 100644
index 000000000..6dd0531ce
--- /dev/null
+++ b/domains/carsonday.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "CarsonDay11",
+ "email": "carson@carsonday.pro"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cashlycash.json b/domains/cashlycash.json
deleted file mode 100644
index 87fe58edd..000000000
--- a/domains/cashlycash.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Cashly_Cash's personal website",
- "repo": "https://replit.com/@SH1FT3R/web#main.py",
- "owner": {
- "username": "CashlyCash",
- "email": "arnav000777gupta@gmail.com"
- },
- "record": {
- "CNAME": "187964e1-d104-4c57-a319-a0d664215bf8.id.repl.co"
- }
-}
diff --git a/domains/caspar.json b/domains/caspar.json
deleted file mode 100644
index 9eeb6c43c..000000000
--- a/domains/caspar.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "casparzzz123, Java, Html And Python Developer",
- "repo": "https://github.com/casparzzz123",
- "owner": {
- "username": "casparzzz123",
- "email": "casparzzz123@computer4u.com"
- },
- "record": {
- "CNAME": "letspoop.ga"
- }
-}
diff --git a/domains/catboy.json b/domains/catboy.json
new file mode 100644
index 000000000..9a451ccdf
--- /dev/null
+++ b/domains/catboy.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "SlycIsACatboy",
+ "email": "noahhz942@gmail.com"
+ },
+ "record": {
+ "A": [
+ "137.184.119.127"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/catdrout.json b/domains/catdrout.json
deleted file mode 100644
index 422e614a9..000000000
--- a/domains/catdrout.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "xcatdrout",
- "email": "xcatdrout@proton.me"
- },
- "record": {
- "CNAME": "site-bwj.pages.dev"
- }
-}
diff --git a/domains/catlord.json b/domains/catlord.json
deleted file mode 100644
index 39d7be89c..000000000
--- a/domains/catlord.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "element10101",
- "email": "gnoeleht@gmail.com"
- },
- "record": {
- "CNAME": "3722a886-2c2c-40e3-991b-0d4cb5e935b7.id.repl.co"
- }
-}
diff --git a/domains/catto.json b/domains/catto.json
deleted file mode 100644
index bb0d44c59..000000000
--- a/domains/catto.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "HF1016",
- "email": "harrowfung1016@gmail.com"
- },
- "record": {
- "A": ["140.238.66.154"]
- }
-}
diff --git a/domains/ccnicebruh.json b/domains/ccnicebruh.json
index 98d102505..7e39ad87a 100644
--- a/domains/ccnicebruh.json
+++ b/domains/ccnicebruh.json
@@ -4,7 +4,7 @@
"email": "tangkeehee2002@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ccrp.json b/domains/ccrp.json
deleted file mode 100644
index 38dd25e70..000000000
--- a/domains/ccrp.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "CCRP FiveM",
- "repo": "https://craiccity.ccrp.repl.co",
- "owner": {
- "username": "PatrickDevelopr",
- "email": "patrickdev21@gmail.com"
- },
- "record": {
- "CNAME": "572ca600-be84-4a76-8cf9-986690eaf03b.id.repl.co"
- }
-}
diff --git a/domains/cdn-rehanplayz.json b/domains/cdn-rehanplayz.json
deleted file mode 100644
index b481ce056..000000000
--- a/domains/cdn-rehanplayz.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A CDN for my files",
- "repo": "https://github.com/RehanPlayz/RehanPlayz.github.io",
- "owner": {
- "username": "RehanPlayz",
- "email": "RehanPlayz321@protonmail.com"
- },
- "record": {
- "A": ["159.89.255.51"],
- "TXT": "6ZzT79WA"
- }
-}
diff --git a/domains/cdn.akai.json b/domains/cdn.akai.json
deleted file mode 100644
index f3d419188..000000000
--- a/domains/cdn.akai.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "AmazingAkai",
- "email": "",
- "discord": "Akai#8199"
- },
- "record": {
- "A": ["45.79.247.123"],
- "TXT": "7Yuu0bep"
- }
-}
diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json
deleted file mode 100644
index 19e332b60..000000000
--- a/domains/cdn.arman.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Arman's content delivery network",
- "owner": {
- "username": "ItzArman09",
- "email": "contact@mail.arman.is-a.dev"
- },
- "record": {
- "CNAME": "23f4d8ed-6b28-4e13-a9e9-bd913bbb2040.id.repl.co"
- }
-}
diff --git a/domains/cdn.badboy.json b/domains/cdn.badboy.json
deleted file mode 100644
index 9297c19e4..000000000
--- a/domains/cdn.badboy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/Bad-Boy-Codes/cdn",
- "description": "My static database",
- "owner": {
- "username": "bad-boy-codes",
- "email": "contact@mail.badboy.is-a.dev"
- },
- "record": {
- "CNAME": "0b68d425-3b0b-47fc-bd21-66c73ba1cf15.id.repl.co"
- }
-}
diff --git a/domains/cdn.json b/domains/cdn.json
deleted file mode 100644
index 17b879fa8..000000000
--- a/domains/cdn.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "LellisV2",
- "email": "cloud@lellis.tech",
- "discord": "Lellis#9405",
- "note": "I dont look that much on my email, Fast Respons on Discord."
- },
- "description": "I will use it for my CDN to be able to access the files",
- "record": {
- "A": ["130.162.183.250"]
- }
-}
diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json
index ca5bd2b5b..5e4e750be 100644
--- a/domains/cdn.semant.json
+++ b/domains/cdn.semant.json
@@ -1,11 +1,10 @@
{
- "repo": "https://github.com/SemantCodes/cdn",
"description": "My static database",
"owner": {
"username": "s3mant",
"email": "contact@semant.is-a.dev"
},
"record": {
- "CNAME": "0b68d425-3b0b-47fc-bd21-66c73ba1cf15.id.repl.co"
+ "CNAME": "web-0wfb.onrender.com"
}
}
diff --git a/domains/cdn.yfa.json b/domains/cdn.yfa.json
new file mode 100644
index 000000000..65d3d6e3f
--- /dev/null
+++ b/domains/cdn.yfa.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha", "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "CNAME": "cdn-a12.pages.dev"
+ }
+}
diff --git a/domains/cdn.zerow.json b/domains/cdn.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/cdn.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/cec.json b/domains/cec.json
deleted file mode 100644
index 4803ee828..000000000
--- a/domains/cec.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a url redirector",
- "repo": "https://github.com/w3cy/w3cy",
- "owner": {
- "username": "w3cy",
- "email": "keyv.cec@outlook.com"
- },
- "record": {
- "CNAME": "84ca4d88-b9b4-449b-ad1b-62743f1d6192.id.repl.co"
- }
-}
diff --git a/domains/celestial.json b/domains/celestial.json
index 53c4070c4..e3a354207 100644
--- a/domains/celestial.json
+++ b/domains/celestial.json
@@ -4,7 +4,7 @@
"email": "buivanluong0204@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/cf.json b/domains/cf.json
new file mode 100644
index 000000000..ccf0968f1
--- /dev/null
+++ b/domains/cf.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bb4btjsj",
+ "email": "saragibb7@gmail.com"
+ },
+ "record": {
+ "CNAME": "akile.autoip.x24hr.com"
+ }
+}
diff --git a/domains/cfp.json b/domains/cfp.json
index 83486ccfd..f01b3757d 100644
--- a/domains/cfp.json
+++ b/domains/cfp.json
@@ -2,7 +2,7 @@
"owner": {
"username": "cfpwastaken",
"email": "",
- "discord": "cfp"
+ "discord": "cfp (318394797822050315)"
},
"record": {
"CNAME": "cfp.gotdns.ch"
diff --git a/domains/cha0tic.json b/domains/cha0tic.json
index ed013d614..2ffd954f0 100644
--- a/domains/cha0tic.json
+++ b/domains/cha0tic.json
@@ -4,7 +4,7 @@
"email": "chaoticplayern1@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chaaya.json b/domains/chaaya.json
index 3a411528e..6f9c18be2 100644
--- a/domains/chaaya.json
+++ b/domains/chaaya.json
@@ -4,7 +4,7 @@
"email": "chaayagames@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chanakan.json b/domains/chanakan.json
deleted file mode 100644
index 183df91b1..000000000
--- a/domains/chanakan.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "this a link to my website",
- "owner": {
- "username": "Chanakan55991",
- "email": "chanakan5591@chanakancloud.net"
- },
- "record": {
- "CNAME": "chanakancloud.net"
- }
-}
diff --git a/domains/chandrabose.json b/domains/chandrabose.json
index 39ffd69d3..f5ee8d388 100644
--- a/domains/chandrabose.json
+++ b/domains/chandrabose.json
@@ -4,7 +4,7 @@
"email": "chandrabosep3112@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chankit.json b/domains/chankit.json
new file mode 100644
index 000000000..0eaec16e5
--- /dev/null
+++ b/domains/chankit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ChankitSaini",
+ "email": "chankit@outlook.in"
+ },
+ "record": {
+ "CNAME": "chankit.pages.dev"
+ }
+}
diff --git a/domains/charge.json b/domains/charge.json
new file mode 100644
index 000000000..bcf1da85f
--- /dev/null
+++ b/domains/charge.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "windcharge",
+ "email": "wysockimichu@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/charlzyx.json b/domains/charlzyx.json
deleted file mode 100644
index 13842caf0..000000000
--- a/domains/charlzyx.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "charlzyx",
- "email": "charlzyx@qq.com"
- },
-
- "record": {
- "A": ["172.21.32.1"]
- }
-}
diff --git a/domains/chasecraft.json b/domains/chasecraft.json
index 28f64803a..0443ead1e 100644
--- a/domains/chasecraft.json
+++ b/domains/chasecraft.json
@@ -4,7 +4,7 @@
"email": "chase88gizmo@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chenshixi.json b/domains/chenshixi.json
deleted file mode 100644
index b05c9375a..000000000
--- a/domains/chenshixi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "szchenshixi",
- "email": "schenax@connect.ust.hk"
- },
- "record": {
- "CNAME": "srv28401.blue.kundencontroller.de"
- }
-}
diff --git a/domains/chesko.json b/domains/chesko.json
new file mode 100644
index 000000000..85ccde693
--- /dev/null
+++ b/domains/chesko.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cheskoxd",
+ "email": "franchesko77lacayo@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chewieleaf.json b/domains/chewieleaf.json
new file mode 100644
index 000000000..9766ecb60
--- /dev/null
+++ b/domains/chewieleaf.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "chewieleaf",
+ "email": "cchirrpy@outlook.com",
+ "discord": "898255050592366642"
+ },
+
+ "record": {
+ "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/chip.json b/domains/chip.json
deleted file mode 100644
index 2c0e98217..000000000
--- a/domains/chip.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Krchip's develop site",
- "repo": "https://github.com/Krchip/Krchip.github.io",
- "owner": {
- "username": "Krchip",
- "email": "elite7744@gmail.com"
- },
- "record": {
- "URL": "https://krchip.github.io"
- }
-}
diff --git a/domains/chiutaalenga.json b/domains/chiutaalenga.json
new file mode 100644
index 000000000..0a683c0c8
--- /dev/null
+++ b/domains/chiutaalenga.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TakudzwaChiutaalenga",
+ "email": "takudzwachiutaalenga@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chouhict.json b/domains/chouhict.json
deleted file mode 100644
index 73561fe2f..000000000
--- a/domains/chouhict.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "owner": {
- "username": "Chouhict",
- "email": "chouhict@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 913402397588611162"
- },
-
- "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=chouhi@proton.me"
- }
-}
diff --git a/domains/chris8889.json b/domains/chris8889.json
index 9f2669de9..c13ea4291 100644
--- a/domains/chris8889.json
+++ b/domains/chris8889.json
@@ -1,9 +1,11 @@
{
"owner": {
"username": "Chris8889",
- "email": "chris88892@protonmail.com"
+ "email": "chris12089@protonmail.com"
},
"record": {
- "CNAME": "hosts.is-a.dev"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/christian.json b/domains/christian.json
index 5a1ce84c4..b609db2e5 100644
--- a/domains/christian.json
+++ b/domains/christian.json
@@ -4,7 +4,7 @@
"email": "christianhrose@outlook.dk"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chriz.json b/domains/chriz.json
new file mode 100644
index 000000000..b70df0172
--- /dev/null
+++ b/domains/chriz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "orangecoding",
+ "email": "weakmap@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chyves.json b/domains/chyves.json
index 711e90c72..b28a77593 100644
--- a/domains/chyves.json
+++ b/domains/chyves.json
@@ -4,7 +4,7 @@
"email": "chyvescontact@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ciaobot.json b/domains/ciaobot.json
new file mode 100644
index 000000000..696fc63a1
--- /dev/null
+++ b/domains/ciaobot.json
@@ -0,0 +1,16 @@
+{
+ "owner": {
+ "username": "Ciao287",
+ "email": "",
+ "discord": "687333016921440317"
+ },
+ "record": {
+ "A": [
+ "84.46.245.191"
+ ],
+ "MX": [
+ "mail.is-a.dev"
+ ],
+ "TXT": "v=spf1 include:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/cihatksm.json b/domains/cihatksm.json
index 41f6de86c..073417489 100644
--- a/domains/cihatksm.json
+++ b/domains/cihatksm.json
@@ -4,7 +4,7 @@
"email": "cihatksm@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/cisco.json b/domains/cisco.json
deleted file mode 100644
index bca5b7fcd..000000000
--- a/domains/cisco.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "franpessoa",
- "email": "frandevacc@gmail.com"
- },
- "record": {
- "CNAME": "frandevacc.bearblog.dev"
- }
-}
diff --git a/domains/ckateptb.json b/domains/ckateptb.json
deleted file mode 100644
index b89817cd2..000000000
--- a/domains/ckateptb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "CKATEPTb",
- "email": "taksis@ex.ua"
- },
-
- "record": {
- "A": ["65.108.238.23"]
- }
-}
diff --git a/domains/ckn.json b/domains/ckn.json
deleted file mode 100644
index b2f39c931..000000000
--- a/domains/ckn.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ckn is a dev",
- "repo": "https://replit.com/@ch1ck3n/cknis-adev#main.py",
- "owner": {
- "username": "ch1ck3n-byte",
- "email": "chcknch1ck3n@gmail.com"
- },
- "record": {
- "CNAME": "6716ad2d-2adc-4475-a4bb-ea27259fe702.repl.co"
- }
-}
diff --git a/domains/clarex.json b/domains/clarex.json
index 48770ed20..65313fade 100644
--- a/domains/clarex.json
+++ b/domains/clarex.json
@@ -4,7 +4,7 @@
"email": "erenclarex@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/classlink.json b/domains/classlink.json
new file mode 100644
index 000000000..9a85bd8bc
--- /dev/null
+++ b/domains/classlink.json
@@ -0,0 +1,12 @@
+{
+ "description": "Classlink hidden games?",
+ "repo": "https://github.com/MassaHex/massahex.github.io",
+ "owner": {
+ "username": "MassaHex",
+ "email": "tres3mincraft@gmail.com",
+ "discord": "536351962820640770"
+ },
+ "record": {
+ "CNAME": "massahex.github.io"
+ }
+}
diff --git a/domains/clicpow.json b/domains/clicpow.json
index 6b688af6d..570d3436e 100644
--- a/domains/clicpow.json
+++ b/domains/clicpow.json
@@ -4,7 +4,7 @@
"email": "clicpowytb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all"
}
diff --git a/domains/cloneslist.aymo.json b/domains/cloneslist.aymo.json
index 19806f84c..5db8bb2b2 100644
--- a/domains/cloneslist.aymo.json
+++ b/domains/cloneslist.aymo.json
@@ -4,7 +4,7 @@
"email": "ninecraftoff@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/closure.json b/domains/closure.json
index fcabf6663..f023bc218 100644
--- a/domains/closure.json
+++ b/domains/closure.json
@@ -4,7 +4,7 @@
"email": "activateclosureyt@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/cloud.dergraph.json b/domains/cloud.dergraph.json
deleted file mode 100644
index c302aa996..000000000
--- a/domains/cloud.dergraph.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "derGraph",
- "email": "dergraph@f5.si"
- },
- "record": {
- "A": ["83.215.31.101"]
- }
-}
diff --git a/domains/cloud.json b/domains/cloud.json
deleted file mode 100644
index d404db59d..000000000
--- a/domains/cloud.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "adarsh-goel",
- "email": "adarsh.goel05@gmail.com"
- },
- "record": {
- "CNAME": "91afb326-7cc2-4a86-bc00-49da7755a6b4.id.repl.co"
- }
-}
diff --git a/domains/clp.json b/domains/clp.json
index 1bac13a9b..f66c814c8 100644
--- a/domains/clp.json
+++ b/domains/clp.json
@@ -4,7 +4,7 @@
"email": "lchethas@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/clyde.json b/domains/clyde.json
new file mode 100644
index 000000000..ef63e3704
--- /dev/null
+++ b/domains/clyde.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "clydeofficial",
+ "email": "5675mustafa5675@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/clynt.json b/domains/clynt.json
deleted file mode 100644
index d6df741e9..000000000
--- a/domains/clynt.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "C-Cloud",
- "repo": "https://gitlab.com/Clynt707/SharX",
- "owner": {
- "username": "Clynt",
- "email": "clyntcollin@gmail.com"
- },
- "record": {
- "A": ["37.114.32.30"]
- }
-}
diff --git a/domains/coco.json b/domains/coco.json
new file mode 100644
index 000000000..14d20b629
--- /dev/null
+++ b/domains/coco.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "atharvaupadhyay",
+ "email": "atharva.upadhyay1099@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/code.creeper76.json b/domains/code.creeper76.json
new file mode 100644
index 000000000..df1e79986
--- /dev/null
+++ b/domains/code.creeper76.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Creeper76",
+ "email": "",
+ "discord": "777694273319469057"
+ },
+ "record": {
+ "CNAME": "proxy.private.danbot.host"
+ }
+}
diff --git a/domains/code.trung.json b/domains/code.trung.json
new file mode 100644
index 000000000..c372c8070
--- /dev/null
+++ b/domains/code.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/coder100.json b/domains/coder100.json
deleted file mode 100644
index 9f3fe264b..000000000
--- a/domains/coder100.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "cursorweb",
- "email": "",
- "twitter": "Coder1002"
- },
- "description": "Personal Home Page and Blog",
- "record": {
- "CNAME": "coder100-blog-production.up.railway.app"
- }
-}
diff --git a/domains/coderpy4.json b/domains/coderpy4.json
deleted file mode 100644
index 4a3c246fa..000000000
--- a/domains/coderpy4.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "coderpy4.is-a.dev",
- "repo": "https://github.com/coderpy4/coderpy4.github.io",
- "owner": {
- "username": "coderpy4",
- "email": "coderpy4@proton.me",
- "twitter": "CoderPY4",
- "discord": "coderpy4#4771"
- },
- "record": {
- "CNAME": "coderpy4.github.io"
- }
-}
diff --git a/domains/codershayan.json b/domains/codershayan.json
index 765ebf55a..918458d0c 100644
--- a/domains/codershayan.json
+++ b/domains/codershayan.json
@@ -4,7 +4,7 @@
"email": "Shayan.y.malik@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/codewhiteweb.json b/domains/codewhiteweb.json
deleted file mode 100644
index a62c22131..000000000
--- a/domains/codewhiteweb.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "CodeWhiteWeb",
- "email": "web.codewhite@gmail.com",
- "twitter": "CodeWhiteWeb1",
- "instagram": "CodeWhiteWeb"
- },
- "record": {
- "URL": "https://codewhiteweb.cf"
- }
-}
diff --git a/domains/codingbobby.json b/domains/codingbobby.json
index 530835aab..24e71a812 100644
--- a/domains/codingbobby.json
+++ b/domains/codingbobby.json
@@ -4,7 +4,7 @@
"email": "codingbobby+github@posteo.org"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/codingkitten.json b/domains/codingkitten.json
new file mode 100644
index 000000000..72991d5ef
--- /dev/null
+++ b/domains/codingkitten.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CodingKiten",
+ "email": "124260@chrlyceumdelft.nl"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/codwizer.json b/domains/codwizer.json
new file mode 100644
index 000000000..362daf8e1
--- /dev/null
+++ b/domains/codwizer.json
@@ -0,0 +1,11 @@
+{
+ "description": "Create resume page, and add this link in social",
+ "repo": "https://github.com/Codwizer/codwizer.github.io",
+ "owner": {
+ "username": "codwiz",
+ "email": "devcodwiz@gmail.com"
+ },
+ "record": {
+ "CNAME": "codwizer.github.io"
+ }
+}
diff --git a/domains/coffee.json b/domains/coffee.json
deleted file mode 100644
index 27b349652..000000000
--- a/domains/coffee.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Link for Coffee's personal site",
- "owner": {
- "username": "C0ffeeCode",
- "email": "c0ffeecode@outlook.com"
- },
- "record": {
- "CNAME": "coffeeco.dev"
- }
-}
diff --git a/domains/colin.json b/domains/colin.json
new file mode 100644
index 000000000..05d64bd3a
--- /dev/null
+++ b/domains/colin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ColinKarlsson",
+ "email": "karlssoncolin628@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/college-front.json b/domains/college-front.json
new file mode 100644
index 000000000..2dfc9c789
--- /dev/null
+++ b/domains/college-front.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amir-mohammad-HP",
+ "email": "hamidipour97@gmail.com"
+ },
+ "record": {
+ "CNAME": "front.collegesaz.ir"
+ }
+}
diff --git a/domains/community.nziie.json b/domains/community.nziie.json
deleted file mode 100644
index ba5a5ea18..000000000
--- a/domains/community.nziie.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Nzii3",
- "email": "exeyst@gmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/community2.syntaxloopers.json b/domains/community2.syntaxloopers.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/community2.syntaxloopers.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/computer.guy.json b/domains/computer.guy.json
new file mode 100644
index 000000000..0b9799197
--- /dev/null
+++ b/domains/computer.guy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Ocean-OS",
+ "email": "andrewhnolt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/computerguy.json b/domains/computerguy.json
new file mode 100644
index 000000000..0b9799197
--- /dev/null
+++ b/domains/computerguy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Ocean-OS",
+ "email": "andrewhnolt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/constvar.json b/domains/constvar.json
index 901d5d04d..e4d7af640 100644
--- a/domains/constvar.json
+++ b/domains/constvar.json
@@ -4,7 +4,7 @@
"email": "LZT7@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kishannnn.json b/domains/contact.foxsophia.json
similarity index 52%
rename from domains/kishannnn.json
rename to domains/contact.foxsophia.json
index 367c6e940..dbc06f980 100644
--- a/domains/kishannnn.json
+++ b/domains/contact.foxsophia.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "CycloneAddons",
- "email": "cycloneaddon@gmail.com"
+ "username": "foxsophia",
+ "email": "cchirrpy@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/contact.trung.json b/domains/contact.trung.json
new file mode 100644
index 000000000..c4e2100b6
--- /dev/null
+++ b/domains/contact.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "CNAME": "contact-form-9c3.pages.dev"
+ }
+}
diff --git a/domains/convertlink.json b/domains/convertlink.json
index 53c4070c4..e3a354207 100644
--- a/domains/convertlink.json
+++ b/domains/convertlink.json
@@ -4,7 +4,7 @@
"email": "buivanluong0204@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/coolbots.json b/domains/coolbots.json
deleted file mode 100644
index 6d1924bea..000000000
--- a/domains/coolbots.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wansiie",
- "email": "Janeiscool4ever@web.de"
- },
- "record": {
- "CNAME": "89e1de78ff-hosting.gitbook.io"
- }
-}
diff --git a/domains/cooper.json b/domains/cooper.json
deleted file mode 100644
index 3d4e80518..000000000
--- a/domains/cooper.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Domain for my Portfolio Thing",
- "repo": "https://github.com/cooper25/portfolio2021",
- "owner": {
- "username": "cooper25",
- "email": "cooper@tsor.is"
- },
- "record": {
- "URL": "https://cppr.dev"
- }
-}
diff --git a/domains/cornix.json b/domains/cornix.json
deleted file mode 100644
index 5cb7e8df0..000000000
--- a/domains/cornix.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "cornix's website",
- "owner": {
- "username": "MysteryDev01",
- "email": "cornixytofficial@gmail.com"
- },
- "record": {
- "CNAME": "cornix32122.carrd.co"
- }
-}
diff --git a/domains/cosmic.json b/domains/cosmic.json
deleted file mode 100644
index 3a6f8d772..000000000
--- a/domains/cosmic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Cosmic6811",
- "email": "jadenweong@gmail.com"
- },
- "record": {
- "CNAME": "20cd3f94-9e6c-425c-bb20-8a121e88cf78.repl.co"
- }
-}
diff --git a/domains/cplusplus.json b/domains/cplusplus.json
new file mode 100644
index 000000000..890cbc6fb
--- /dev/null
+++ b/domains/cplusplus.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "calicocat356",
+ "email": "matthew.e.organ@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/craftyy.json b/domains/craftyy.json
new file mode 100644
index 000000000..aef118697
--- /dev/null
+++ b/domains/craftyy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LosCraftos",
+ "email": "tommomo3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/crazyg.json b/domains/crazyg.json
new file mode 100644
index 000000000..ec67d741d
--- /dev/null
+++ b/domains/crazyg.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aCrazyg1",
+ "email": "huxiaodou768@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/creeper76.json b/domains/creeper76.json
new file mode 100644
index 000000000..d11e76cc6
--- /dev/null
+++ b/domains/creeper76.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Creeper76",
+ "email": "",
+ "discord": "777694273319469057"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/creepycraft.json b/domains/creepycraft.json
index d748cffdc..20a8992cc 100644
--- a/domains/creepycraft.json
+++ b/domains/creepycraft.json
@@ -4,7 +4,7 @@
"email": "ndevnoname@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/crllect.json b/domains/crllect.json
new file mode 100644
index 000000000..a2a94a22b
--- /dev/null
+++ b/domains/crllect.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "crllect",
+ "email": "crllect@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/csprance.json b/domains/csprance.json
index 4fb6bddc6..e194eefa1 100644
--- a/domains/csprance.json
+++ b/domains/csprance.json
@@ -4,7 +4,7 @@
"email": "chrissprance@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ctk.json b/domains/ctk.json
index 41f6de86c..073417489 100644
--- a/domains/ctk.json
+++ b/domains/ctk.json
@@ -4,7 +4,7 @@
"email": "cihatksm@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/cube.json b/domains/cube.json
deleted file mode 100644
index beccc2d7e..000000000
--- a/domains/cube.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "TheCubeDev69",
- "email": "thecubedev69@gmail.com"
- },
-
- "record": {
- "CNAME": "cname.short.io"
- }
-}
diff --git a/domains/cumcord.json b/domains/cumcord.json
deleted file mode 100644
index 98d95f62c..000000000
--- a/domains/cumcord.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Caiden-P",
- "email": "iididhejejdj@gmail.com"
- },
- "record": {
- "CNAME": "test-qv7b.onrender.com"
- }
-}
diff --git a/domains/curse.json b/domains/curse.json
new file mode 100644
index 000000000..834232292
--- /dev/null
+++ b/domains/curse.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cursefroge",
+ "email": "ike.welborn@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cutedog5695.json b/domains/cutedog5695.json
new file mode 100644
index 000000000..eba498c23
--- /dev/null
+++ b/domains/cutedog5695.json
@@ -0,0 +1,18 @@
+{
+ "owner": {
+ "username": "CuteDog5695",
+ "email": "cutedog5695@gmail.com",
+ "discord": "cutedog5695",
+ "twitter": "cutedog5695"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/cutie.json b/domains/cutie.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/cutie.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/cv.json b/domains/cv.json
deleted file mode 100644
index 583ce9bc8..000000000
--- a/domains/cv.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "j0code",
- "discord": "j0code",
- "email": ""
- },
- "record": {
- "CNAME": "cohalejoja.selfhost.eu"
- }
-}
diff --git a/domains/cv.tomgxz.json b/domains/cv.tomgxz.json
new file mode 100644
index 000000000..16af9991a
--- /dev/null
+++ b/domains/cv.tomgxz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tomgxz",
+ "email": "tomgxz138@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cycloneaddons.json b/domains/cycloneaddons.json
deleted file mode 100644
index 238eb2e85..000000000
--- a/domains/cycloneaddons.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "CycloneAddons",
- "email": "cycloneaddon@gmail.com"
- },
- "record": {
- "A": ["34.132.134.162"],
- "TXT": "replit-verify=4aa75152-01c8-46af-b007-80d24ba1a8fa"
- }
-}
diff --git a/domains/cyr.json b/domains/cyr.json
deleted file mode 100644
index a63186f42..000000000
--- a/domains/cyr.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "SoulUchiha",
- "email": "gameracsyt707@gmail.com",
- "discord": "978601368950542397"
- },
-
- "record": {
- "CNAME": "b20c0240-8196-4f97-9bfe-f31aa0ce5f8b.id.repl.co"
- }
-}
diff --git a/domains/cz.json b/domains/cz.json
deleted file mode 100644
index 235d26771..000000000
--- a/domains/cz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ac009527",
- "email": "18571853917@163.com"
- },
- "record": {
- "A": ["193.111.31.120"]
- }
-}
diff --git a/domains/d1snin.json b/domains/d1snin.json
deleted file mode 100644
index c46bb4587..000000000
--- a/domains/d1snin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "d1snin's website",
- "repo": "https://github.com/d1snin/website",
- "owner": {
- "username": "d1snin",
- "email": "~@d1s.uno"
- },
- "record": {
- "CNAME": "35188086.website-8ek.pages.dev"
- }
-}
diff --git a/domains/d3admanbot.json b/domains/d3admanbot.json
deleted file mode 100644
index dab4851c6..000000000
--- a/domains/d3admanbot.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "D3ADVAU 's Telegram Bot | @D3ADMANBOT @D3ADVAU",
- "owner": {
- "username": "D3ADVAU",
- "email": "deadmanofficial247@gmail.com"
- },
- "record": {
- "CNAME": "c3a24528-96a8-4864-b694-033834a8736e.id.repl.co"
- }
-}
diff --git a/domains/d3vboi.json b/domains/d3vboi.json
index cbbec71a4..cc135df1a 100644
--- a/domains/d3vboi.json
+++ b/domains/d3vboi.json
@@ -4,7 +4,7 @@
"email": "d3vboi@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/d4rabi.json b/domains/d4rabi.json
new file mode 100644
index 000000000..f86455c0f
--- /dev/null
+++ b/domains/d4rabi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "d4rabi",
+ "email": "fauzan.idalfithri@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/daflixy.json b/domains/daflixy.json
deleted file mode 100644
index ee7b65bbf..000000000
--- a/domains/daflixy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "daflixy",
- "email": "andy.gilbert.uk99@gmail.com"
- },
-
- "record": {
- "CNAME": "f8a904d2-be6c-46a7-a0fa-3379937c6282.id.repl.co"
- }
-}
diff --git a/domains/dailycats.json b/domains/dailycats.json
index 9cd922ee1..0ff8cb152 100644
--- a/domains/dailycats.json
+++ b/domains/dailycats.json
@@ -4,7 +4,7 @@
"email": "lrmn.dev@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/daku.json b/domains/daku.json
new file mode 100644
index 000000000..02295d6f4
--- /dev/null
+++ b/domains/daku.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "DakUOfficial",
+ "email": "dominiku718@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dallonlahoda.json b/domains/dallonlahoda.json
new file mode 100644
index 000000000..b8faf17fc
--- /dev/null
+++ b/domains/dallonlahoda.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "boomshakazulu",
+ "email": "dallonlahoda@hotmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/damned-support.json b/domains/damned-support.json
index 809dd2edc..d8e48b60d 100644
--- a/domains/damned-support.json
+++ b/domains/damned-support.json
@@ -4,7 +4,7 @@
"email": "kiwipointss555@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dangxuanthai.json b/domains/dangxuanthai.json
new file mode 100644
index 000000000..01b9a4508
--- /dev/null
+++ b/domains/dangxuanthai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CallMeIAmTDF",
+ "email": "thai0203966@nuce.edu.vn"
+ },
+ "record": {
+ "CNAME": "3hxw3aro.up.railway.app"
+ }
+}
diff --git a/domains/daniel4-dev.json b/domains/daniel4-dev.json
deleted file mode 100644
index 3e96eabf6..000000000
--- a/domains/daniel4-dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Daniel's API",
- "owner": {
- "username": "daniel4-scratch",
- "email": "llama552621@gmail.com"
- },
- "record": {
- "CNAME": "623c3932-ce2c-4590-8f9a-660abb02d893.id.repl.co"
- }
-}
diff --git a/domains/danielliu.json b/domains/danielliu.json
new file mode 100644
index 000000000..cbbf23310
--- /dev/null
+++ b/domains/danielliu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DanL2015",
+ "email": "danielliu@berkeley.edu"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/danilofuchs.json b/domains/danilofuchs.json
deleted file mode 100644
index e081cdc8f..000000000
--- a/domains/danilofuchs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "danilofuchs",
- "email": "danilo_fuchs@hotmail.com"
- },
- "record": {
- "CNAME": "danilofuchs.github.io"
- }
-}
diff --git a/domains/dantae.json b/domains/dantae.json
deleted file mode 100644
index e6b1be24f..000000000
--- a/domains/dantae.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Thedogecraft",
- "email": "dantaealt@gmail.com"
- },
- "record": {
- "CNAME": "nativegames.net"
- }
-}
diff --git a/domains/darian.json b/domains/darian.json
index db4c9a500..221284cf7 100644
--- a/domains/darian.json
+++ b/domains/darian.json
@@ -4,7 +4,7 @@
"email": "Darian.mohaseb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dark-pizza.json b/domains/dark-pizza.json
new file mode 100644
index 000000000..2b9e44366
--- /dev/null
+++ b/domains/dark-pizza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DarkPizza",
+ "email": "arturpizzagames@hotmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/darkpizza/darkpizza"
+ }
+}
diff --git a/domains/darkwaves.json b/domains/darkwaves.json
new file mode 100644
index 000000000..991333b43
--- /dev/null
+++ b/domains/darkwaves.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "darkwaves-ofc",
+ "email": "jgi.vimukthi@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/darsh.json b/domains/darsh.json
deleted file mode 100644
index db2c193c5..000000000
--- a/domains/darsh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "DarshSood's personal website",
- "repo": "https://replit.com/@DarshS/introduction-page",
- "owner": {
- "username": "DarshSood",
- "email": "darshsood1@gmail.com"
- },
- "record": {
- "CNAME": "5dcb1e8b-787e-43ce-bd1d-217d51ab09e1.id.repl.co"
- }
-}
diff --git a/domains/dasdadssad.json b/domains/dasdadssad.json
new file mode 100644
index 000000000..eeef95964
--- /dev/null
+++ b/domains/dasdadssad.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MadaraV2492",
+ "email": "luleon252@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dasdebanna.json b/domains/dasdebanna.json
new file mode 100644
index 000000000..56b94e2b7
--- /dev/null
+++ b/domains/dasdebanna.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dasdebanna",
+ "email": "dasdebanna8@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dashboard.gattinhosbot.json b/domains/dashboard.stefdp.json
similarity index 87%
rename from domains/dashboard.gattinhosbot.json
rename to domains/dashboard.stefdp.json
index ac75435d3..7a920dce5 100644
--- a/domains/dashboard.gattinhosbot.json
+++ b/domains/dashboard.stefdp.json
@@ -6,7 +6,7 @@
},
"record": {
"A": [
- "84.46.245.191"
+ "109.71.252.37"
]
}
}
diff --git a/domains/dashboard.zeppelin.maskduck.json b/domains/dashboard.zeppelin.maskduck.json
deleted file mode 100644
index 145910c33..000000000
--- a/domains/dashboard.zeppelin.maskduck.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "description": "MaskDuck's personal website!",
- "repo": "https://github.com/maskducks/maskducks.github.io",
- "owner": {
- "username": "MaskDuck",
- "email": "",
- "discord": "MaskDuck#1337",
- "twitter": "MaskDuck1",
- "reddit": "u/maskduck",
- "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
- },
- "record": {
- "CNAME": "zeppelin-railway-dashboard.up.railway.app"
- }
-}
diff --git a/domains/dasshark.json b/domains/dasshark.json
index 43482054e..d34afb123 100644
--- a/domains/dasshark.json
+++ b/domains/dasshark.json
@@ -4,7 +4,7 @@
"email": "dassharkk@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/data.json b/domains/data.json
index 10d14c84b..b704f1f2c 100644
--- a/domains/data.json
+++ b/domains/data.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
+ "username": "wdhdev",
+ "email": "william@williamharrison.dev"
},
"record": {
diff --git a/domains/dave.json b/domains/dave.json
index a11efd044..34926836b 100644
--- a/domains/dave.json
+++ b/domains/dave.json
@@ -4,7 +4,7 @@
"email": "ceodavee@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dave9123.json b/domains/dave9123.json
new file mode 100644
index 000000000..827f9f6dd
--- /dev/null
+++ b/domains/dave9123.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dave9123",
+ "email": "dave.turmawan@outlook.com"
+ },
+ "record": {
+ "CNAME": "dave9123.github.io"
+ }
+}
diff --git a/domains/davidxxd.json b/domains/davidxxd.json
new file mode 100644
index 000000000..db12836a1
--- /dev/null
+++ b/domains/davidxxd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zen-xP",
+ "email": "jorgedcrios@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/davin.json b/domains/davin.json
new file mode 100644
index 000000000..63ee9e5ee
--- /dev/null
+++ b/domains/davin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rage65",
+ "email": "123thetechguy@gmail.com"
+ },
+ "record": {
+ "CNAME": "deva65.duckdns.org"
+ }
+}
diff --git a/domains/dax.json b/domains/dax.json
index 4ba989fb8..173a7017d 100644
--- a/domains/dax.json
+++ b/domains/dax.json
@@ -4,7 +4,7 @@
"email": "dandepan303@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/daxnime.json b/domains/daxnime.json
deleted file mode 100644
index 30855d604..000000000
--- a/domains/daxnime.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Covarun",
- "email": "covs538@gmail.com"
- },
-
- "record": {
- "CNAME": "95e56ee3-15f3-468a-9715-14e3d4879a09.id.repl.co"
- }
-}
diff --git a/domains/daysling.json b/domains/daysling.json
deleted file mode 100644
index c5a63db3c..000000000
--- a/domains/daysling.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "NightSling",
- "email": "pangenisushant20@gmail.com"
- },
-
- "record": {
- "CNAME": "daysling.xyz"
- }
-}
diff --git a/domains/db.json b/domains/db.json
deleted file mode 100644
index 32ea3219f..000000000
--- a/domains/db.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a website for my project datahook",
- "repo": "https://github.com/leecheeyong/leecheeyong",
- "owner": {
- "username": "leecheeyong",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "933632ef-b3af-45a9-8a6c-afe49a9b5625.id.repl.co"
- }
-}
diff --git a/domains/dbh.tolis.json b/domains/dbh.tolis.json
deleted file mode 100644
index 7707e7cb8..000000000
--- a/domains/dbh.tolis.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "tolisdev",
- "email": "a.katsoudas@yahoo.com"
- },
-
- "record": {
- "A": ["167.235.239.76"]
- }
-}
diff --git a/domains/dc.whine.json b/domains/dc.whine.json
deleted file mode 100644
index ef76d8760..000000000
--- a/domains/dc.whine.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "whi_ne's discord",
- "owner": {
- "username": "whinee",
- "email": "",
- "twitter": "whi_nyaan"
- },
- "record": {
- "CNAME": "a.redirect.pizza"
- }
-}
diff --git a/domains/ddn-services.json b/domains/ddn-services.json
new file mode 100644
index 000000000..f36a5b955
--- /dev/null
+++ b/domains/ddn-services.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "qlongdevdn",
+ "email": "quanglong.vaait@gmail.com"
+ },
+ "record": {
+ "A": ["20.2.219.141"]
+ }
+}
diff --git a/domains/ddn.json b/domains/ddn.json
new file mode 100644
index 000000000..4e6649133
--- /dev/null
+++ b/domains/ddn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "qlongdevdn",
+ "email": "quanglong.vaait@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dea.json b/domains/dea.json
new file mode 100644
index 000000000..0c3bbe6ad
--- /dev/null
+++ b/domains/dea.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "devembrace",
+ "email": "rollxhowns@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/debajyoti.json b/domains/debajyoti.json
deleted file mode 100644
index 862d60053..000000000
--- a/domains/debajyoti.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Debajyoti1",
- "email": "debajyotidutta.50@gmail.com"
- },
-
- "record": {
- "A": ["152.67.6.15"]
- }
-}
diff --git a/domains/declan.json b/domains/declan.json
index 5886c6562..6621ea3ed 100644
--- a/domains/declan.json
+++ b/domains/declan.json
@@ -4,7 +4,7 @@
"email": "franklindudes21@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/deecoyz.json b/domains/deecoyz.json
new file mode 100644
index 000000000..c8bfa98db
--- /dev/null
+++ b/domains/deecoyz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "deecoyz",
+ "email": "swr86.a8z72.a38o4.qm65c.lt0bz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/deepankar.json b/domains/deepankar.json
new file mode 100644
index 000000000..1ab1be648
--- /dev/null
+++ b/domains/deepankar.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Deepankar-Siddharth",
+ "email": "deepankarsiddharthoff@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/deepesh.json b/domains/deepesh.json
index 9c5b61bd1..edfc2aad1 100644
--- a/domains/deepesh.json
+++ b/domains/deepesh.json
@@ -4,7 +4,7 @@
"email": "cycloneaddon@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/defalco64.json b/domains/defalco64.json
index 68f8e3a8f..d4f64db9f 100644
--- a/domains/defalco64.json
+++ b/domains/defalco64.json
@@ -4,7 +4,7 @@
"email": "aadarshkumarsingh198@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/deko.json b/domains/deko.json
new file mode 100644
index 000000000..f49d98ccb
--- /dev/null
+++ b/domains/deko.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ukrioo",
+ "email": "u8k50850@gmail.com"
+ },
+ "record": {
+ "URL": "https://ukrioo.github.io"
+ }
+}
diff --git a/domains/demongamez.json b/domains/demongamez.json
deleted file mode 100644
index 8bab6eb0f..000000000
--- a/domains/demongamez.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ShadowPlayzYT22",
- "email": "peterwyneg@gmail.com",
- "discord": "1038747272701292584"
- },
-
- "record": {
- "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
- }
-}
diff --git a/domains/demonium.json b/domains/demonium.json
deleted file mode 100644
index 9bb034593..000000000
--- a/domains/demonium.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Demonium's is-a.dev domain",
- "repo": "https://github.com/thedemonium/demonium.github.io",
- "owner": {
- "username": "thedemonium",
- "email": "tbapbing@gmail.com"
- },
- "record": {
- "CNAME": "komposerv.ru"
- }
-}
diff --git a/domains/demonplayz.json b/domains/demonplayz.json
deleted file mode 100644
index 8bab6eb0f..000000000
--- a/domains/demonplayz.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ShadowPlayzYT22",
- "email": "peterwyneg@gmail.com",
- "discord": "1038747272701292584"
- },
-
- "record": {
- "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
- }
-}
diff --git a/domains/denboy0123.json b/domains/denboy0123.json
index 09b368afb..88ba97237 100644
--- a/domains/denboy0123.json
+++ b/domains/denboy0123.json
@@ -1,14 +1,11 @@
{
"owner": {
"username": "denboy0123",
- "email": "pochatproverka01@gmail.com"
+ "email": "pochtaproverka01@gmail.com"
},
"record": {
- "A": ["193.233.134.3"],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/mnoger.json b/domains/denism.json
similarity index 80%
rename from domains/mnoger.json
rename to domains/denism.json
index 2e9b98169..a88cc1486 100644
--- a/domains/mnoger.json
+++ b/domains/denism.json
@@ -4,7 +4,7 @@
"email": "lolhdselect@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/denizak.json b/domains/denizak.json
index 7e05332b5..628446cfc 100644
--- a/domains/denizak.json
+++ b/domains/denizak.json
@@ -4,7 +4,7 @@
"email": "denizakya@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/denizbee.json b/domains/denizbee.json
index 5d38e857e..4ffd1f002 100644
--- a/domains/denizbee.json
+++ b/domains/denizbee.json
@@ -4,7 +4,7 @@
"email": "denizbayramoglu@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dennystc.json b/domains/dennystc.json
deleted file mode 100644
index 09e305384..000000000
--- a/domains/dennystc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "dtcabrerizo",
- "email": "cabrerizo@gmail.com"
- },
- "record": {
- "CNAME": "ecodoc.com.br"
- }
-}
diff --git a/domains/dergraph.json b/domains/dergraph.json
deleted file mode 100644
index 7aefc4bf1..000000000
--- a/domains/dergraph.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "derGraph",
- "email": "dergraph@f5.si"
- },
- "record": {
- "URL": "https://github.com/derGraph"
- }
-}
diff --git a/domains/destcom.json b/domains/destcom.json
deleted file mode 100644
index ad01682a2..000000000
--- a/domains/destcom.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "destroycom",
- "email": "",
- "twitter": "ADSantoine"
- },
- "description": "DestCom Portfolio",
- "repo": "https://github.com/DestroyCom",
- "record": {
- "A": ["193.123.34.154"]
- }
-}
diff --git a/domains/desteria.json b/domains/desteria.json
new file mode 100644
index 000000000..da03eab85
--- /dev/null
+++ b/domains/desteria.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HayBael",
+ "email": "rakhakhairydarka801@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dev-420.json b/domains/dev-420.json
deleted file mode 100644
index 8c029e4b8..000000000
--- a/domains/dev-420.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Just a website for me",
- "repo": "https://github.com/Dev-420/dev-420.github.io",
- "owner": {
- "username": "Dev-420",
- "email": "imakbss@gmail.com",
- "discord":"hot_dev"
- },
- "record": {
- "CNAME": "dev-420.github.io"
- }
-}
diff --git a/domains/devabh.json b/domains/devabh.json
deleted file mode 100644
index f99d13e79..000000000
--- a/domains/devabh.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Devabh116",
- "email": "chandradevabh@gmail.com"
- },
-
- "record": {
- "A": ["192.95.42.75"]
- }
-}
diff --git a/domains/devchaudhary.json b/domains/devchaudhary.json
index d366b0ae4..be484a1cf 100644
--- a/domains/devchaudhary.json
+++ b/domains/devchaudhary.json
@@ -4,7 +4,7 @@
"email": "chaudhrytusar2000@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/devel.json b/domains/devel.json
index a0870ea7f..0883e9751 100644
--- a/domains/devel.json
+++ b/domains/devel.json
@@ -4,7 +4,7 @@
"email": "eatr577@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/devgd.json b/domains/devgd.json
index 0e409ca14..f1fe2de5f 100644
--- a/domains/devgd.json
+++ b/domains/devgd.json
@@ -4,7 +4,7 @@
"email": "devsteamgaming91@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/devhavok.json b/domains/devhavok.json
new file mode 100644
index 000000000..3bcaec0d9
--- /dev/null
+++ b/domains/devhavok.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Blog",
+ "repo": "https://github.com/DevHavok/devhavok.github.io",
+ "owner": {
+ "username": "Shaunfurtado",
+ "email": "shaunf1801@gmail.com"
+ },
+ "record": {
+ "CNAME": "devhavok.github.io"
+ }
+}
diff --git a/domains/devilplayz.json b/domains/devilplayz.json
deleted file mode 100644
index 3dcc886a0..000000000
--- a/domains/devilplayz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ShadowPlayzYT22",
- "email": "peterwyneg@gmail.com"
- },
- "record": {
- "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
- }
-}
diff --git a/domains/devin.json b/domains/devin.json
deleted file mode 100644
index f3675dc78..000000000
--- a/domains/devin.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "athuldevin",
- "email": "athuldevin@gmail.com"
- },
- "record": {
- "A": ["140.238.255.16"]
- }
-}
diff --git a/domains/devmirza.json b/domains/devmirza.json
new file mode 100644
index 000000000..cd3a0f436
--- /dev/null
+++ b/domains/devmirza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Zaid-maker",
+ "email": "pzhafeez@gmail.com"
+ },
+ "record": {
+ "CNAME": "zaid-maker.github.io"
+ }
+}
diff --git a/domains/devpanther.json b/domains/devpanther.json
index cd4fcebb4..311226885 100644
--- a/domains/devpanther.json
+++ b/domains/devpanther.json
@@ -4,7 +4,7 @@
"email": "zahidhassankalaroa104@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/devrealm.json b/domains/devrealm.json
deleted file mode 100644
index c54cec701..000000000
--- a/domains/devrealm.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "devRealm website",
- "repo": "https://github.com/devrealm",
- "owner": {
- "username": "gvagenas",
- "email": "",
- "twitter": "devrealmorg"
- },
- "record": {
- "CNAME": "devrealm.org"
- }
-}
diff --git a/domains/devs.json b/domains/devs.json
index c55b7045c..79426f3d7 100644
--- a/domains/devs.json
+++ b/domains/devs.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dew.json b/domains/dew.json
index 0768b84d7..3fc9eef3b 100644
--- a/domains/dew.json
+++ b/domains/dew.json
@@ -4,7 +4,7 @@
"email": "dewmortal.cod@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/deww.json b/domains/deww.json
deleted file mode 100644
index 34b866145..000000000
--- a/domains/deww.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "dewiscool",
- "email": "zerolikecyber.2005@gmail.com"
- },
- "record": {
- "CNAME": "zerodev.pages.dev"
- }
-}
diff --git a/domains/dex.explorer.json b/domains/dex.explorer.json
new file mode 100644
index 000000000..37c8f42d3
--- /dev/null
+++ b/domains/dex.explorer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DexTheExplorer",
+ "email": "gianl.veronese@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dex.json b/domains/dex.json
deleted file mode 100644
index 76eaff020..000000000
--- a/domains/dex.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Portfolio",
- "repo": "https://github.com/thegeekdex",
- "owner": {
- "username": "thegeekdex",
- "email": "",
- "discord": "Dexter#6993"
- },
- "record": {
- "A": ["43.205.87.144"]
- }
-}
diff --git a/domains/dexar.json b/domains/dexar.json
new file mode 100644
index 000000000..824088eaf
--- /dev/null
+++ b/domains/dexar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dexaroffical",
+ "email": "5675mustafa5675@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dhaloi.json b/domains/dhaloi.json
index 5a961ca8a..2e8261da0 100644
--- a/domains/dhaloi.json
+++ b/domains/dhaloi.json
@@ -4,7 +4,7 @@
"email": "enis.salin@yaani.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dhiyazhar.json b/domains/dhiyazhar.json
new file mode 100644
index 000000000..b05413d33
--- /dev/null
+++ b/domains/dhiyazhar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dhiyazhar",
+ "email": "dhiyazhar@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dhruv.json b/domains/dhruv.json
new file mode 100644
index 000000000..af9d53233
--- /dev/null
+++ b/domains/dhruv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LejhandG",
+ "email": "dhruvbhanushali5621@gmail.com"
+ },
+ "record": {
+ "CNAME": "lejhandg.github.io"
+ }
+}
diff --git a/domains/dhruva.json b/domains/dhruva.json
deleted file mode 100644
index 5048c2e82..000000000
--- a/domains/dhruva.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "personal site",
- "repo": "https://github.com/carrotfarmer/portfolio-1",
- "owner": {
- "username": "carrotfarmer",
- "email": "dhruvas17068@gmail.com"
- },
- "record": {
- "URL": "https://dhruvas.vercel.app"
- }
-}
diff --git a/domains/dib.json b/domains/dib.json
deleted file mode 100644
index d3f7d039a..000000000
--- a/domains/dib.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "URL Shortener for sites.",
- "owner": {
- "username": "DEV-DIBSTER",
- "email": "dibster@danbot.host",
- "twitter": "DEV_DIBSTER"
- },
- "record": {
- "CNAME": "proxy.dib.localplayer.dev"
- }
-}
diff --git a/domains/didier.json b/domains/didier.json
deleted file mode 100644
index bebb0aa33..000000000
--- a/domains/didier.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/didiermunezero/didierm",
- "owner": {
- "username": "didiermunezero",
- "email": "didiermunezer38@gmail.com"
- },
- "record": {
- "URL": "https://munezero.me"
- }
-}
diff --git a/domains/didotb.json b/domains/didotb.json
new file mode 100644
index 000000000..b98e6fec5
--- /dev/null
+++ b/domains/didotb.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "didotb",
+ "email": "didotb@gmail.com",
+ "repo": "https://replit.com/@ddotb/reloctk",
+ "description": "Private owned URL Shortener - Using MongoDB, Flask, and SimpleLogin in Replit"
+ },
+ "record": {
+ "A": ["35.186.245.55"],
+ "TXT": "replit-verify=68e4e002-91f5-446f-98a8-9add654ca897"
+ }
+}
diff --git a/domains/diego.json b/domains/diego.json
index e3b4c353a..931d7c143 100644
--- a/domains/diego.json
+++ b/domains/diego.json
@@ -4,7 +4,7 @@
"email": "diegohh0411@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/diji.json b/domains/diji.json
new file mode 100644
index 000000000..03f9e7331
--- /dev/null
+++ b/domains/diji.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "dijitiva",
+ "email": "hi@dijitiva.com.tr"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dillonb07.json b/domains/dillonb07.json
deleted file mode 100644
index 2bc5e1810..000000000
--- a/domains/dillonb07.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio of projects for DillonB07",
- "repo": "https://replit.com/@DillonB07/Portfolio",
- "owner": {
- "username": "DillonB07",
- "email": "dillonb07dev@gmail.com"
- },
- "record": {
- "CNAME": "c935404b-ab88-41be-9736-1c910b14a5ba.id.repl.co"
- }
-}
diff --git a/domains/dima.json b/domains/dima.json
index fb1875ee5..6dfb777d9 100644
--- a/domains/dima.json
+++ b/domains/dima.json
@@ -4,7 +4,7 @@
"email": "dimashahbari@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dimi.json b/domains/dimi.json
new file mode 100644
index 000000000..7a640e04a
--- /dev/null
+++ b/domains/dimi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dklesev",
+ "email": "dimitrij.klesev@gmail.com"
+ },
+ "record": {
+ "CNAME": "audk.at"
+ }
+}
diff --git a/domains/dincertekin.json b/domains/dincertekin.json
index 42601565e..be51a3ca5 100644
--- a/domains/dincertekin.json
+++ b/domains/dincertekin.json
@@ -4,7 +4,7 @@
"email": "dincertekin@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dinhq.json b/domains/dinhq.json
index 83db2cc7a..75ffcc642 100644
--- a/domains/dinhq.json
+++ b/domains/dinhq.json
@@ -4,7 +4,7 @@
"email": "trinhdinhquy@iesschool.edu.vn"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dino.json b/domains/dino.json
deleted file mode 100644
index c802c9924..000000000
--- a/domains/dino.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Vitor Dino is a front-end developer and ui designer",
- "repo": "https://github.com/vitordino",
- "owner": {
- "username": "vitordino",
- "email": "me@vitordino.com"
- },
- "record": {
- "CNAME": "vitordino.com"
- }
-}
diff --git a/domains/dinothedev.json b/domains/dinothedev.json
deleted file mode 100644
index bc9e2a255..000000000
--- a/domains/dinothedev.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Subdomain for DinoTheDev",
- "repo": "https://github.com/DinoTheDevOfficial",
- "owner": {
- "username": "DinoTheDevOfficial",
- "email": "dinothedevofficial@gmail.com"
- },
- "record": {
- "CNAME": "dinothedev.repl.co"
- }
-}
diff --git a/domains/dinuhifi.json b/domains/dinuhifi.json
new file mode 100644
index 000000000..3ad0f1f57
--- /dev/null
+++ b/domains/dinuhifi.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "dinuhifi",
+ "email": "dinesh23110077@snuchennai.edu.in"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/discord-corp.json b/domains/discord-corp.json
index 45c849919..2d7f80d6b 100644
--- a/domains/discord-corp.json
+++ b/domains/discord-corp.json
@@ -4,7 +4,7 @@
"email": "zheng.joshua2@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/discord.amulyasingh.json b/domains/discord.amulyasingh.json
new file mode 100644
index 000000000..77aeb7865
--- /dev/null
+++ b/domains/discord.amulyasingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AMULYASing",
+ "email": "amulyasingh370@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/arab.json b/domains/discord.deadcode.json
similarity index 50%
rename from domains/arab.json
rename to domains/discord.deadcode.json
index f29492c4d..f05436350 100644
--- a/domains/arab.json
+++ b/domains/discord.deadcode.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "IMudee",
- "email": "NotMudee@proton.me"
+ "username": "RichardKanshen",
+ "email": "richard@kanshen.click"
},
"record": {
"CNAME": "hosts.is-a.dev"
diff --git a/domains/discord.maskduck.json b/domains/discord.maskduck.json
deleted file mode 100644
index 91f9fbe28..000000000
--- a/domains/discord.maskduck.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My discord server",
- "owner": {
- "email": "",
- "username": "MaskDuck",
- "reddit": "u/maskduck"
- },
- "record": {
- "URL": "https://discord.gg/weMcPBJV77"
- }
-}
diff --git a/domains/discordbots.semant.json b/domains/discordbots.semant.json
deleted file mode 100644
index 4400e91e0..000000000
--- a/domains/discordbots.semant.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Discord bot dashboard",
- "owner": {
- "username": "s3mant",
- "email": "contact@semant.is-a.dev"
- },
- "record": {
- "CNAME": "b0f6dfb1-f219-4a6b-8505-eccaa29200ea.id.repl.co"
- }
-}
diff --git a/domains/discusser.json b/domains/discusser.json
new file mode 100644
index 000000000..6d944bc2e
--- /dev/null
+++ b/domains/discusser.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Discusser",
+ "email": "noobly321growing@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/divine.json b/domains/divine.json
new file mode 100644
index 000000000..5facc13dd
--- /dev/null
+++ b/domains/divine.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "divinewrites",
+ "email": "adivinecit21@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/divyadesh.json b/domains/divyadesh.json
index 763f09c05..1d3cb5c22 100644
--- a/domains/divyadesh.json
+++ b/domains/divyadesh.json
@@ -4,7 +4,7 @@
"email": "adeshsati24@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/divyansh.json b/domains/divyansh.json
index 7e6c2968b..23b8705fe 100644
--- a/domains/divyansh.json
+++ b/domains/divyansh.json
@@ -4,7 +4,7 @@
"email": "divyanshv91@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/divyanshu.json b/domains/divyanshu.json
new file mode 100644
index 000000000..b774c1d56
--- /dev/null
+++ b/domains/divyanshu.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Divyanshu9822",
+ "email": "divyanshu9871@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/divyanshuprasad.json b/domains/divyanshuprasad.json
new file mode 100644
index 000000000..b774c1d56
--- /dev/null
+++ b/domains/divyanshuprasad.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Divyanshu9822",
+ "email": "divyanshu9871@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dliu.json b/domains/dliu.json
new file mode 100644
index 000000000..47a9ea7c1
--- /dev/null
+++ b/domains/dliu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DanL2015",
+ "email": "danielliu@berkeley.edu"
+ },
+ "record": {
+ "CNAME": "danl2015.github.io"
+ }
+}
diff --git a/domains/dnoxl.json b/domains/dnoxl.json
index 2872231e4..202e194ef 100644
--- a/domains/dnoxl.json
+++ b/domains/dnoxl.json
@@ -4,7 +4,7 @@
"email": "ifbimgamer@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/do-gia-huy.json b/domains/do-gia-huy.json
new file mode 100644
index 000000000..35726dd75
--- /dev/null
+++ b/domains/do-gia-huy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "dohuygia",
+ "email": "quyendongho238@Gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": ["forward-email=quyendongho238@gmail.com"]
+ }
+}
diff --git a/domains/doc.dergraph.json b/domains/doc.dergraph.json
deleted file mode 100644
index c302aa996..000000000
--- a/domains/doc.dergraph.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "derGraph",
- "email": "dergraph@f5.si"
- },
- "record": {
- "A": ["83.215.31.101"]
- }
-}
diff --git a/domains/dodinhphuc.json b/domains/dodinhphuc.json
index 50d7d71a5..00f14b176 100644
--- a/domains/dodinhphuc.json
+++ b/domains/dodinhphuc.json
@@ -4,7 +4,7 @@
"email": "prepegasus1111@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dodo1213.json b/domains/dodo1213.json
deleted file mode 100644
index d42596d43..000000000
--- a/domains/dodo1213.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Dodo1213",
- "email": "dodogut602@gmail.com"
- },
- "record": {
- "CNAME": "dodo1213.de"
- }
-}
diff --git a/domains/dogemaster.json b/domains/doge-v4-proxy.json
similarity index 81%
rename from domains/dogemaster.json
rename to domains/doge-v4-proxy.json
index 56c2cd6c5..11e781f9f 100644
--- a/domains/dogemaster.json
+++ b/domains/doge-v4-proxy.json
@@ -4,7 +4,7 @@
"email": "alexander662022@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dogeleader.json b/domains/dogeleader.json
index 56c2cd6c5..11e781f9f 100644
--- a/domains/dogeleader.json
+++ b/domains/dogeleader.json
@@ -4,7 +4,7 @@
"email": "alexander662022@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dogenetwork.json b/domains/dogenetwork.json
index 56c2cd6c5..11e781f9f 100644
--- a/domains/dogenetwork.json
+++ b/domains/dogenetwork.json
@@ -4,7 +4,7 @@
"email": "alexander662022@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dom.json b/domains/dom.json
deleted file mode 100644
index be979be41..000000000
--- a/domains/dom.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DominicFilice",
- "email": "dominic@filiceenterprises.com"
- },
- "record": {
- "URL": "https://dsc.gg/minecraftanarchy"
- }
-}
diff --git a/domains/domathdotid.json b/domains/domathdotid.json
index 84c551334..a978b39c4 100644
--- a/domains/domathdotid.json
+++ b/domains/domathdotid.json
@@ -4,7 +4,7 @@
"email": "admin@yukinoshita.web.id"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/domi.json b/domains/domi.json
new file mode 100644
index 000000000..b503bf772
--- /dev/null
+++ b/domains/domi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "domi-btnr",
+ "email": "me@domi-btnr.dev"
+ },
+ "record": {
+ "CNAME": "domi-btnr.dev"
+ }
+}
diff --git a/domains/domin.json b/domains/domin.json
deleted file mode 100644
index 97bcca545..000000000
--- a/domains/domin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Subdomain of is-a.dev for my profile card. I use DBH as hosting if it is necessary to let you know<3",
- "owner": {
- "username": "Domin-MND",
- "email": "dominproject@gmail.com"
- },
- "record": {
- "A": ["164.132.74.251"]
- }
-}
diff --git a/domains/dominik.json b/domains/dominik.json
index f76e83c5e..b50e14664 100644
--- a/domains/dominik.json
+++ b/domains/dominik.json
@@ -4,7 +4,7 @@
"email": "dominik@koch-bautechnik.de"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/don.json b/domains/don.json
deleted file mode 100644
index d7e85567d..000000000
--- a/domains/don.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "DonDoesStuff",
- "email": "lgamerlivestudios@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/doraemon.json b/domains/doraemon.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/doraemon.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/dott.json b/domains/dott.json
index 06fae4fa7..5879c9cf6 100644
--- a/domains/dott.json
+++ b/domains/dott.json
@@ -4,7 +4,7 @@
"email": "antonamelin8@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/doxr.json b/domains/doxr.json
deleted file mode 100644
index dcfc4b942..000000000
--- a/domains/doxr.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DoxrGitHub",
- "email": "redforcearmy@outlook.com"
- },
- "description": "Official @doxr page",
- "record": {
- "CNAME": "86670803-c2d9-41d8-a4a5-64ccc0a8f39f.id.repl.co"
- }
-}
diff --git a/domains/dracx.json b/domains/dracx.json
new file mode 100644
index 000000000..6de0d6e47
--- /dev/null
+++ b/domains/dracx.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "DarindaDraX",
+ "email": "123kishanvish@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dragon.json b/domains/dragon.json
deleted file mode 100644
index 2c24fc84c..000000000
--- a/domains/dragon.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A custom portfolio website for me",
- "repo": "https://replit.com/@DragonRoyale/personalA",
- "owner": {
- "username": "DragonRoyal",
- "email": "aarav.singhania50@gmail.com"
- },
- "record": {
- "CNAME": "c7054742-05bd-453b-b5fd-d3ed47ee0215.id.repl.co"
- }
-}
diff --git a/domains/drastic.json b/domains/drastic.json
index 19d5b1642..4a5c732d4 100644
--- a/domains/drastic.json
+++ b/domains/drastic.json
@@ -4,7 +4,7 @@
"email": "victiousroy@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/drasticroy.json b/domains/drasticroy.json
index 19d5b1642..4a5c732d4 100644
--- a/domains/drasticroy.json
+++ b/domains/drasticroy.json
@@ -4,7 +4,7 @@
"email": "victiousroy@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/drenxhyliqi.json b/domains/drenxhyliqi.json
index cf1076cd1..5e5c9573d 100644
--- a/domains/drenxhyliqi.json
+++ b/domains/drenxhyliqi.json
@@ -4,7 +4,7 @@
"email": "drenxhyliqi3@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/drively.json b/domains/drively.json
new file mode 100644
index 000000000..cbb98ae6c
--- /dev/null
+++ b/domains/drively.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Gawnul",
+ "email": "rootnull@outlook.es"
+ },
+ "record": {
+ "URL": "https://bento.me/drively"
+ }
+}
diff --git a/domains/drk-bot.json b/domains/drk-bot.json
index 8a36390ab..d5103dfed 100644
--- a/domains/drk-bot.json
+++ b/domains/drk-bot.json
@@ -4,7 +4,7 @@
"email": "wpmar027092@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/drmzahid.json b/domains/drmzahid.json
index cd4fcebb4..311226885 100644
--- a/domains/drmzahid.json
+++ b/domains/drmzahid.json
@@ -4,7 +4,7 @@
"email": "zahidhassankalaroa104@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/droiders.json b/domains/droiders.json
new file mode 100644
index 000000000..2c3e62741
--- /dev/null
+++ b/domains/droiders.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "abdessattarElyagoubi",
+ "email": "abdeldroid2@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/drtherapy.json b/domains/drtherapy.json
deleted file mode 100644
index a589a2654..000000000
--- a/domains/drtherapy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "drtherapy2023",
- "email": "sitehesap@proton.me"
- },
- "record": {
- "CNAME": "drtherapy2023.github.io"
- }
-}
diff --git a/domains/drv.json b/domains/drv.json
deleted file mode 100644
index 9cf9bc7dd..000000000
--- a/domains/drv.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "dizzy123323",
- "email": "dhruvksuru@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/drv.su.json b/domains/drv.su.json
index 9cf9bc7dd..7d2fd43c2 100644
--- a/domains/drv.su.json
+++ b/domains/drv.su.json
@@ -4,7 +4,7 @@
"email": "dhruvksuru@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dsgaasdgsdag.json b/domains/dsgaasdgsdag.json
index 809dd2edc..d8e48b60d 100644
--- a/domains/dsgaasdgsdag.json
+++ b/domains/dsgaasdgsdag.json
@@ -4,7 +4,7 @@
"email": "kiwipointss555@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dsgamer.json b/domains/dsgamer.json
index 66f4945ff..2b07a3083 100644
--- a/domains/dsgamer.json
+++ b/domains/dsgamer.json
@@ -4,7 +4,7 @@
"email": "dgashost@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/duckysolucky.json b/domains/duckysolucky.json
new file mode 100644
index 000000000..2adb4355a
--- /dev/null
+++ b/domains/duckysolucky.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DuckySoLucky",
+ "email": "robertkovac160@gmail.com"
+ },
+ "record": {
+ "CNAME": "duckysolucky-github-io.pages.dev"
+ }
+}
diff --git a/domains/dudeinski.json b/domains/dudeinski.json
deleted file mode 100644
index 03c0191c2..000000000
--- a/domains/dudeinski.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "kaio-lord",
- "email": "mataerick855@gmail.com"
- },
- "record": {
- "CNAME": "2ecfaa94-1335-4e48-82a2-0c93451c2c30.id.repl.co"
- }
-}
diff --git a/domains/dulackmugi.json b/domains/dulackmugi.json
new file mode 100644
index 000000000..7f8f27d28
--- /dev/null
+++ b/domains/dulackmugi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dulackmwas",
+ "email": "dulackmugi@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/duyeric.json b/domains/duyeric.json
deleted file mode 100644
index 998d83e96..000000000
--- a/domains/duyeric.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "duyeric",
- "email": "duyericmmo@gmail.com"
- },
- "record": {
- "A": ["172.245.139.131"]
- }
-}
diff --git a/domains/duyhung.json b/domains/duyhung.json
new file mode 100644
index 000000000..6da26c0c7
--- /dev/null
+++ b/domains/duyhung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hungwt",
+ "email": "hungwt334@gmail.com"
+ },
+ "record": {
+ "A": ["103.97.126.26"]
+ }
+}
diff --git a/domains/duynguyen.json b/domains/duynguyen.json
deleted file mode 100644
index 998d83e96..000000000
--- a/domains/duynguyen.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "duyeric",
- "email": "duyericmmo@gmail.com"
- },
- "record": {
- "A": ["172.245.139.131"]
- }
-}
diff --git a/domains/dwk.json b/domains/dwk.json
index 01be5e070..8f91072cc 100644
--- a/domains/dwk.json
+++ b/domains/dwk.json
@@ -4,7 +4,7 @@
"email": "dwiki200304@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dxomg.json b/domains/dxomg.json
index 49197b78d..28a90de7a 100644
--- a/domains/dxomg.json
+++ b/domains/dxomg.json
@@ -4,7 +4,7 @@
"email": "dxomgmyfriend@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dylan.json b/domains/dylan.json
deleted file mode 100644
index 8b6c12ab9..000000000
--- a/domains/dylan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "This will soon be a dev portfolio for myself :)",
- "repo": "https://github.com/dylanjamesdev",
- "owner": {
- "username": "dylanjamesdev",
- "email": "dylan@tritan.gg"
- },
- "record": {
- "A": ["209.216.85.142"]
- }
-}
diff --git a/domains/dylank.json b/domains/dylank.json
deleted file mode 100644
index 1b7be3852..000000000
--- a/domains/dylank.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DylanK46",
- "email": "kainth.dylan@gmail.com"
- },
- "record": {
- "A": ["90.217.214.245"]
- }
-}
diff --git a/domains/dynamic-homepage.json b/domains/dynamic-homepage.json
index 706cf81de..59008a649 100644
--- a/domains/dynamic-homepage.json
+++ b/domains/dynamic-homepage.json
@@ -4,7 +4,7 @@
"email": "vs423502@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/dyno.json b/domains/dyno.json
new file mode 100644
index 000000000..30ea2fb19
--- /dev/null
+++ b/domains/dyno.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DynoW",
+ "email": "naffets0@gmail.com",
+ "discord": "455608238335983617"
+ },
+ "record": {
+ "CNAME": "dynow.pages.dev"
+ }
+}
diff --git a/domains/eacbypasser.json b/domains/eacbypasser.json
index 4ec611c5c..f326ce02d 100644
--- a/domains/eacbypasser.json
+++ b/domains/eacbypasser.json
@@ -4,7 +4,7 @@
"email": "tyroxtech@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/earthnuker.json b/domains/earthnuker.json
deleted file mode 100644
index 3e95de80b..000000000
--- a/domains/earthnuker.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "earthnuker",
- "email": "earthnuker+isadev@gmail.com"
- },
- "record": {
- "CNAME": "earthnuker.keybase.pub"
- }
-}
diff --git a/domains/easlo.json b/domains/easlo.json
deleted file mode 100644
index 4bb1b57f3..000000000
--- a/domains/easlo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "roktim32",
- "email": "roktimsenapoty2@gmail.com"
- },
- "record": {
- "TXT": "google-site-verification=I-qh4G6_-4yoA7JYUS8D8xFLDBgmCWToJisBGZYIqw0"
- }
-}
diff --git a/domains/ebonato.json b/domains/ebonato.json
new file mode 100644
index 000000000..e5d4e409a
--- /dev/null
+++ b/domains/ebonato.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ebonato",
+ "email": "ebonato@gmail.com"
+ },
+ "record": {
+ "CNAME": "ebonato.github.io"
+ }
+}
diff --git a/domains/echo.json b/domains/echo.json
index 56c9d4884..bd8136ae6 100644
--- a/domains/echo.json
+++ b/domains/echo.json
@@ -4,7 +4,7 @@
"email": "pleasedontaddmyemail@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/eclair.json b/domains/eclair.json
index b7844089f..8b2634452 100644
--- a/domains/eclair.json
+++ b/domains/eclair.json
@@ -4,7 +4,7 @@
"email": "fluffy@dmc.chat"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/eddy.json b/domains/eddy.json
deleted file mode 100644
index bd8db864e..000000000
--- a/domains/eddy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "331leo",
- "email": "331leo@kakao.com"
- },
- "record": {
- "CNAME": "dev.is.eddy.leok.kr"
- }
-}
diff --git a/domains/eddyraz-trfk.json b/domains/eddyraz-trfk.json
deleted file mode 100644
index cd7777183..000000000
--- a/domains/eddyraz-trfk.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Traefik Console Demo Subdomain",
- "repo": "https://github.com/eddyraz",
- "owner": {
- "username": "eddyraz",
- "email": "eddyraz.fl@gmail.com"
- },
- "record": {
- "CNAME": "srv231139-206152.vps.etecsa.cu"
- }
-}
diff --git a/domains/eddyraz.json b/domains/eddyraz.json
deleted file mode 100644
index 79bb6bb9a..000000000
--- a/domains/eddyraz.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Eddyraz Public is-a.dev domain",
- "repo": "https://github.com/eddyraz",
- "owner": {
- "username": "eddyraz",
- "email": "eddyraz.fl@gmail.com"
- },
- "record": {
- "CNAME": "srv231139-206152.vps.etecsa.cu"
- }
-}
diff --git a/domains/edgar.json b/domains/edgar.json
new file mode 100644
index 000000000..71794cbfa
--- /dev/null
+++ b/domains/edgar.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Edgar-4111",
+ "email": "",
+ "discord": "._edgar."
+ },
+ "record": {
+ "CNAME": "proxy.private.danbot.host"
+ }
+}
diff --git a/domains/edson.json b/domains/edson.json
deleted file mode 100644
index 36fb93ff2..000000000
--- a/domains/edson.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "edsonbittencourt",
- "email": "edson.bittencourt@outlook.com"
- },
-
- "record": {
- "A": ["168.138.228.142"]
- }
-}
diff --git a/domains/eduardkotov.json b/domains/eduardkotov.json
deleted file mode 100644
index 2cff54f27..000000000
--- a/domains/eduardkotov.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "insertsmc228",
- "email": "miron720@ukr.net"
- },
- "record": {
- "A": ["35.158.255.221"]
- }
-}
diff --git a/domains/eeshwar.json b/domains/eeshwar.json
new file mode 100644
index 000000000..a00c85567
--- /dev/null
+++ b/domains/eeshwar.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "darkboi3301",
+ "email": "darkboi3301@gmail.com",
+ "discord": "790788825550028820"
+ },
+
+ "record": {
+ "CNAME": "eeshwar.pages.dev"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/efrecon.json b/domains/efrecon.json
deleted file mode 100644
index c2c8c9e61..000000000
--- a/domains/efrecon.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "efrecon's github",
- "repo": "https://github.com/efrecon/",
- "owner": {
- "username": "efrecon",
- "email": "efrecon+github@gmail.com"
- },
- "record": {
- "URL": "https://github.com/efrecon/"
- }
-}
diff --git a/domains/ekansh.json b/domains/ekansh.json
deleted file mode 100644
index 801ec2b7f..000000000
--- a/domains/ekansh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Inevitable-Design",
- "email": "s.ekansh2712@gmail.com"
- },
- "record": {
- "CNAME": "my-portfolio-production-301e.up.railway.app"
- }
-}
diff --git a/domains/eray.json b/domains/ekrem.json
similarity index 53%
rename from domains/eray.json
rename to domains/ekrem.json
index 23d1405ab..a8500254e 100644
--- a/domains/eray.json
+++ b/domains/ekrem.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "erayreperit",
+ "username": "exrem",
"email": "eray6421@proton.me"
},
"record": {
- "CNAME": "erayreperit.github.io"
+ "CNAME": "exrem.github.io"
}
}
diff --git a/domains/el2zay.json b/domains/el2zay.json
deleted file mode 100644
index e89e057a5..000000000
--- a/domains/el2zay.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Bienvenue sur le site de el2zay ici vous pourrez trouver des informations sur moi ainsi que mes projets.",
- "repo": "https://github.com/el2zay/el2zay.github.io",
- "owner": {
- "username": "el2zay",
- "email": "el2zay.contact@gmail.com",
- "twitter": "el2zay",
- "discord": "el2zay#1234"
- },
- "record": {
- "CNAME": "el2zay.github.io"
- }
-}
diff --git a/domains/eleger.json b/domains/eleger.json
new file mode 100644
index 000000000..d68d62010
--- /dev/null
+++ b/domains/eleger.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PrakashMalwad",
+ "email": "prakashmalwad8778999020@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/elementalst.json b/domains/elementalst.json
new file mode 100644
index 000000000..581977216
--- /dev/null
+++ b/domains/elementalst.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "syxnights",
+ "email": "hamzafelashry12@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/eletrixtalk.json b/domains/eletrixtalk.json
deleted file mode 100644
index 2aa0eef72..000000000
--- a/domains/eletrixtalk.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Chat with login system",
- "repo": "https://github.com/boomerangBS/Chat-alpha",
- "owner": {
- "username": "BoomerangBS",
- "email": "",
- "discord": "boomerangBS#4708"
- },
- "record": {
- "CNAME": "a1fc013d-7b16-4f1c-8baa-96357e70b6fd.id.repl.co"
- }
-}
diff --git a/domains/eliteflix.json b/domains/eliteflix.json
index d05378754..08eaac118 100644
--- a/domains/eliteflix.json
+++ b/domains/eliteflix.json
@@ -4,7 +4,7 @@
"email": "heroku.1st.dyno@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/elliott.json b/domains/elliott.json
new file mode 100644
index 000000000..924175797
--- /dev/null
+++ b/domains/elliott.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "elliott-leow",
+ "email": "leow1879@mydusd.org"
+ },
+ "record": {
+ "CNAME": "elliottleow.me"
+ }
+}
diff --git a/domains/elrefaie.json b/domains/elrefaie.json
deleted file mode 100644
index 6d2e04d5a..000000000
--- a/domains/elrefaie.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "amour86",
- "email": "amour86@gmail.com"
- },
-
- "record": {
- "A": ["35.154.162.29"]
- }
-}
diff --git a/domains/email.trung.json b/domains/email.trung.json
new file mode 100644
index 000000000..d033742cd
--- /dev/null
+++ b/domains/email.trung.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/emi.json b/domains/emi.json
deleted file mode 100644
index 68fc7f0fe..000000000
--- a/domains/emi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "eemeeh",
- "email": "dev@emeeh.ro"
- },
-
- "record": {
- "CNAME": "emeeh.ro"
- }
-}
diff --git a/domains/emmanuel.json b/domains/emmanuel.json
new file mode 100644
index 000000000..bb28a76c2
--- /dev/null
+++ b/domains/emmanuel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Emmannuel",
+ "email": "21417080030624@cecytemorelos.edu.mx"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/emre.json b/domains/emre.json
new file mode 100644
index 000000000..2fe4b8571
--- /dev/null
+++ b/domains/emre.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "emredurak01",
+ "email": "emredurak01@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/envxsion.json b/domains/envxsion.json
deleted file mode 100644
index 55576b695..000000000
--- a/domains/envxsion.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Envxsion",
- "email": "ovxenvxsions12@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/enzo.json b/domains/enzo.json
deleted file mode 100644
index a3ab0f09e..000000000
--- a/domains/enzo.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Enzo's portfolio",
- "repo": "https://github.com/enzonaute",
- "owner": {
- "username": "enzonaute",
- "email": "hello@enzonaute.me"
- },
- "record": {
- "CNAME": "enzonaute.me"
- }
-}
diff --git a/domains/erc.json b/domains/erc.json
deleted file mode 100644
index 44e4c4b7b..000000000
--- a/domains/erc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Hashnode Site",
- "repo": "https://github.com/eric48906",
- "owner": {
- "username": "eric48906",
- "email": "eric48906@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/erdogan.json b/domains/erdogan.json
index ae749661b..f606d3d70 100644
--- a/domains/erdogan.json
+++ b/domains/erdogan.json
@@ -4,6 +4,6 @@
"email": "erdogan.sad@windowslive.com"
},
"record": {
- "CNAME": "erdogansad.github.io"
+ "A": ["87.248.157.245"]
}
}
diff --git a/domains/erdogansad.json b/domains/erdogansad.json
index a24740aeb..b67b86ca0 100644
--- a/domains/erdogansad.json
+++ b/domains/erdogansad.json
@@ -4,7 +4,7 @@
"email": "erdogan.sad@windowslive.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ericpessoa.json b/domains/ericpessoa.json
index 8fc334f68..a25eb00fe 100644
--- a/domains/ericpessoa.json
+++ b/domains/ericpessoa.json
@@ -4,7 +4,7 @@
"email": "pessoa.eric@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/erogemaster225.json b/domains/erogemaster225.json
index c780dc9d5..87e5a953a 100644
--- a/domains/erogemaster225.json
+++ b/domains/erogemaster225.json
@@ -4,7 +4,7 @@
"email": "nguyentrongsang123@yahoo.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/errornointernet.json b/domains/errornointernet.json
index 64c0b592f..e13b74cd1 100644
--- a/domains/errornointernet.json
+++ b/domains/errornointernet.json
@@ -4,7 +4,7 @@
"email": "error.nointernet@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/esemv-evan.json b/domains/esemv-evan.json
new file mode 100644
index 000000000..2da9277a8
--- /dev/null
+++ b/domains/esemv-evan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "esemv07",
+ "email": "ruby.semaganda@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/esp.json b/domains/esp.json
index a2db3432b..a43f13203 100644
--- a/domains/esp.json
+++ b/domains/esp.json
@@ -6,6 +6,6 @@
"telegram": "fakeesp"
},
"record": {
- "A": ["144.91.110.55"]
+ "A": ["141.145.192.190"]
}
}
diff --git a/domains/essiessara.json b/domains/essiessara.json
index 55ab50927..1797d71a5 100644
--- a/domains/essiessara.json
+++ b/domains/essiessara.json
@@ -4,7 +4,7 @@
"email": "esraaaebdelrehime@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/eternal.json b/domains/eternal.json
index c9de9ac55..e743e85fc 100644
--- a/domains/eternal.json
+++ b/domains/eternal.json
@@ -4,7 +4,7 @@
"email": "marcacolwell@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/eternalluxury.json b/domains/eternalluxury.json
new file mode 100644
index 000000000..1cae4205f
--- /dev/null
+++ b/domains/eternalluxury.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "EternalLuxury",
+ "email": "luxurydevv@gmail.com"
+ },
+ "record": {
+ "URL": "https://shiny-marzipan-37b154.netlify.app"
+ }
+}
diff --git a/domains/eternalnetwork.json b/domains/eternalnetwork.json
index 6520e9f8e..ea24f9fa7 100644
--- a/domains/eternalnetwork.json
+++ b/domains/eternalnetwork.json
@@ -4,7 +4,7 @@
"email": "neealdon3@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ethan.json b/domains/ethan.json
index e59651ee9..fb9e631cb 100644
--- a/domains/ethan.json
+++ b/domains/ethan.json
@@ -1,10 +1,11 @@
{
"owner": {
- "username": "Darkcoder402",
- "email": "ethanrodrigues25@gmail.com",
- "twitter": "EthanRo97737635"
+ "username": "simuIates",
+ "email": "e@zurly.lol"
},
"record": {
- "CNAME": "ethan-is-a-dev.tk"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/ethereal.json b/domains/ethereal.json
deleted file mode 100644
index 45e7ccfa4..000000000
--- a/domains/ethereal.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "EtherealTheDev",
- "email": "",
- "twitter": "EtherealTheDev",
- "discord": "Ethereal#0908"
- },
- "record": {
- "CNAME": "92073eed-80b5-4f2f-b84a-0121b7ec69bb.id.repl.co"
- }
-}
diff --git a/domains/eturbo.json b/domains/eturbo.json
index 417c49f46..99ef594f1 100644
--- a/domains/eturbo.json
+++ b/domains/eturbo.json
@@ -4,7 +4,7 @@
"email": "huangalex409@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/eval.json b/domains/eval.json
deleted file mode 100644
index c0169e12e..000000000
--- a/domains/eval.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a website to run javascript codes",
- "repo": "https://github.com/leecheeyong/leecheeyong",
- "owner": {
- "username": "leecheeyong",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "466c0750-ca47-4994-a60c-37ffb99b18e6.id.repl.co"
- }
-}
diff --git a/domains/evaldas.json b/domains/evaldas.json
deleted file mode 100644
index dbda7d745..000000000
--- a/domains/evaldas.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "evaldas",
- "email": "evabur@icloud.com"
- },
- "record": {
- "CNAME": "burlingis.com"
- }
-}
diff --git a/domains/evelio.json b/domains/evelio.json
index fc0f69022..c3959dee6 100644
--- a/domains/evelio.json
+++ b/domains/evelio.json
@@ -1,13 +1,12 @@
{
"description": "Will be used for my portfolio",
- "repo": "https://github.com/SrEvelio/srevelio.github.io",
"owner": {
"username": "SrEvelio",
"email": "alphaevelio@gmail.com",
- "discord": "SrEvelioツ#3906"
+ "discord": "srevelio"
},
"record": {
- "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+ "A": ["216.24.57.1"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/everybody.json b/domains/everybody.json
index 6b0b6cba3..e8e1899ce 100644
--- a/domains/everybody.json
+++ b/domains/everybody.json
@@ -4,7 +4,7 @@
"email": "david.boltong@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/everyone.json b/domains/everyone.json
deleted file mode 100644
index d9689103b..000000000
--- a/domains/everyone.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Image / Video host.",
- "repo": "https://github.com/tootie112",
- "owner": {
- "username": "tootie112",
- "email": "",
- "discord": "Io.Netty#3118"
- },
- "record": {
- "CNAME": "api.has-cool.pics"
- }
-}
diff --git a/domains/eviternal.json b/domains/eviternal.json
deleted file mode 100644
index 2e1d0a207..000000000
--- a/domains/eviternal.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "EviternalOfficial",
- "email": "",
- "discord": "Vaibhav Kashyap#5747"
- },
- "record": {
- "A": ["35.186.245.55"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/exotic.json b/domains/exotic.json
new file mode 100644
index 000000000..fd96a622b
--- /dev/null
+++ b/domains/exotic.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ethaanol",
+ "email": "cashprivate10@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ez.json b/domains/ez.json
index bee107ea0..4e6a7710f 100644
--- a/domains/ez.json
+++ b/domains/ez.json
@@ -4,6 +4,8 @@
"email": "clicpowytb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/f2cqjkp4gwog.json b/domains/f2cqjkp4gwog.json
deleted file mode 100644
index 3dfcac7fd..000000000
--- a/domains/f2cqjkp4gwog.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "thispsj",
- "email": "thispsj.mail@gmail.com"
- },
- "record": {
- "CNAME": "gv-5tmrgilyy2ar3j.dv.googlehosted.com"
- }
-}
diff --git a/domains/f5.json b/domains/f5.json
new file mode 100644
index 000000000..c0a64863b
--- /dev/null
+++ b/domains/f5.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fae5de",
+ "email": "louis.m.ortner@icloud.com"
+ },
+ "record": {
+ "CNAME": "website-6es.pages.dev"
+ }
+}
diff --git a/domains/fa-fifi.json b/domains/fa-fifi.json
new file mode 100644
index 000000000..be41afb25
--- /dev/null
+++ b/domains/fa-fifi.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal portfolio website",
+ "owner": {
+ "username": "fa-fifi",
+ "email": "fafifi1997@gmail.com"
+ },
+ "record": {
+ "CNAME": "fa-fifi.github.io"
+ }
+}
diff --git a/domains/fae5.json b/domains/fae5.json
new file mode 100644
index 000000000..c0a64863b
--- /dev/null
+++ b/domains/fae5.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fae5de",
+ "email": "louis.m.ortner@icloud.com"
+ },
+ "record": {
+ "CNAME": "website-6es.pages.dev"
+ }
+}
diff --git a/domains/faelixyz.json b/domains/faelixyz.json
new file mode 100644
index 000000000..a63ebf78e
--- /dev/null
+++ b/domains/faelixyz.json
@@ -0,0 +1,12 @@
+{
+ "description": "Faelixyz's API and redirects",
+ "repo": "",
+ "owner": {
+ "username": "faelixyz",
+ "email": "private@fae5.studio",
+ "twitter": "faelixyz"
+ },
+ "record": {
+ "CNAME": "isagooddev.pages.dev"
+ }
+}
diff --git a/domains/fafu.json b/domains/fafu.json
new file mode 100644
index 000000000..55ff9d28c
--- /dev/null
+++ b/domains/fafu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fafu-10",
+ "email": "shimni22@skiff.com"
+ },
+ "record": {
+ "CNAME": "fafu-10.github.io"
+ }
+}
diff --git a/domains/fahmifareed.json b/domains/fahmifareed.json
new file mode 100644
index 000000000..d99bcc637
--- /dev/null
+++ b/domains/fahmifareed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "fahmifareed",
+ "email": "fahmifareed@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/loud.json b/domains/faizkhan.json
similarity index 57%
rename from domains/loud.json
rename to domains/faizkhan.json
index a5991909d..d8da6ddd0 100644
--- a/domains/loud.json
+++ b/domains/faizkhan.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "LinkerScript",
- "email": "min@effobe.com"
+ "username": "dev28k",
+ "email": "faizkhan.dev@gmail.com"
},
"record": {
- "CNAME": "6498c941-9031-4e57-9fc0-12716fa187f4.repl.co"
+ "URL": "https://portfoliodev-dev28k.vercel.app/"
}
}
diff --git a/domains/faizm.json b/domains/faizm.json
new file mode 100644
index 000000000..714f45c4f
--- /dev/null
+++ b/domains/faizm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dev28k",
+ "email": "faizkhan.dev@gmail.com"
+ },
+ "record": {
+ "URL": "https://resort-app-vercel-frontend.vercel.app/"
+ }
+}
diff --git a/domains/fakhri.json b/domains/fakhri.json
new file mode 100644
index 000000000..0a7f76ef3
--- /dev/null
+++ b/domains/fakhri.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FDMZ17",
+ "email": "devoloper.fdmz17@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/farag.json b/domains/farag.json
index c55b7045c..79426f3d7 100644
--- a/domains/farag.json
+++ b/domains/farag.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/farhan.json b/domains/farhan.json
new file mode 100644
index 000000000..12c9b95f6
--- /dev/null
+++ b/domains/farhan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rose-uwu",
+ "email": "rose.pog.com@gmail.com"
+ },
+ "record": {
+ "CNAME": "rose-uwu.github.io"
+ }
+}
diff --git a/domains/faris.json b/domains/faris.json
deleted file mode 100644
index 7ad18eea6..000000000
--- a/domains/faris.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/farisjalal",
- "owner": {
- "username": "farisjalal",
- "email": "",
- "twitter": "faris__jalal"
- },
- "record": {
- "A": ["168.138.104.44"]
- }
-}
diff --git a/domains/fartplayer69.json b/domains/fartplayer69.json
deleted file mode 100644
index f57eca1ec..000000000
--- a/domains/fartplayer69.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "diyar2137237243",
- "email": "diyarpc6@gmail.com"
- },
- "record": {
- "CNAME": "diyar2137237243.github.io"
- }
-}
diff --git a/domains/fasdaa.json b/domains/fasdaa.json
index 7004eafa8..ed8831943 100644
--- a/domains/fasdaa.json
+++ b/domains/fasdaa.json
@@ -4,7 +4,7 @@
"email": "abdulkx06epic@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/fatgrizzly.json b/domains/fatgrizzly.json
deleted file mode 100644
index 56ee53ce1..000000000
--- a/domains/fatgrizzly.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "personal website ",
- "repo": "https://github.com/fatgrizzly",
- "owner": {
- "username": "fatgrizzly",
- "email": "soundar@secret.fyi"
- },
- "record": {
- "A": ["23.147.40.69"]
- }
-}
diff --git a/domains/fauzannnnh.json b/domains/fauzannnnh.json
deleted file mode 100644
index c630c6a1f..000000000
--- a/domains/fauzannnnh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My portfolio website",
- "repo": "https://github.com/Fauzannnnh/website",
- "owner": {
- "username": "Fauzannnnh",
- "email": "fauzan@eenthlh.xyz"
- },
- "record": {
- "URL": "https://eenthlh.xyz"
- }
-}
diff --git a/domains/felga.json b/domains/felga.json
deleted file mode 100644
index fc90b54b7..000000000
--- a/domains/felga.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Felga7453",
- "email": "wojciech.faruga@outlook.com"
- },
- "record": {
- "CNAME": "felga.ddns.net"
- }
-}
diff --git a/domains/felipesantos.json b/domains/felipesantos.json
new file mode 100644
index 000000000..89a5dac07
--- /dev/null
+++ b/domains/felipesantos.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "felipehasantos",
+ "email": "felipehasantosbusiness@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/felixtpg.json b/domains/felixtpg.json
deleted file mode 100644
index 58af6322e..000000000
--- a/domains/felixtpg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "FelixTPG",
- "email": "bufex09@icloud.com"
- },
- "record": {
- "CNAME": "felixtpg.eu"
- }
-}
diff --git a/domains/femboy.json b/domains/femboy.json
index dc7133f05..d5e4eef55 100644
--- a/domains/femboy.json
+++ b/domains/femboy.json
@@ -4,7 +4,7 @@
"email": "nuffimail33@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ffidhackseivathueppadi.json b/domains/ffidhackseivathueppadi.json
new file mode 100644
index 000000000..019148936
--- /dev/null
+++ b/domains/ffidhackseivathueppadi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thanishhari",
+ "email": "suganyauvthanis@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ffidhackseivathueppadilinklinklinkanup.json b/domains/ffidhackseivathueppadilinklinklinkanup.json
new file mode 100644
index 000000000..019148936
--- /dev/null
+++ b/domains/ffidhackseivathueppadilinklinklinkanup.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thanishhari",
+ "email": "suganyauvthanis@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fietu.json b/domains/fietu.json
deleted file mode 100644
index 55e01411a..000000000
--- a/domains/fietu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Fietu Website",
- "repo": "https://github.com/elfietulais",
- "owner": {
- "username": "ElFietulais",
- "email": "pancongusanos@gmail.com"
- },
- "record": {
- "CNAME": "host.servers.andremor.dev"
- }
-}
diff --git a/domains/files.allancoding.json b/domains/files.allancoding.json
new file mode 100644
index 000000000..8590559c0
--- /dev/null
+++ b/domains/files.allancoding.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "allancoding",
+ "email": "allancoding.dev@gmail.com",
+ "twitter": "allancoding",
+ "discord": "allancoding"
+ },
+ "record": {
+ "CNAME": "allancoding.github.io"
+ }
+}
diff --git a/domains/filip-razek.json b/domains/filip-razek.json
index b0d361569..dff9eb679 100644
--- a/domains/filip-razek.json
+++ b/domains/filip-razek.json
@@ -4,7 +4,7 @@
"email": "filip.razek@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/filo.json b/domains/filo.json
index 93d0bdbd2..f5700b00f 100644
--- a/domains/filo.json
+++ b/domains/filo.json
@@ -4,7 +4,7 @@
"email": "karka2-6@rambler.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/fincho.json b/domains/fincho.json
new file mode 100644
index 000000000..467b5683d
--- /dev/null
+++ b/domains/fincho.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "finchodev",
+ "email": "zeltux21@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/finn.json b/domains/finn.json
deleted file mode 100644
index 31b061686..000000000
--- a/domains/finn.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/F1nnM",
- "owner": {
- "username": "F1nnM",
- "email": "isadev_github@mfinn.de"
- },
- "record": {
- "A": ["94.176.233.129"]
- }
-}
diff --git a/domains/finny.json b/domains/finny.json
index 991efa2b2..8cea26add 100644
--- a/domains/finny.json
+++ b/domains/finny.json
@@ -4,7 +4,7 @@
"email": "teganherring2016@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/firepup650.json b/domains/firepup650.json
deleted file mode 100644
index 7b0dca3d0..000000000
--- a/domains/firepup650.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Alexander-Maples",
- "email": "mapleale@studentmail.conroeisd.net"
- },
-
- "record": {
- "CNAME": "5828eaa1-491a-4323-9d54-d5e80935eab3.id.repl.co"
- }
-}
diff --git a/domains/firmware.json b/domains/firmware.json
new file mode 100644
index 000000000..ae300c14e
--- /dev/null
+++ b/domains/firmware.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ffirmware",
+ "email": "netpaths@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/firstboss.json b/domains/firstboss.json
deleted file mode 100644
index d26b45d0e..000000000
--- a/domains/firstboss.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "FIRSTB0SS",
- "email": "abhiwa6@protonmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/flame.json b/domains/flame.json
new file mode 100644
index 000000000..69b6a7d4f
--- /dev/null
+++ b/domains/flame.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "flame3301",
+ "email": "neongamerflame@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/flex.json b/domains/flex.json
new file mode 100644
index 000000000..185fc075b
--- /dev/null
+++ b/domains/flex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DiHaNCodeZ",
+ "email": "dihanshahriar5@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/flexico.json b/domains/flexico.json
deleted file mode 100644
index 9376011a1..000000000
--- a/domains/flexico.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Flexicos website",
- "repo": "https://github.com/7xh/7xh.github.io",
- "owner": {
- "username": "7xh",
- "email": "noterme@protonmail.com"
- },
- "record": {
- "CNAME": "7xh.github.io"
- }
-}
diff --git a/domains/floofy.exe.json b/domains/floofy.exe.json
new file mode 100644
index 000000000..ea3617d81
--- /dev/null
+++ b/domains/floofy.exe.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "floofywork",
+ "email": "floofywork@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/floppa.json b/domains/floppa.json
index 5ff7a8db6..86d69f171 100644
--- a/domains/floppa.json
+++ b/domains/floppa.json
@@ -4,7 +4,7 @@
"email": "deniedaddicted@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/florian.json b/domains/florian.json
deleted file mode 100644
index f3e6b93a8..000000000
--- a/domains/florian.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Hey! I'm Florian",
- "repo": "https://github.com/florianheysen/heysen.fr",
- "owner": {
- "username": "florianheysen",
- "email": "florian.heysen@gmail.com",
- "twitter": "florianheysen"
- },
- "record": {
- "CNAME": "heysen.fr"
- }
-}
diff --git a/domains/flow-os.liquid.json b/domains/flow-os.liquid.json
deleted file mode 100644
index b4e7a00e1..000000000
--- a/domains/flow-os.liquid.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ThinLiquid",
- "email": "thnlqd@gmail.com"
- },
- "record": {
- "A": ["155.248.212.141"]
- }
-}
diff --git a/domains/flowos.json b/domains/flowos.json
deleted file mode 100644
index 7f8c47487..000000000
--- a/domains/flowos.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Aether1777",
- "email": "bkevin39415@gmail.com"
- },
- "record": {
- "CNAME": "border.hop.io"
- }
-}
diff --git a/domains/fluted.json b/domains/fluted.json
deleted file mode 100644
index 4c2f16754..000000000
--- a/domains/fluted.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "fluted.is-a-dev",
- "repo": "https://github.com/fluteds/fluteds.github.io",
- "owner": {
- "username": "fluteds",
- "email": "",
- "twitter": "fluted_"
- },
- "record": {
- "CNAME": "fluted.xyz"
- }
-}
diff --git a/domains/fluxate.json b/domains/fluxate.json
index 52e753f4a..d46a972aa 100644
--- a/domains/fluxate.json
+++ b/domains/fluxate.json
@@ -4,7 +4,7 @@
"email": "nxyylol@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/flyingcheese41.json b/domains/flyingcheese41.json
deleted file mode 100644
index 8b001bf68..000000000
--- a/domains/flyingcheese41.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "FlyingCheese41",
- "email": "FlyingCheese43@gmail.com"
- },
- "record": {
- "CNAME": "52d970d2-6085-4811-b3d1-8b3bd898b014.id.repl.co"
- }
-}
diff --git a/domains/fmode.json b/domains/fmode.json
new file mode 100644
index 000000000..7989d2960
--- /dev/null
+++ b/domains/fmode.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jOaawd",
+ "email": "jorti28@apps.pusd.org"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fndn.json b/domains/fndn.json
index 79ac44dcf..26396c245 100644
--- a/domains/fndn.json
+++ b/domains/fndn.json
@@ -4,7 +4,7 @@
"email": "Jayeshpoudel+ha@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/foo.json b/domains/foo.json
index ab10003aa..819345531 100644
--- a/domains/foo.json
+++ b/domains/foo.json
@@ -4,7 +4,7 @@
"email": "mkemalkorkmaz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/formuna.json b/domains/formuna.json
new file mode 100644
index 000000000..b91676b04
--- /dev/null
+++ b/domains/formuna.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FormunaGit",
+ "email": "moonacula555555555@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/foxsden.json b/domains/foxsden.json
index 04fb9f06b..23f47940f 100644
--- a/domains/foxsden.json
+++ b/domains/foxsden.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "FoxsDenYT",
- "email": "techseal14@gmail.com"
+ "email": "foxsdenyt+isadev@gmail.com"
},
"record": {
"A": [
diff --git a/domains/foxsophia.json b/domains/foxsophia.json
new file mode 100644
index 000000000..6bfd62947
--- /dev/null
+++ b/domains/foxsophia.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "foxsophia",
+ "email": "cchirrpy@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/freddy007.json b/domains/freddy007.json
new file mode 100644
index 000000000..38a2dfbc3
--- /dev/null
+++ b/domains/freddy007.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "anonphoenix007",
+ "email": "phoenixgibson007@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/freegraphics.json b/domains/freegraphics.json
deleted file mode 100644
index b99cbbc5b..000000000
--- a/domains/freegraphics.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Cryptic1526",
- "email": "nemith27dhg@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/friendslikebd.json b/domains/friendslikebd.json
new file mode 100644
index 000000000..202c14640
--- /dev/null
+++ b/domains/friendslikebd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Akdipukhan",
+ "email": "Akdipu258@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/frissyn.json b/domains/frissyn.json
deleted file mode 100644
index c9d531c46..000000000
--- a/domains/frissyn.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Personal website and portfolio.",
- "repo": "https://replit.com/@frissyn/frissyn",
- "owner": {
- "username": "frissyn",
- "email": "",
- "twitter": "frissyn_",
- "discord": "frissyn#0376"
- },
- "record": {
- "CNAME": "d464aec0-5048-4724-9ac8-b797ee2bf2a7.id.repl.co"
- }
-}
diff --git a/domains/frost.json b/domains/frost.json
index f7f3e29e6..9675211db 100644
--- a/domains/frost.json
+++ b/domains/frost.json
@@ -4,7 +4,7 @@
"email": "macio181@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": [
"v=spf1 a mx ip4:217.174.245.249 ~all",
diff --git a/domains/frostzzone.json b/domains/frostzzone.json
deleted file mode 100644
index 531a84c9a..000000000
--- a/domains/frostzzone.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "frostzzone",
- "email": "frostzzone@gmail.com"
- },
- "record": {
- "CNAME": "e39e6f71-6489-4c74-a945-ff65efc84a10.id.repl.co"
- }
-}
diff --git a/domains/ftp.zerow.json b/domains/ftp.zerow.json
deleted file mode 100644
index 7e0e107a6..000000000
--- a/domains/ftp.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "CNAME": "zerow.is-a.dev"
- }
-}
diff --git a/domains/fuentes.json b/domains/fuentes.json
new file mode 100644
index 000000000..963f41076
--- /dev/null
+++ b/domains/fuentes.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "fuentez145",
+ "email": "gilbert.fuentes@ctu.edu.ph"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fun-random-api.json b/domains/fun-random-api.json
deleted file mode 100644
index 65119128d..000000000
--- a/domains/fun-random-api.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "njanemmu",
- "email": "aneenababu71901@gmail.com"
- },
- "record": {
- "CNAME": "fbf6f1ec-874e-4ec5-b02e-c4cfdbaa148d.id.repl.co"
- }
-}
diff --git a/domains/furret.json b/domains/furret.json
new file mode 100644
index 000000000..6fe80983e
--- /dev/null
+++ b/domains/furret.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "furretra1n",
+ "email": "furret@transistorcafe.net"
+ },
+ "record": {
+ "CNAME": "walccdev.github.io"
+ }
+}
diff --git a/domains/furry.json b/domains/furry.json
index 8da97f979..e44bca5ef 100644
--- a/domains/furry.json
+++ b/domains/furry.json
@@ -4,7 +4,7 @@
"email": "furrycality@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/furrycality.json b/domains/furrycality.json
index 8da97f979..e44bca5ef 100644
--- a/domains/furrycality.json
+++ b/domains/furrycality.json
@@ -4,7 +4,7 @@
"email": "furrycality@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/futurex.json b/domains/futurex.json
new file mode 100644
index 000000000..91845eeb9
--- /dev/null
+++ b/domains/futurex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Fbhfvj",
+ "email": "bebogeorge2008@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/fyn.json b/domains/fyn.json
deleted file mode 100644
index c939964c2..000000000
--- a/domains/fyn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Luongzz",
- "email": "buivanluong0204@gmail.com"
- },
- "record": {
- "CNAME": "4ff23fe2-1725-47fb-b45b-0d0dcb0b9b02.id.repl.co"
- }
-}
diff --git a/domains/gabolemus.json b/domains/gabolemus.json
new file mode 100644
index 000000000..bbb7a65db
--- /dev/null
+++ b/domains/gabolemus.json
@@ -0,0 +1,11 @@
+{
+ "description": "gabolemus personal website",
+ "repo": "https://github.com/gabolemus/gabolemus.github.io",
+ "owner": {
+ "username": "gabolemus",
+ "email": "glemus.stuart@gmail.com"
+ },
+ "record": {
+ "CNAME": "gabolemus.github.io"
+ }
+}
diff --git a/domains/gabriel.json b/domains/gabriel.json
index 1016a4b6a..5b87317f2 100644
--- a/domains/gabriel.json
+++ b/domains/gabriel.json
@@ -4,7 +4,7 @@
"email": "gabriel.reheb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gabrielyong.json b/domains/gabrielyong.json
new file mode 100644
index 000000000..0a80ee3e2
--- /dev/null
+++ b/domains/gabrielyong.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gabr1234iel",
+ "email": "gabrrrly@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/galaxyfps.riviox.json b/domains/galaxyfps.riviox.json
new file mode 100644
index 000000000..9cac87a71
--- /dev/null
+++ b/domains/galaxyfps.riviox.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RivioxGaming",
+ "email": "rivioxyt@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gamedevdylan.json b/domains/gamedevdylan.json
deleted file mode 100644
index f3913a8ae..000000000
--- a/domains/gamedevdylan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GameDeveloperDylan",
- "email": "dylan10109101010910@gmail.com"
- },
- "record": {
- "CNAME": "164dbfde-80d8-4920-b392-dfd67063c694.id.repl.co"
- }
-}
diff --git a/domains/gamersvault.json b/domains/gamersvault.json
new file mode 100644
index 000000000..63e45546b
--- /dev/null
+++ b/domains/gamersvault.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "lucenstuff",
+ "email": "lucentiniagustin@hotmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gamerzam.json b/domains/gamerzam.json
deleted file mode 100644
index f0f9d68eb..000000000
--- a/domains/gamerzam.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "my bio links",
- "repo": "lividevergreenengineers.bitohofo.repl.co",
- "owner": {
- "username": "GamerTheDev",
- "email": "gamersstreak24@gmail.com"
- },
- "record": {
- "CNAME": "lividevergreenengineers-2.bitohofo.repl.co"
- }
-}
diff --git a/domains/ganyu.json b/domains/ganyu.json
new file mode 100644
index 000000000..ab782125b
--- /dev/null
+++ b/domains/ganyu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "emikohoshi",
+ "email": "hoangyencb1303@gmail.com"
+ },
+ "record": {
+ "CNAME": "emikohoshi.github.io"
+ }
+}
diff --git a/domains/gapindang.json b/domains/gapindang.json
index 907d20837..4e01ccd01 100644
--- a/domains/gapindang.json
+++ b/domains/gapindang.json
@@ -4,7 +4,7 @@
"email": "gavinku890@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/garlic-os.json b/domains/garlic-os.json
deleted file mode 100644
index 9ff9f9090..000000000
--- a/domains/garlic-os.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "garlicOS®'s is-a.dev domain",
- "repo": "https://github.com/garlic-os/garlic-os.github.io",
- "owner": {
- "username": "garlic-os",
- "email": "sisdfk@gmail.com"
- },
- "record": {
- "A": ["78.47.88.228"]
- }
-}
diff --git a/domains/gattinhosbot.json b/domains/gattinhosbot.json
index 724d362f9..0bbfe6a46 100644
--- a/domains/gattinhosbot.json
+++ b/domains/gattinhosbot.json
@@ -6,15 +6,13 @@
},
"record": {
"A": [
- "217.174.245.249"
+ "109.71.252.37"
],
"MX": [
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
+ "mail.is-a.dev"
],
"TXT": [
- "forward-email=support:support.gattinhosbot@mail.stefdp.is-a.dev",
- "forward-email=/^(?!support\\.gattinhosbot$).*/:gattinhosbot@mail.stefdp.is-a.dev"
+ "v=spf1 mx a:mail.is-a.dev ~all"
]
}
}
diff --git a/domains/gaurav87565.json b/domains/gaurav87565.json
index 78a731243..bb4bb6705 100644
--- a/domains/gaurav87565.json
+++ b/domains/gaurav87565.json
@@ -4,7 +4,7 @@
"email": "pavithrashreeuchil@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gauravg.json b/domains/gauravg.json
new file mode 100644
index 000000000..104cf7ec5
--- /dev/null
+++ b/domains/gauravg.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iamkai4",
+ "email": "guptagaurav25608@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gauravgupta.json b/domains/gauravgupta.json
index 344d4b9f6..c195138ae 100644
--- a/domains/gauravgupta.json
+++ b/domains/gauravgupta.json
@@ -4,7 +4,7 @@
"email": "gauravgupta25608@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gauravgupta256.json b/domains/gauravgupta256.json
index 344d4b9f6..c195138ae 100644
--- a/domains/gauravgupta256.json
+++ b/domains/gauravgupta256.json
@@ -4,7 +4,7 @@
"email": "gauravgupta25608@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gautam.json b/domains/gautam.json
index 3b0f52c34..5499c7091 100644
--- a/domains/gautam.json
+++ b/domains/gautam.json
@@ -1,10 +1,11 @@
{
"owner": {
- "username": "GautamMKGarg",
- "email": "",
- "twitter": "GautamMKGarg"
+ "username": "coderGtm",
+ "email": "gautammehta0000@gmail.com"
},
"record": {
- "URL": "https://www.fiverr.com/gautammkgarg"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/gaz.json b/domains/gaz.json
deleted file mode 100644
index 735fa867d..000000000
--- a/domains/gaz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "bl33dz",
- "email": "bagaz@protonmail.ch"
- },
- "record": {
- "A": ["180.250.135.31"]
- }
-}
diff --git a/domains/gbot.json b/domains/gbot.json
new file mode 100644
index 000000000..85de0ee08
--- /dev/null
+++ b/domains/gbot.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "stefano.delprete.08@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gcc.json b/domains/gcc.json
deleted file mode 100644
index c4cd0ab8a..000000000
--- a/domains/gcc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "zachcool",
- "email": "zach24willow@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/geckopico.json b/domains/geckopico.json
index 98c06df3d..18274eb05 100644
--- a/domains/geckopico.json
+++ b/domains/geckopico.json
@@ -4,7 +4,7 @@
"email": "david.iorlano@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/geekysudhir.json b/domains/geekysudhir.json
new file mode 100644
index 000000000..1aa160a39
--- /dev/null
+++ b/domains/geekysudhir.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "GeekySudhir",
+ "email": "sdhrsingh271@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "a608d9751f86d011d10a8d58ca5a93"
+ }
+}
diff --git a/domains/geenzo.json b/domains/geenzo.json
new file mode 100644
index 000000000..d3bb1f294
--- /dev/null
+++ b/domains/geenzo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "geenzo69",
+ "email": "geenzogamer164@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/genevera.json b/domains/genevera.json
index 35805d653..fb7cdbfcc 100644
--- a/domains/genevera.json
+++ b/domains/genevera.json
@@ -4,7 +4,7 @@
"email": "genevera.codes+github@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/gerzhahp.json b/domains/gerzhahp.json
new file mode 100644
index 000000000..00cc1a567
--- /dev/null
+++ b/domains/gerzhahp.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "zh4dev",
+ "email": "safeusdev@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gfn.json b/domains/gfn.json
index 424b83cd4..c185299db 100644
--- a/domains/gfn.json
+++ b/domains/gfn.json
@@ -4,7 +4,7 @@
"email": "kolimss1111@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gfn1.json b/domains/gfn1.json
deleted file mode 100644
index 4e085b5d5..000000000
--- a/domains/gfn1.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "kolims",
- "email": "kolimss1111@gmail.com"
- },
- "record": {
- "CNAME": "f678c241-9a2f-46ae-a11a-5362a049e37a.id.repl.co"
- }
-}
diff --git a/domains/gfn2.json b/domains/gfn2.json
deleted file mode 100644
index 4e085b5d5..000000000
--- a/domains/gfn2.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "kolims",
- "email": "kolimss1111@gmail.com"
- },
- "record": {
- "CNAME": "f678c241-9a2f-46ae-a11a-5362a049e37a.id.repl.co"
- }
-}
diff --git a/domains/gg.json b/domains/gg.json
new file mode 100644
index 000000000..90478b2c3
--- /dev/null
+++ b/domains/gg.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "741as",
+ "email": "1@gggf.link"
+ },
+ "record": {
+ "CNAME": "1.1ddns.eu.org"
+ }
+}
diff --git a/domains/ggio.json b/domains/ggio.json
new file mode 100644
index 000000000..861dc18a1
--- /dev/null
+++ b/domains/ggio.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dusiadudusia",
+ "email": "ds4667861@gmaiL.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/ghalibcraft.json b/domains/ghalibcraft.json
index 930bc083e..175737f67 100644
--- a/domains/ghalibcraft.json
+++ b/domains/ghalibcraft.json
@@ -4,7 +4,7 @@
"email": "ghalibmezeghiche2012@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ghfli.json b/domains/ghfli.json
new file mode 100644
index 000000000..549637464
--- /dev/null
+++ b/domains/ghfli.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ghfli",
+ "email": "newstart.infotech@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gigwanoob.json b/domains/gigwanoob.json
deleted file mode 100644
index d668ca1f5..000000000
--- a/domains/gigwanoob.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "gigwanoobstudios",
- "email": "tplink3116@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
- "MX": ["hosts.is-a.dev"]
- }
-}
diff --git a/domains/gilad.json b/domains/gilad.json
deleted file mode 100644
index ce9e08c41..000000000
--- a/domains/gilad.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Gilad's personal developer website",
- "owner": {
- "username": "gilade",
- "email": "gilad@eventov.com"
- },
- "record": {
- "CNAME": "gilad.ninja"
- }
-}
diff --git a/domains/gingdev.json b/domains/gingdev.json
deleted file mode 100644
index c41a1426e..000000000
--- a/domains/gingdev.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Gingdev personal developer website",
- "repo": "https://github.com/ging-dev",
- "owner": {
- "username": "ging-dev",
- "email": "gingdz11012001@gmail.com"
- },
- "record": {
- "A": ["192.243.108.102"]
- }
-}
diff --git a/domains/giocoliere.json b/domains/giocoliere.json
new file mode 100644
index 000000000..10770b706
--- /dev/null
+++ b/domains/giocoliere.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "giocoliere",
+ "email": "simcrigjeki@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/giovannirapa.json b/domains/giovannirapa.json
index 456522d66..2547fd5a8 100644
--- a/domains/giovannirapa.json
+++ b/domains/giovannirapa.json
@@ -4,7 +4,7 @@
"email": "rapagiovanni@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/giovstechs.json b/domains/giovstechs.json
new file mode 100644
index 000000000..d7fde2dfe
--- /dev/null
+++ b/domains/giovstechs.json
@@ -0,0 +1,11 @@
+{
+ "description": "GiovsTechs' Website",
+ "repo": "https://github.com/GiovsTech/Website",
+ "owner": {
+ "username": "giovstechs",
+ "email": "me@gianstech.it"
+ },
+ "record": {
+ "URL": "https://links.gianstech.it"
+ }
+}
diff --git a/domains/git-hoe.json b/domains/git-hoe.json
index 5ebd4b3d1..d9bc3b672 100644
--- a/domains/git-hoe.json
+++ b/domains/git-hoe.json
@@ -4,7 +4,7 @@
"email": "haxer@disroot.org"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/git.json b/domains/git.json
index a4b5610d5..f94d73b00 100644
--- a/domains/git.json
+++ b/domains/git.json
@@ -4,7 +4,7 @@
"email": "haxer@disroot.org"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/givinghawk.json b/domains/givinghawk.json
new file mode 100644
index 000000000..a243818f6
--- /dev/null
+++ b/domains/givinghawk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "givinghawk",
+ "email": "contact@givinghawk.dev"
+ },
+ "record": {
+ "URL": "https://givinghawk.dev/"
+ }
+}
diff --git a/domains/gizzy.json b/domains/gizzy.json
index efe4f7885..849a0b862 100644
--- a/domains/gizzy.json
+++ b/domains/gizzy.json
@@ -1,9 +1,9 @@
{
"description": "gizzy.is-a.dev",
"owner": {
- "username": "NeroGizmoUwU",
+ "username": "GizzyUwU",
"email": "nerop455@gmail.com",
- "discord": "gizzyuwu"
+ "discord": "gizzyowo"
},
"record": {
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
diff --git a/domains/gizzygizmo.json b/domains/gizzygizmo.json
deleted file mode 100644
index dae600071..000000000
--- a/domains/gizzygizmo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NeroGizmoUwU",
- "email": "minecraftcoolglibchannel@gmail.com"
- },
- "record": {
- "CNAME": "nero-pi.duckdns.org"
- }
-}
diff --git a/domains/glqch.json b/domains/glqch.json
index 1679a75ca..40c87b49a 100644
--- a/domains/glqch.json
+++ b/domains/glqch.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "joythejoystick1",
+ "username": "Glqch404",
"email": "midoayoub778@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gnkbion.json b/domains/gnkbion.json
new file mode 100644
index 000000000..0edc60ed1
--- /dev/null
+++ b/domains/gnkbion.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "RaannaKasturi",
+ "email": "raannakasturi@gmail.com"
+ },
+
+ "record": {
+ "A": ["185.27.134.3"]
+ }
+}
diff --git a/domains/god.json b/domains/god.json
deleted file mode 100644
index 01439c713..000000000
--- a/domains/god.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Austin's personal developer website",
- "repo": "https://github.com/austindyoung",
- "owner": {
- "username": "austindyoung",
- "email": "austin@doesweb.dev"
- },
- "record": {
- "URL": "https://austindyoung.github.io"
- }
-}
diff --git a/domains/godwin.json b/domains/godwin.json
deleted file mode 100644
index e670214c8..000000000
--- a/domains/godwin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "gpproton",
- "email": "me@godwin.dev"
- },
-
- "record": {
- "CNAME": "godwin.dev"
- }
-}
diff --git a/domains/goober.json b/domains/goober.json
deleted file mode 100644
index a334f274f..000000000
--- a/domains/goober.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MotorTruck1221",
- "email": "tuckerj0606@icloud.com"
- },
- "record": {
- "A": ["144.24.0.12"]
- }
-}
diff --git a/domains/goobric.json b/domains/goobric.json
index e3b992e5f..691ed004d 100644
--- a/domains/goobric.json
+++ b/domains/goobric.json
@@ -4,7 +4,7 @@
"email": "goobric@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/goon.json b/domains/goon.json
deleted file mode 100644
index 816a8d55a..000000000
--- a/domains/goon.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "realGoonDev",
- "email": "goondev@clia.tk",
- "discord": "realGoon#5656"
- },
- "record": {
- "A": ["38.242.146.64"]
- }
-}
diff --git a/domains/gopalji.json b/domains/gopalji.json
index 8fc8f6aef..4af96d436 100644
--- a/domains/gopalji.json
+++ b/domains/gopalji.json
@@ -4,7 +4,7 @@
"email": "contact@gopalji.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/gpchn.json b/domains/gpchn.json
deleted file mode 100644
index acf95d7a3..000000000
--- a/domains/gpchn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "gpchn",
- "email": "gprogrammer@163.com"
- },
- "record": {
- "CNAME": "gpchn.pages.dev"
- }
-}
diff --git a/domains/graphql.json b/domains/graphql.json
deleted file mode 100644
index c8eb4c2b8..000000000
--- a/domains/graphql.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Amir-Lotfi",
- "email": "amir79976@gmail.com"
- },
-
- "record": {
- "A": ["136.243.109.199"]
- }
-}
diff --git a/domains/groznyogor.json b/domains/groznyogor.json
deleted file mode 100644
index 082f36a6c..000000000
--- a/domains/groznyogor.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ogorfolio",
- "email": "swiatpaczek@gmail.com"
- },
- "record": {
- "CNAME": "groznyogor.github.io.opts-https.redirect.center"
- }
-}
diff --git a/domains/grusio.json b/domains/grusio.json
index c908dac0d..96e9fa8ba 100644
--- a/domains/grusio.json
+++ b/domains/grusio.json
@@ -3,7 +3,6 @@
"username": "mattiagrusio",
"email": "mattiagrusio@gmail.com"
},
-
"record": {
"A": ["2.231.198.113"]
}
diff --git a/domains/gruu.json b/domains/gruu.json
index 031eea1a9..4fb62414f 100644
--- a/domains/gruu.json
+++ b/domains/gruu.json
@@ -4,7 +4,7 @@
"email": "tirisxz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/gskaff.json b/domains/gskaff.json
new file mode 100644
index 000000000..c136d65cc
--- /dev/null
+++ b/domains/gskaff.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gevendra115",
+ "email": "bablutanwar160@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/guilhem.json b/domains/guilhem.json
deleted file mode 100644
index d94522613..000000000
--- a/domains/guilhem.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Iryonis",
- "email": "guilhem-bonnefous@etu.u-bordeaux.fr"
- },
- "record": {
- "A": ["116.203.127.206"]
- }
-}
diff --git a/domains/gunethra.json b/domains/gunethra.json
index 34cd3874d..bdff37f3b 100644
--- a/domains/gunethra.json
+++ b/domains/gunethra.json
@@ -4,7 +4,7 @@
"email": "gunethrarp1@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/guptasiddhant.json b/domains/guptasiddhant.json
deleted file mode 100644
index a5a9b35b7..000000000
--- a/domains/guptasiddhant.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Is Dev domain for Siddhant GUPTA",
- "repo": "https://github.com/guptasiddhant/guptasiddhant",
- "owner": {
- "username": "GuptaSiddhant",
- "email": "me@guptasiddhant.com"
- },
- "record": {
- "URL": "http://guptasiddhant.com"
- }
-}
diff --git a/domains/gurkirat.json b/domains/gurkirat.json
new file mode 100644
index 000000000..d483e6f65
--- /dev/null
+++ b/domains/gurkirat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gurkiratz",
+ "email": "singh.gurkirat2707@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gurubhai.json b/domains/gurubhai.json
index bd3a9672d..8d3b3dcf9 100644
--- a/domains/gurubhai.json
+++ b/domains/gurubhai.json
@@ -4,7 +4,7 @@
"email": "sahoogurucharan00@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": [
"mx1.improvmx.com",
"mx2.improvmx.com"
diff --git a/domains/gurubot.json b/domains/gurubot.json
index 813932e1f..eacdd0151 100644
--- a/domains/gurubot.json
+++ b/domains/gurubot.json
@@ -4,7 +4,7 @@
"email": "sahoogurucharan00@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/guyen.json b/domains/guyen.json
index 0cacdad5e..dc9a1a6e8 100644
--- a/domains/guyen.json
+++ b/domains/guyen.json
@@ -4,7 +4,7 @@
"email": "commanderguyen@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/h4sh.json b/domains/h4sh.json
new file mode 100644
index 000000000..80175ae0f
--- /dev/null
+++ b/domains/h4sh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Master290",
+ "email": "contact@rzx.lol"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hackerman.json b/domains/hackerman.json
new file mode 100644
index 000000000..62dacdc06
--- /dev/null
+++ b/domains/hackerman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AviDevs31",
+ "email": "josealbertotaverazz@gmail.com"
+ },
+ "record": {
+ "CNAME": "avidevs31.github.io"
+ }
+}
diff --git a/domains/imekachi.json b/domains/hackpig520.json
similarity index 52%
rename from domains/imekachi.json
rename to domains/hackpig520.json
index 34893a08e..8f3286541 100644
--- a/domains/imekachi.json
+++ b/domains/hackpig520.json
@@ -1,9 +1,8 @@
{
"owner": {
- "username": "imekachi",
- "email": "imekachi@gmail.com"
+ "username": "xiaozhu2007",
+ "email": "lz19986912007@163.com"
},
-
"record": {
"CNAME": "hashnode.network"
}
diff --git a/domains/hadi.json b/domains/hadi.json
deleted file mode 100644
index 82074acfa..000000000
--- a/domains/hadi.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Nystrex's Personal Website",
- "repo": "https://github.com/Nystrex",
- "owner": {
- "username": "Nystrex",
- "email": "hadi@nystrex.com"
- },
- "record": {
- "CNAME": "nystrex.com"
- }
-}
diff --git a/domains/haiko.json b/domains/haiko.json
new file mode 100644
index 000000000..3c4691f39
--- /dev/null
+++ b/domains/haiko.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "i-Ac1D-i",
+ "email": "acidondiscord99@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/halelui.json b/domains/halelui.json
index f5abf567d..3a1e4dd00 100644
--- a/domains/halelui.json
+++ b/domains/halelui.json
@@ -4,7 +4,7 @@
"email": "heroku.1st.dyno@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/halil.json b/domains/halil.json
index 985ab99b5..b158aaa9e 100644
--- a/domains/halil.json
+++ b/domains/halil.json
@@ -4,7 +4,7 @@
"email": "halil_ismail@yahoo.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/halokod.json b/domains/halokod.json
index c2595f224..8a226ac18 100644
--- a/domains/halokod.json
+++ b/domains/halokod.json
@@ -4,7 +4,7 @@
"email": "kralpasa1993@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hans0805.json b/domains/hans0805.json
new file mode 100644
index 000000000..59dc21e5e
--- /dev/null
+++ b/domains/hans0805.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HansHans135",
+ "email": "ccoccc14@gmail.com"
+ },
+ "record": {
+ "CNAME": "hans0805.me"
+ }
+}
diff --git a/domains/happyenderman.json b/domains/happyenderman.json
index 891654ba4..3a963a66c 100644
--- a/domains/happyenderman.json
+++ b/domains/happyenderman.json
@@ -4,7 +4,7 @@
"email": ""
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hara.json b/domains/hara.json
new file mode 100644
index 000000000..3c79f763e
--- /dev/null
+++ b/domains/hara.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "HaraDesu",
+ "email": "aqjbgr09@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hariienesh.json b/domains/hariienesh.json
index 5b51b7ced..40749ad91 100644
--- a/domains/hariienesh.json
+++ b/domains/hariienesh.json
@@ -4,7 +4,7 @@
"email": "hariienesh.cool@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/harish.json b/domains/harish.json
deleted file mode 100644
index b3aa7ccbb..000000000
--- a/domains/harish.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "email": "harishbb168@gmail.com",
- "username": "harish"
- },
- "description": "My portfolio website",
- "repo": "https://github.com/HarishB167/hs-app",
- "record": {
- "CNAME": "hsapp.onrender.com"
- }
-}
diff --git a/domains/harry456.json b/domains/harry456.json
new file mode 100644
index 000000000..efcc66843
--- /dev/null
+++ b/domains/harry456.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Harry4567",
+ "email": "rientunr@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/harrystudy.json b/domains/harrystudy.json
index 2c19e31c1..1245acb0c 100644
--- a/domains/harrystudy.json
+++ b/domains/harrystudy.json
@@ -4,7 +4,7 @@
"email": "dylanluong3@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/harrythenegro.json b/domains/harrythenegro.json
index 2c19e31c1..1245acb0c 100644
--- a/domains/harrythenegro.json
+++ b/domains/harrythenegro.json
@@ -4,7 +4,7 @@
"email": "dylanluong3@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/harsh.json b/domains/harsh.json
deleted file mode 100644
index 48d4cbde3..000000000
--- a/domains/harsh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Riotly",
- "email": "email@oharsh.vip"
- },
- "record": {
- "URL": "https://oharsh.vip"
- }
-}
diff --git a/domains/harshrai.json b/domains/harshrai.json
index 41023df24..88c70f271 100644
--- a/domains/harshrai.json
+++ b/domains/harshrai.json
@@ -4,7 +4,7 @@
"email": "harshrai1023@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shreyaprincess.json b/domains/haruki.json
similarity index 100%
rename from domains/shreyaprincess.json
rename to domains/haruki.json
diff --git a/domains/haruki.py.json b/domains/haruki.py.json
new file mode 100644
index 000000000..f22198314
--- /dev/null
+++ b/domains/haruki.py.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anandkrishna34",
+ "email": "aanandkrishna344@gmail.com"
+ },
+ "record": {
+ "CNAME": "proxy.private.danbot.host"
+ }
+}
diff --git a/domains/harukipy.json b/domains/harukipy.json
new file mode 100644
index 000000000..b499b191b
--- /dev/null
+++ b/domains/harukipy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Anandkrishna34",
+ "email": "aanandkrishna344@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/havoc.json b/domains/havoc.json
new file mode 100644
index 000000000..af635e002
--- /dev/null
+++ b/domains/havoc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "d7dx",
+ "email": "d7dx@proton.me"
+ },
+ "record": {
+ "CNAME": "d7dx.github.io"
+ }
+}
diff --git a/domains/hay.json b/domains/hay.json
deleted file mode 100644
index 94a10441b..000000000
--- a/domains/hay.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "RayhanADev's Website!",
- "repo": "https://github.com/rayhanadev/Personal-Website-v3",
- "owner": {
- "username": "rayhanadev",
- "email": "rayhanadev@protonmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/hazelnut.json b/domains/hazelnut.json
index ae5caae10..a61366b02 100644
--- a/domains/hazelnut.json
+++ b/domains/hazelnut.json
@@ -4,7 +4,7 @@
"email": "hazelnutzhoney@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hazwana.json b/domains/hazwana.json
index 3e78f2175..08fba89fb 100644
--- a/domains/hazwana.json
+++ b/domains/hazwana.json
@@ -4,7 +4,7 @@
"email": "n.hazwana@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hchs-bot.json b/domains/hchs-bot.json
index fad9aecec..c04ade86e 100644
--- a/domains/hchs-bot.json
+++ b/domains/hchs-bot.json
@@ -2,10 +2,10 @@
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
- "twitter": "ljimmyyo45639462",
+ "twitter": "jimmyyo45639462",
"discord": "xiaoxi_tw#0"
},
"record": {
- "A": ["60.249.193.112"]
+ "CNAME": "tw-node2.thisalesa.eu.org"
}
}
diff --git a/domains/he.json b/domains/he.json
deleted file mode 100644
index 29c9c121a..000000000
--- a/domains/he.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "lucidwave",
- "email": "",
- "twitter": "Pumao3"
- },
- "record": {
- "URL": "https://x3.lol"
- }
-}
diff --git a/domains/hecterbonha.json b/domains/hecterbonha.json
index 3d5ed03cd..a950457cf 100644
--- a/domains/hecterbonha.json
+++ b/domains/hecterbonha.json
@@ -4,7 +4,7 @@
"email": "untungsoandryanto@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hehe.json b/domains/hehe.json
index 760ab6b4d..dce0e2fde 100644
--- a/domains/hehe.json
+++ b/domains/hehe.json
@@ -4,7 +4,7 @@
"email": "ramadanebrahim791@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/heindale.json b/domains/heindale.json
new file mode 100644
index 000000000..3f3ec6c2d
--- /dev/null
+++ b/domains/heindale.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Heindale",
+ "email": "danilanil123@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hekker.json b/domains/hekker.json
index 271862721..31549d359 100644
--- a/domains/hekker.json
+++ b/domains/hekker.json
@@ -4,7 +4,7 @@
"email": "akhil.ambati@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/helge.json b/domains/helge.json
deleted file mode 100644
index f58243060..000000000
--- a/domains/helge.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "personal website at some point, now pointing to a VPS I own",
- "repo": "https://github.com/iohansson/kldcs",
- "owner": {
- "username": "iohansson",
- "email": "root@helge8.one"
- },
- "record": {
- "CNAME": "helge8.cc"
- }
-}
diff --git a/domains/hellaz.json b/domains/hellaz.json
new file mode 100644
index 000000000..5075a2840
--- /dev/null
+++ b/domains/hellaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hellaz",
+ "email": "hellaz.team@gmail.com"
+ },
+ "record": {
+ "URL": "https://hellaz.net"
+ }
+}
diff --git a/domains/hello.json b/domains/hello.json
deleted file mode 100644
index 88fcfb3e0..000000000
--- a/domains/hello.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "personal website",
- "repo": "https://github.com/kldcs/kldcs",
- "owner": {
- "username": "kldcs",
- "email": "kldcsces@outlook.com"
- },
- "record": {
- "CNAME": "7d4f526a-194d-4047-bb0e-93af7aa4a16d.id.repl.co"
- }
-}
diff --git a/domains/hello.qqg00.json b/domains/hello.qqg00.json
index dd140730e..1651c390a 100644
--- a/domains/hello.qqg00.json
+++ b/domains/hello.qqg00.json
@@ -4,7 +4,7 @@
"email": "vx2dsk@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hellscaped.json b/domains/hellscaped.json
index b86506719..d35680282 100644
--- a/domains/hellscaped.json
+++ b/domains/hellscaped.json
@@ -4,7 +4,7 @@
"email": "tappsyo@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/helman.json b/domains/helman.json
deleted file mode 100644
index 0d7e70887..000000000
--- a/domains/helman.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "helman.is-a.dev",
- "owner": {
- "username": "helman",
- "email": "all22.helman@gmail.com"
- },
- "record": {
- "CNAME": "blog.heldes.com"
- }
-}
diff --git a/domains/hemal.json b/domains/hemal.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/hemal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hemalmondal.json b/domains/hemalmondal.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/hemalmondal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hemang.json b/domains/hemang.json
new file mode 100644
index 000000000..a6c54d873
--- /dev/null
+++ b/domains/hemang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Zemerik",
+ "email": "zemerikY@gmail.com"
+ },
+ "record": {
+ "URL": "https://zemerik.is-a.dev"
+ }
+}
diff --git a/domains/henrymartin.json b/domains/henrymartin.json
deleted file mode 100644
index 3ec3cdb0a..000000000
--- a/domains/henrymartin.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "HENRYMARTIN5",
- "email": "henrysjmartinthesecond@gmail.com"
- },
- "record": {
- "CNAME": "833145ac-c162-4931-b063-b77d351c829f.id.repl.co"
- }
-}
diff --git a/domains/hex4.json b/domains/hex4.json
index d2b2cb0c2..250bb45fa 100644
--- a/domains/hex4.json
+++ b/domains/hex4.json
@@ -4,7 +4,7 @@
"email": "nenex54@pm.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hexxy.json b/domains/hexxy.json
deleted file mode 100644
index a9e8ff105..000000000
--- a/domains/hexxy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "heatherdevx",
- "email": "heather.sysdev@gmail.com"
- },
-
- "record": {
- "A": ["129.151.221.53"]
- }
-}
diff --git a/domains/heydaristo.json b/domains/heydaristo.json
new file mode 100644
index 000000000..6e6f9e1ef
--- /dev/null
+++ b/domains/heydaristo.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "heydaristo",
+ "email": "heydaristo@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/heyjumanji.json b/domains/heyjumanji.json
index a1fd687e9..0f46636e9 100644
--- a/domains/heyjumanji.json
+++ b/domains/heyjumanji.json
@@ -4,7 +4,7 @@
"email": "madhuchutiya.unhinge650@silomails.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hi.tnt.json b/domains/hi.tnt.json
deleted file mode 100644
index 4577efade..000000000
--- a/domains/hi.tnt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SebTNT",
- "email": "turquoisetntmultimedia@gmail.com"
- },
- "record": {
- "URL": "https://sites.google.com/view/hi-art-web"
- }
-}
diff --git a/domains/hidden.json b/domains/hidden.json
new file mode 100644
index 000000000..64bacb24e
--- /dev/null
+++ b/domains/hidden.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TheHiddenEvil",
+ "email": "hijohn06@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hideko.json b/domains/hideko.json
new file mode 100644
index 000000000..214efb721
--- /dev/null
+++ b/domains/hideko.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hideko-dev",
+ "email": "hideko332200@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hieu.json b/domains/hieu.json
deleted file mode 100644
index 3b872d1cb..000000000
--- a/domains/hieu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "huzely",
- "email": "hieu65175@gmail.com"
- },
- "record": {
- "A": ["161.97.168.211"]
- }
-}
diff --git a/domains/hieudmg.json b/domains/hieudmg.json
deleted file mode 100644
index 76e9ad40b..000000000
--- a/domains/hieudmg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "hieudmg",
- "email": "hieudmg@gmail.com"
- },
- "record": {
- "CNAME": "hieudmg.pages.dev"
- }
-}
diff --git a/domains/higherror.json b/domains/higherror.json
deleted file mode 100644
index e6304dbb8..000000000
--- a/domains/higherror.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "HighError Portfolio",
- "repo": "https://github.com/higherror/higherror.github.io",
- "owner": {
- "username": "higherror",
- "email": "hierrorua@gmail.com",
- "twitter": "higherrorua"
- },
- "record": {
- "CNAME": "higherror.github.io"
- }
-}
diff --git a/domains/hikari.json b/domains/hikari.json
deleted file mode 100644
index 2521f5639..000000000
--- a/domains/hikari.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "hikariatama",
- "email": "elusloodus@mail.ru"
- },
-
- "record": {
- "CNAME": "hikariatama.ru"
- }
-}
diff --git a/domains/hilmysakti.json b/domains/hilmysakti.json
new file mode 100644
index 000000000..e0918a503
--- /dev/null
+++ b/domains/hilmysakti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HilmySakti",
+ "email": "abandel09@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/himanshusardana.json b/domains/himanshusardana.json
index d67350783..b0fb03a06 100644
--- a/domains/himanshusardana.json
+++ b/domains/himanshusardana.json
@@ -4,7 +4,7 @@
"email": "himanshusardana2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hipo.json b/domains/hipo.json
new file mode 100644
index 000000000..296e02cd4
--- /dev/null
+++ b/domains/hipo.json
@@ -0,0 +1,11 @@
+{
+ "description": "badowhp blog page",
+ "repo": "https://github.com/badowhp/badowhp.github.io",
+ "owner": {
+ "username": "badowhp",
+ "email": "badowhp@gmail.com"
+ },
+ "record": {
+ "CNAME": "badowhp.github.io"
+ }
+}
diff --git a/domains/hiro.json b/domains/hiro.json
index 65c422b56..2d5225d7b 100644
--- a/domains/hiro.json
+++ b/domains/hiro.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website for now",
- "repo": "https://github.com/XxHiroTTVxX",
"owner": {
"username": "XxHiroTTVxX",
- "email": "xxhirottvxx@gmail.com"
+ "email": "phoenixmerlinwolf894@gmail.com"
},
"record": {
- "CNAME": "incognito-20-production-9fe2.up.railway.app"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/hmon.json b/domains/hmon.json
deleted file mode 100644
index bc827d503..000000000
--- a/domains/hmon.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "hackermondev",
- "email": "daniel@daniel.is-a.dev"
- },
- "record": {
- "CNAME": "Ultraviolet-Node-3.hackermondev.repl.co"
- }
-}
diff --git a/domains/hntr.json b/domains/hntr.json
index 83474d31e..05aaaba31 100644
--- a/domains/hntr.json
+++ b/domains/hntr.json
@@ -4,7 +4,7 @@
"email": "forsynapse123@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hod.json b/domains/hod.json
deleted file mode 100644
index ff7a24bd3..000000000
--- a/domains/hod.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "hod's primary website.",
- "repo": "https://github.com/hodss/hodssxyz",
- "owner": {
- "username": "hodss",
- "email": "hod@hodss.xyz",
- "twitter": "hodss_",
- "discord": "hod#2311"
- },
- "record": {
- "URL": "https://hodss.xyz/?refer=is-a-dev"
- }
-}
diff --git a/domains/holgeb.json b/domains/holgeb.json
index 4c272d6f7..aa2798598 100644
--- a/domains/holgeb.json
+++ b/domains/holgeb.json
@@ -4,7 +4,7 @@
"email": "niklas.holke@gmx.de"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/host.dexo.json b/domains/host.dexo.json
deleted file mode 100644
index ba35b3c3c..000000000
--- a/domains/host.dexo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DeXoHigh",
- "email": "dexo1337@pm.me"
- },
- "record": {
- "A": ["54.93.225.90"]
- }
-}
diff --git a/domains/hosting-test.json b/domains/hosting-test.json
index 4f6c3f917..efb6f0325 100644
--- a/domains/hosting-test.json
+++ b/domains/hosting-test.json
@@ -4,7 +4,7 @@
"email": "is-a-dev@win11react.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/hosts.json b/domains/hosts.json
index df90b568a..63b4bc0bd 100644
--- a/domains/hosts.json
+++ b/domains/hosts.json
@@ -4,6 +4,8 @@
"email": "phenax5@gmail.com"
},
"record": {
- "CNAME": "dns.beadman-network.com"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
+ "MX": ["mailx.is-a.dev"]
}
}
diff --git a/domains/hotdevs.json b/domains/hotdevs.json
index 51c54fde5..88b2f462d 100644
--- a/domains/hotdevs.json
+++ b/domains/hotdevs.json
@@ -4,7 +4,7 @@
"email": "samzagamer4@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hotmayonaise.json b/domains/hotmayonaise.json
new file mode 100644
index 000000000..5c3596baf
--- /dev/null
+++ b/domains/hotmayonaise.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hotmayonaise",
+ "email": "roby123ted@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/houlton.json b/domains/houlton.json
index 8416f290e..7a22a4955 100644
--- a/domains/houlton.json
+++ b/domains/houlton.json
@@ -4,7 +4,7 @@
"email": "ignhoulton@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/houxiaozhao.json b/domains/houxiaozhao.json
index 219f19c40..e21a4f4bc 100644
--- a/domains/houxiaozhao.json
+++ b/domains/houxiaozhao.json
@@ -4,7 +4,7 @@
"email": "891855179@qq.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hqmt.json b/domains/hqmt.json
index f936119b4..911a64a24 100644
--- a/domains/hqmt.json
+++ b/domains/hqmt.json
@@ -4,7 +4,7 @@
"email": "hoangquocminhthien@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hqmtgaming.json b/domains/hqmtgaming.json
index f936119b4..911a64a24 100644
--- a/domains/hqmtgaming.json
+++ b/domains/hqmtgaming.json
@@ -4,7 +4,7 @@
"email": "hoangquocminhthien@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hrushal.json b/domains/hrushal.json
deleted file mode 100644
index e5c0c4c88..000000000
--- a/domains/hrushal.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Hrushal's Portfolio Website",
- "repo": "https://github.com/Hrushal-Nikhare/HrushalNikhare-v2",
- "owner": {
- "username": "Hrushal-Nikhare",
- "email": "Hrushalnikhare@gmail.com",
- "discord": "Another_Random_Eevee#7237"
- },
- "record": {
- "CNAME": "hrushal.ml"
- }
-}
diff --git a/domains/hs50.json b/domains/hs50.json
deleted file mode 100644
index 3cfef85ee..000000000
--- a/domains/hs50.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Another way to visit my website.",
- "repo": "https://github.com/Naibuu/website",
- "owner": {
- "username": "Naibuu",
- "email": "contact@hs50.cc"
- },
- "record": {
- "CNAME": "hs50.cc"
- }
-}
diff --git a/domains/httphypixelnet.json b/domains/httphypixelnet.json
index 6bf9f5a3f..be6dd335e 100644
--- a/domains/httphypixelnet.json
+++ b/domains/httphypixelnet.json
@@ -4,7 +4,7 @@
"email": "intenstudios369@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hugovidafe.json b/domains/hugovidafe.json
deleted file mode 100644
index 75a90de42..000000000
--- a/domains/hugovidafe.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Hugovidafe's website",
- "repo": "https://github.com/Hugovidafe-OSS",
- "owner": {
- "username": "Hugovidafe",
- "email": "hugo@hugovidafe.dev",
- "twitter": "Hugovidafe"
- },
- "record": {
- "URL": "https://hugovidafe.dev"
- }
-}
diff --git a/domains/human.json b/domains/human.json
new file mode 100644
index 000000000..d816001f7
--- /dev/null
+++ b/domains/human.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Jonathan0827",
+ "email": "limjunehyeop@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hunai.json b/domains/hunai.json
deleted file mode 100644
index d5e74e302..000000000
--- a/domains/hunai.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Hunter2809",
- "email": "auser929129@gmail.com"
- },
- "record": {
- "A": ["75.2.69.226"]
- }
-}
diff --git a/domains/hunter.json b/domains/hunter.json
deleted file mode 100644
index 7e7c30008..000000000
--- a/domains/hunter.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Hunter Website",
- "repo": "https://github.com/itshunterr",
- "owner": {
- "username": "Itshunterr",
- "email": "itshunterr@protonmail.com"
- },
- "record": {
- "A": ["76.76.21.21"]
- }
-}
diff --git a/domains/huyduc.json b/domains/huyduc.json
new file mode 100644
index 000000000..77392e85c
--- /dev/null
+++ b/domains/huyduc.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "buihuyduc123",
+ "email": "buihuyduckn@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/huzaifa.json b/domains/huzaifa.json
new file mode 100644
index 000000000..6491e9f65
--- /dev/null
+++ b/domains/huzaifa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SyntaxErrorSolos",
+ "email": "tcs223647@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hvlxh.json b/domains/hvlxh.json
index 0a38e3699..8c37c5581 100644
--- a/domains/hvlxh.json
+++ b/domains/hvlxh.json
@@ -6,6 +6,6 @@
},
"record": {
- "URL": "https://hvlxh.tk"
+ "URL": "https://hvlxh.vercel.app"
}
}
diff --git a/domains/hvn.json b/domains/hvn.json
index d9f28916f..103021ac7 100644
--- a/domains/hvn.json
+++ b/domains/hvn.json
@@ -4,7 +4,7 @@
"email": "abxisxekpanda@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hyderite.json b/domains/hyderite.json
deleted file mode 100644
index 0ad231d0b..000000000
--- a/domains/hyderite.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Hyderite",
- "email": "hyderiteyt@gmail.com"
- },
- "record": {
- "CNAME": "df204146-7b3d-4adf-8150-d9cbf33a4a73.id.repl.co"
- }
-}
diff --git a/domains/hydrogen.json b/domains/hydrogen.json
new file mode 100644
index 000000000..4edc90efb
--- /dev/null
+++ b/domains/hydrogen.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Coding4Hours",
+ "email": "neealdon3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hyno.json b/domains/hyno.json
index f9b5121c7..f673873a4 100644
--- a/domains/hyno.json
+++ b/domains/hyno.json
@@ -4,7 +4,7 @@
"email": "hynoyt.ir@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hyperhacker.json b/domains/hyperhacker.json
deleted file mode 100644
index 6b3d96414..000000000
--- a/domains/hyperhacker.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Portfolio website for HyperGithubForm",
- "repo": "https://replit.com/@HyperHacker/HyperHacker",
- "owner": {
- "username": "HyperGithubForm",
- "email": "",
- "discord": "HyperHacker#3433"
- },
- "record": {
- "CNAME": "988a5d1f-c278-44ca-9b99-34f9995ed9ba.id.repl.co"
- }
-}
diff --git a/domains/hypernexus.json b/domains/hypernexus.json
index 36451cae8..c9a36e211 100644
--- a/domains/hypernexus.json
+++ b/domains/hypernexus.json
@@ -4,7 +4,7 @@
"email": "phamvansau234@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/hzf.json b/domains/hzf.json
deleted file mode 100644
index 57e13a395..000000000
--- a/domains/hzf.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "huhao0208",
- "email": "123huzhifeng@163.com"
- },
- "record": {
- "A": ["124.90.69.145"]
- }
-}
diff --git a/domains/i10.json b/domains/i10.json
deleted file mode 100644
index 018e9954a..000000000
--- a/domains/i10.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "JavaScythe",
- "email": "slashmod6@gmail.com"
- },
- "record": {
- "A": ["34.110.138.177"]
- }
-}
diff --git a/domains/iagobruno.json b/domains/iagobruno.json
new file mode 100644
index 000000000..a82e1440e
--- /dev/null
+++ b/domains/iagobruno.json
@@ -0,0 +1,12 @@
+{
+ "description": "My portfolio website",
+ "repo": "https://github.com/iagobruno/iagobruno.github.io",
+ "owner": {
+ "username": "iagobruno",
+ "email": "iagobruno.dev@gmail.com",
+ "twitter": "iagotico"
+ },
+ "record": {
+ "CNAME": "iagobruno.github.io"
+ }
+}
diff --git a/domains/iammelvink.json b/domains/iammelvink.json
new file mode 100644
index 000000000..4e735b50b
--- /dev/null
+++ b/domains/iammelvink.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iammelvink",
+ "email": "46846457+iammelvink@users.noreply.github.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/iamthedefender.json b/domains/iamthedefender.json
new file mode 100644
index 000000000..2590c6531
--- /dev/null
+++ b/domains/iamthedefender.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "IamTheDefender",
+ "discord": "iamthedefender",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://portfolio-one-ecru-11.vercel.app"
+ }
+}
+
diff --git a/domains/iamunixtz.json b/domains/iamunixtz.json
new file mode 100644
index 000000000..0ee6b86bd
--- /dev/null
+++ b/domains/iamunixtz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iamunixtz",
+ "email": "unixtz@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/iansalazar.json b/domains/iansalazar.json
deleted file mode 100644
index 38e688cc9..000000000
--- a/domains/iansalazar.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Ian Salazar's portfolio website",
- "repo": "https://github.com/dertrockx/freelance-frontend-app",
- "owner": {
- "username": "iisalazar",
- "email": "iansalazar67@gmail.com"
- },
- "record": {
- "CNAME": "freelance-frontend-app-production.up.railway.app"
- }
-}
diff --git a/domains/iceed.json b/domains/iceed.json
index 0327e8e2c..1db3e314a 100644
--- a/domains/iceed.json
+++ b/domains/iceed.json
@@ -4,7 +4,7 @@
"email": "mj@naous.eu.org"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/icehead.json b/domains/icehead.json
index 490cfebf0..79da87deb 100644
--- a/domains/icehead.json
+++ b/domains/icehead.json
@@ -4,7 +4,7 @@
"email": "heads.ice@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["mx1.improvmx.com","mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/icevixen.json b/domains/icevixen.json
index 11ce7ceb0..a7d7f03da 100644
--- a/domains/icevixen.json
+++ b/domains/icevixen.json
@@ -4,7 +4,7 @@
"email": "f2v74yt@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/icmecodes.json b/domains/icmecodes.json
new file mode 100644
index 000000000..0c8158365
--- /dev/null
+++ b/domains/icmecodes.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "icmecodes",
+ "email": "icmedev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/idkmaxii.json b/domains/idkmaxii.json
new file mode 100644
index 000000000..177ce65ab
--- /dev/null
+++ b/domains/idkmaxii.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Molret",
+ "email": "maximiliano.moldenhauer.r@marygraham.cl"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/idoli.json b/domains/idoli.json
index ce6510fe4..f1c54b244 100644
--- a/domains/idoli.json
+++ b/domains/idoli.json
@@ -4,7 +4,7 @@
"email": "idoinschool@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/idrkwhotbh.json b/domains/idrkwhotbh.json
new file mode 100644
index 000000000..71d8b86f5
--- /dev/null
+++ b/domains/idrkwhotbh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "idrkwhotbh",
+ "email": "nitronoobbros1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ihk.json b/domains/ihk.json
index fa05957b0..1d64d85fd 100644
--- a/domains/ihk.json
+++ b/domains/ihk.json
@@ -4,7 +4,7 @@
"email": "simonecresswell@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ihkgpt.json b/domains/ihkgpt.json
index fa05957b0..1d64d85fd 100644
--- a/domains/ihkgpt.json
+++ b/domains/ihkgpt.json
@@ -4,7 +4,7 @@
"email": "simonecresswell@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ihsan.json b/domains/ihsan.json
deleted file mode 100644
index 055d3d0cf..000000000
--- a/domains/ihsan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "XzFrosT",
- "email": "mschodeihsan@gmail.com"
- },
- "record": {
- "CNAME": "ihsanhardiansah.me"
- }
-}
diff --git a/domains/ikd.json b/domains/ikd.json
deleted file mode 100644
index 299cae2f6..000000000
--- a/domains/ikd.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "its-id",
- "email": "",
- "twitter": "its_ikD"
- },
-
- "record": {
- "CNAME": "portfolio-main-production.up.railway.app"
- }
-}
diff --git a/domains/ilakian.json b/domains/ilakian.json
index a0acb6a06..f0cceb359 100644
--- a/domains/ilakian.json
+++ b/domains/ilakian.json
@@ -4,7 +4,7 @@
"email": "ilakiancs@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/imad.json b/domains/imad.json
index e76d3f385..a6f00d379 100644
--- a/domains/imad.json
+++ b/domains/imad.json
@@ -1,11 +1,13 @@
{
- "description": "Imad",
- "repo": "https://github.com/imadboy89",
- "owner": {
- "username": "imadboy89",
- "email": "imad.kh@outlook.com"
- },
- "record": {
- "A": ["20.101.44.225"]
- }
+ "description": "Imad",
+ "repo": "https://github.com/imadboy89",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "A": [
+ "20.101.44.225"
+ ]
+ }
}
diff --git a/domains/imat.json b/domains/imat.json
index e58a3c5c1..b97612952 100644
--- a/domains/imat.json
+++ b/domains/imat.json
@@ -6,8 +6,6 @@
"email": "adam.essakhi16+github@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
- "MX": ["mailx.is-a.dev"]
+ "CNAME": "sites.bootstrapstudio.io"
}
}
diff --git a/domains/imd.json b/domains/imd.json
index e76d3f385..a6f00d379 100644
--- a/domains/imd.json
+++ b/domains/imd.json
@@ -1,11 +1,13 @@
{
- "description": "Imad",
- "repo": "https://github.com/imadboy89",
- "owner": {
- "username": "imadboy89",
- "email": "imad.kh@outlook.com"
- },
- "record": {
- "A": ["20.101.44.225"]
- }
+ "description": "Imad",
+ "repo": "https://github.com/imadboy89",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "A": [
+ "20.101.44.225"
+ ]
+ }
}
diff --git a/domains/imdew.json b/domains/imdew.json
new file mode 100644
index 000000000..4b27eb5ce
--- /dev/null
+++ b/domains/imdew.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dewiscool",
+ "email": "zerolikecyber.2005@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/imdsamimakhter.json b/domains/imdsamimakhter.json
index 85ed004a4..24a0cb635 100644
--- a/domains/imdsamimakhter.json
+++ b/domains/imdsamimakhter.json
@@ -4,7 +4,7 @@
"email": "mdsamimakhter2001@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/img.json b/domains/img.json
deleted file mode 100644
index db8921c2a..000000000
--- a/domains/img.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a website to save some images",
- "repo": "https://github.com/leecheeyong/leecheeyong",
- "owner": {
- "username": "leecheeyong",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "dd04023a-b6e9-4158-858e-bad08e56f201.id.repl.co"
- }
-}
diff --git a/domains/img.suki.json b/domains/img.suki.json
index d40edd232..2f1cd119d 100644
--- a/domains/img.suki.json
+++ b/domains/img.suki.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "CNAME": "cb594ad8-2514-45d4-94a7-538476039dec.id.repl.co"
+ "username": "SukiPlayz",
+ "email": "sukimayoo@outlook.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
}
-}
diff --git a/domains/immails.json b/domains/immails.json
deleted file mode 100644
index e8967f3b5..000000000
--- a/domains/immails.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ImMAils",
- "email": "anton140315@gmail.com",
- "discord": "I'mMAils#1238"
- },
- "description": "Why? To share my projects and other stuff. Like discord bot, node.js modules or even games!",
- "record": {
- "CNAME": "f0476060.xsph.ru"
- }
-}
diff --git a/domains/impsycho.json b/domains/impsycho.json
deleted file mode 100644
index 2cb184373..000000000
--- a/domains/impsycho.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "OpAayush",
- "email": "aayushmagrawal@gmail.com"
- },
- "record": {
- "CNAME": "27b81edb-5fc7-4c0c-82c5-2f96e325f113.id.repl.co"
- }
-}
diff --git a/domains/imran.json b/domains/imran.json
index 931f387ff..4c4488762 100644
--- a/domains/imran.json
+++ b/domains/imran.json
@@ -4,7 +4,7 @@
"email": "romeorajkumar098@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/imron.json b/domains/imron.json
new file mode 100644
index 000000000..ad97df8d3
--- /dev/null
+++ b/domains/imron.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BangMbon",
+ "email": "dci.reborn@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/imsudip.json b/domains/imsudip.json
deleted file mode 100644
index 6e88e8e8d..000000000
--- a/domains/imsudip.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A personal portfolio site for all my projects",
- "repo": "https://github.com/imsudip/portfolio",
- "owner": {
- "username": "imsudip",
- "email": "sudipghosh9333@gmail.com"
- },
- "record": {
- "URL": "https://portfolio.imsudip.ml"
- }
-}
diff --git a/domains/imu.json b/domains/imu.json
index 931f387ff..4c4488762 100644
--- a/domains/imu.json
+++ b/domains/imu.json
@@ -4,7 +4,7 @@
"email": "romeorajkumar098@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/imzihad21.json b/domains/imzihad21.json
deleted file mode 100644
index 2caf19341..000000000
--- a/domains/imzihad21.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "IMZihad21",
- "email": "imzihad@gmail.com"
- },
- "record": {
- "CNAME": "ec2-13-250-29-91.ap-southeast-1.compute.amazonaws.com"
- }
-}
diff --git a/domains/in3pire.json b/domains/in3pire.json
new file mode 100644
index 000000000..26396c245
--- /dev/null
+++ b/domains/in3pire.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TrivCodez",
+ "email": "Jayeshpoudel+ha@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/inam.json b/domains/inam.json
index f81ae11d6..f6288eb57 100644
--- a/domains/inam.json
+++ b/domains/inam.json
@@ -4,7 +4,7 @@
"email": "inamvkd@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/indreshp135.json b/domains/indreshp135.json
new file mode 100644
index 000000000..261403222
--- /dev/null
+++ b/domains/indreshp135.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "indreshp135",
+ "email": "indreshp135@gmail.com"
+ },
+
+ "record": {
+ "A": ["144.24.138.210"]
+ }
+}
diff --git a/domains/infinitecode.json b/domains/infinitecode.json
deleted file mode 100644
index 025e1ae2f..000000000
--- a/domains/infinitecode.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Infinite's personal portfolio!",
- "owner": {
- "username": "InfiniteCode",
- "email": "infinitecode@infiniteco.de"
- },
- "record": {
- "URL": "https://infiniteco.de"
- }
-}
diff --git a/domains/infinitelearning.json b/domains/infinitelearning.json
deleted file mode 100644
index 1e74f15b9..000000000
--- a/domains/infinitelearning.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tiwlinkskwazeh",
- "email": "kwazehh@proton.me"
- },
- "record": {
- "A": ["18.215.144.92"]
- }
-}
diff --git a/domains/infinityhackers.json b/domains/infinityhackers.json
index fa05957b0..1d64d85fd 100644
--- a/domains/infinityhackers.json
+++ b/domains/infinityhackers.json
@@ -4,7 +4,7 @@
"email": "simonecresswell@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/infinityloop.json b/domains/infinityloop.json
new file mode 100644
index 000000000..3a57b4392
--- /dev/null
+++ b/domains/infinityloop.json
@@ -0,0 +1,12 @@
+{
+ "description": "Short link for sharing",
+ "repo": "https://github.com/InfinityLoop1/InfinityLoop",
+ "owner": {
+ "username": "InfinityLoop",
+ "email": "",
+ "discord": "infinityloopdev"
+ },
+ "record": {
+ "URL": "https://infinityloop1.netlify.app"
+ }
+}
diff --git a/domains/infinotiver.json b/domains/infinotiver.json
new file mode 100644
index 000000000..05a07be7d
--- /dev/null
+++ b/domains/infinotiver.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "prakarsh17",
+ "email": "prakarsh.3482@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/info.trung.json b/domains/info.trung.json
new file mode 100644
index 000000000..57f9a1944
--- /dev/null
+++ b/domains/info.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-info-website.pages.dev"
+ }
+}
diff --git a/domains/ink.json b/domains/ink.json
deleted file mode 100644
index b35ebbbd5..000000000
--- a/domains/ink.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "project docs",
- "repo": "https://github.com/leecheeyong/leecheeyong",
- "owner": {
- "username": "leecheeyong",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "eb916d53-6d53-4d03-98b4-06b9dd7352e7.id.repl.co"
- }
-}
diff --git a/domains/instantnoodles.json b/domains/instantnoodles.json
deleted file mode 100644
index 986cd8803..000000000
--- a/domains/instantnoodles.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "info@instantnoodles.is-a.dev",
- "repo": "https://github.com/NoodlesDev1/InstantNoodles-portfolio",
- "owner": {
- "username": "NoodlesDev1",
- "email": "info@InstantNoodles.is-a.dev"
- },
- "record": {
- "A": ["172.66.47.94", "172.66.44.162"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
- }
-}
diff --git a/domains/integr.json b/domains/integr.json
new file mode 100644
index 000000000..8c5e8f712
--- /dev/null
+++ b/domains/integr.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Page",
+ "repo": "https://github.com/Integr-0/integr-0.github.io",
+ "owner": {
+ "username": "Integr-0",
+ "email": "erik.reitbauer@outlook.de",
+ "discord": "integr_"
+ },
+ "record": {
+ "CNAME": "integr-0.github.io"
+ }
+}
diff --git a/domains/integra.json b/domains/integra.json
new file mode 100644
index 000000000..9dc9857e6
--- /dev/null
+++ b/domains/integra.json
@@ -0,0 +1,11 @@
+{
+ "owner":{
+ "username":"ruben-as",
+ "email":"ruben.aja.85@gmail.com"
+ },
+ "record":{
+ "A":[
+ "212.227.32.105"
+ ]
+ }
+}
diff --git a/domains/interstellar.json b/domains/interstellar.json
index 6c986115d..4941e43a1 100644
--- a/domains/interstellar.json
+++ b/domains/interstellar.json
@@ -4,7 +4,7 @@
"email": "pollardjackson@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/interstellar.ultrix.json b/domains/interstellar.ultrix.json
index 6c986115d..4941e43a1 100644
--- a/domains/interstellar.ultrix.json
+++ b/domains/interstellar.ultrix.json
@@ -4,7 +4,7 @@
"email": "pollardjackson@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ionetty.json b/domains/ionetty.json
deleted file mode 100644
index b40394c01..000000000
--- a/domains/ionetty.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Minecraft server n such.",
- "repo": "https://github.com/tootie112",
- "owner": {
- "username": "tootie112",
- "email": "",
- "discord": "Io.Netty#3118"
- },
- "record": {
- "A": ["65.21.160.210"]
- }
-}
diff --git a/domains/ip6.omne.json b/domains/ip6.omne.json
deleted file mode 100644
index 9cb6ca7ef..000000000
--- a/domains/ip6.omne.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "owner": {
- "username": "notomne",
- "email": "charmquark314@proton.me"
- },
- "description": "omne.is-a.dev, but IPv6-only",
- "record": {
- "AAAA": [
- "2600:1f14:1f56:d100::1337",
- "2600:1f14:1f56:d100::c0de"
- ]
- }
-}
diff --git a/domains/ipv4.zerow.json b/domains/ipv4.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/ipv4.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/is-a-dev-testing.json b/domains/is-a-dev-testing.json
index 4f6c3f917..efb6f0325 100644
--- a/domains/is-a-dev-testing.json
+++ b/domains/is-a-dev-testing.json
@@ -4,7 +4,7 @@
"email": "is-a-dev@win11react.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/isdwk.json b/domains/isdwk.json
index 01be5e070..8f91072cc 100644
--- a/domains/isdwk.json
+++ b/domains/isdwk.json
@@ -4,7 +4,7 @@
"email": "dwiki200304@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ish.json b/domains/ish.json
deleted file mode 100644
index a2e53aa09..000000000
--- a/domains/ish.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "iamblueish",
- "email": "hey@blueish.gq"
- },
- "record": {
- "CNAME": "dev.blueish.gq"
- }
-}
diff --git a/domains/itskorn.json b/domains/itskorn.json
new file mode 100644
index 000000000..75208fd8f
--- /dev/null
+++ b/domains/itskorn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DemonGamez",
+ "email": "peterwyneg@gmail.com"
+ },
+ "record": {
+ "CNAME": "itskorn.github.io"
+ }
+}
diff --git a/domains/itsmenewbie03.json b/domains/itsmenewbie03.json
new file mode 100644
index 000000000..38fa2b278
--- /dev/null
+++ b/domains/itsmenewbie03.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "itsmenewbie03",
+ "email": "2101102516@student.buksu.edu.ph"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/itzhenry.json b/domains/itzhenry.json
index 1cbc73803..5eedd240c 100644
--- a/domains/itzhenry.json
+++ b/domains/itzhenry.json
@@ -1,11 +1,10 @@
{
+ "repo": "https://github.com/ItzHenry1/itzhenry1.github.io",
"owner": {
"username": "ItzHenry1",
"email": "trscrus@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "CNAME": "itzhenry1.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/itzporium.json b/domains/itzporium.json
new file mode 100644
index 000000000..ad00c6e08
--- /dev/null
+++ b/domains/itzporium.json
@@ -0,0 +1,13 @@
+{
+ "description": "This subdomain is used for my personal website, just for a portfolio.",
+ "repo": "https://github.com/codernocook/codernocook.github.io",
+ "owner": {
+ "username": "codernocook",
+ "email": "poriumbox@fbi.ac",
+ "twitter": false,
+ "discord": "Itzporium#9655"
+ },
+ "record": {
+ "CNAME": "codernocook.github.io"
+ }
+}
diff --git a/domains/iucc.json b/domains/iucc.json
deleted file mode 100644
index fa92c3cd7..000000000
--- a/domains/iucc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "IuCC123",
- "email": "raccoon.pw.main@gmail.com"
- },
- "record": {
- "CNAME": "1e080129-14d6-480b-9abb-390879d573cf.id.repl.co"
- }
-}
diff --git a/domains/ivolimasilva.json b/domains/ivolimasilva.json
deleted file mode 100644
index 15042ce87..000000000
--- a/domains/ivolimasilva.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Ivo Lima Silva's personal website",
- "repo": "https://github.com/ivolimasilva/ivolimasilva.github.io",
- "owner": {
- "username": "ivolimasilva",
- "email": "ivolimasilva@outlook.com"
- },
- "record": {
- "CNAME": "ivolimasilva.xyz"
- }
-}
diff --git a/domains/j-x01.json b/domains/j-x01.json
index b45389d24..961a75e25 100644
--- a/domains/j-x01.json
+++ b/domains/j-x01.json
@@ -4,7 +4,7 @@
"email": "jvgvgaa@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/j-x1.json b/domains/j-x1.json
index b45389d24..961a75e25 100644
--- a/domains/j-x1.json
+++ b/domains/j-x1.json
@@ -4,7 +4,7 @@
"email": "jvgvgaa@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/j0.json b/domains/j0.json
deleted file mode 100644
index 583ce9bc8..000000000
--- a/domains/j0.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "j0code",
- "discord": "j0code",
- "email": ""
- },
- "record": {
- "CNAME": "cohalejoja.selfhost.eu"
- }
-}
diff --git a/domains/j0code.json b/domains/j0code.json
deleted file mode 100644
index 583ce9bc8..000000000
--- a/domains/j0code.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "j0code",
- "discord": "j0code",
- "email": ""
- },
- "record": {
- "CNAME": "cohalejoja.selfhost.eu"
- }
-}
diff --git a/domains/j1shnu.json b/domains/j1shnu.json
deleted file mode 100644
index c9530d10b..000000000
--- a/domains/j1shnu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Jishnu's site for is-a.dev",
- "repo": "https://github.com/j1shnu/j1shnu.github.io",
- "owner": {
- "username": "j1shnu",
- "email": "pjishnu44@gmail.com"
- },
- "record": {
- "CNAME": "www.j1shnu.ml"
- }
-}
diff --git a/domains/jackbillstrom.json b/domains/jackbillstrom.json
deleted file mode 100644
index 24a291a3e..000000000
--- a/domains/jackbillstrom.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "jackbillstrom",
- "email": "jackbillstrom@gmail.com"
- },
-
- "record": {
- "CNAME": "swedish.codes"
- }
-}
diff --git a/domains/jacksonm.json b/domains/jacksonm.json
new file mode 100644
index 000000000..69db9bf85
--- /dev/null
+++ b/domains/jacksonm.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "jacksonmalone",
+ "email": "jrm9918@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jacobi09.json b/domains/jacobi09.json
deleted file mode 100644
index 3f78f3789..000000000
--- a/domains/jacobi09.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jacobi090",
- "email": "jacobi090@outlook.com"
- },
- "record": {
- "CNAME": "11a5227b-1286-4b6c-9741-b0e69e913c6f.id.repl.co"
- }
-}
diff --git a/domains/jacobtm.json b/domains/jacobtm.json
deleted file mode 100644
index 09ce090e4..000000000
--- a/domains/jacobtm.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Jacob1Tm",
- "email": "j.pawlak.2007@gmail.com"
- },
- "record": {
- "CNAME": "jacobtm.me"
- }
-}
diff --git a/domains/jagi.json b/domains/jagi.json
index 502076c72..1cfb512f0 100644
--- a/domains/jagi.json
+++ b/domains/jagi.json
@@ -4,8 +4,6 @@
"email": "jjagi02@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "CNAME": "jagi-is-a-dev.pages.dev"
}
-}
\ No newline at end of file
+}
diff --git a/domains/jahid.json b/domains/jahid.json
new file mode 100644
index 000000000..7ef18a1bb
--- /dev/null
+++ b/domains/jahid.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zenjahid",
+ "email": "mdjahidul.haque.7@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jams.json b/domains/jams.json
index 227d8af96..8a22fcf31 100644
--- a/domains/jams.json
+++ b/domains/jams.json
@@ -4,7 +4,7 @@
"email": "jamesmarke7@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jan.json b/domains/jan.json
deleted file mode 100644
index 546d9fb9e..000000000
--- a/domains/jan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Subdomain of is-a.dev for my code server. I use DBH as hosting",
- "owner": {
- "username": "Janlxrd",
- "email": "",
- "discord": "milf lover 𖤐#5058"
- },
- "record": {
- "A": ["164.132.74.251"]
- }
-}
diff --git a/domains/janam.json b/domains/janam.json
new file mode 100644
index 000000000..6c7660de7
--- /dev/null
+++ b/domains/janam.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Xzanam",
+ "email": "nh77277@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/janeberru.json b/domains/janeberru.json
deleted file mode 100644
index 1449c3eab..000000000
--- a/domains/janeberru.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "nicholasyoannou",
- "email": "",
- "discord": "janeberru#4594",
- "note": "You can contact me by email or discord, really don't mind :)"
- },
- "description": "I'll probably be testing code and such on janeberru.is-a.dev. ¯\\_(ツ)_/¯",
- "record": {
- "CNAME": "testing-12.nicholas.dev"
- }
-}
diff --git a/domains/jani-abhishek.json b/domains/jani-abhishek.json
deleted file mode 100644
index b8df093fb..000000000
--- a/domains/jani-abhishek.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My new website",
- "repo": "https://github.com/jani-abhishek/jani-abhishek.github.io",
- "owner": {
- "username": "jani-abhishek",
- "email": "jani.abhishek@truestaz.com"
- },
- "record": {
- "CNAME": "jani-abhishek.github.io"
- }
-}
diff --git a/domains/januantara.json b/domains/januantara.json
new file mode 100644
index 000000000..63f2620ed
--- /dev/null
+++ b/domains/januantara.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "coderzhaxor",
+ "email": "ajanuantara@gmail.com"
+ },
+ "record": {
+ "CNAME": "coderzhaxor.github.io"
+ }
+}
diff --git a/domains/jarmos.json b/domains/jarmos.json
deleted file mode 100644
index 4913a1b49..000000000
--- a/domains/jarmos.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A personal blog which is hosted on Medium temporarily.",
- "repo": "https://github.com/Jarmos-san/blog",
- "owner": {
- "username": "Jarmos-san",
- "email": "",
- "twitter": "Jarmosan"
- },
- "record": {
- "CNAME": "jarmos.medium.com"
- }
-}
diff --git a/domains/jarren.json b/domains/jarren.json
index a0fda613b..9a645719a 100644
--- a/domains/jarren.json
+++ b/domains/jarren.json
@@ -4,7 +4,7 @@
"email": "jarrendirk4@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jasmeetsingh.json b/domains/jasmeetsingh.json
new file mode 100644
index 000000000..c51370e89
--- /dev/null
+++ b/domains/jasmeetsingh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jasmeetsinghbhatia",
+ "email": "jasmeetsinghbhatia@gmail.com"
+ },
+ "record": {
+ "URL": "https://jasmeetsinghbhatia.github.io/resume/"
+ }
+}
diff --git a/domains/jason-ng.json b/domains/jason-ng.json
deleted file mode 100644
index 447f3d5b1..000000000
--- a/domains/jason-ng.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "jasonnwc97",
- "email": "jasonnwc97@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/jasonthomas.json b/domains/jasonthomas.json
index 25fd6253b..df9d6aaec 100644
--- a/domains/jasonthomas.json
+++ b/domains/jasonthomas.json
@@ -4,7 +4,7 @@
"email": "slxppyznet18@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/javierpastore.json b/domains/javierpastore.json
index bf621a217..949d24085 100644
--- a/domains/javierpastore.json
+++ b/domains/javierpastore.json
@@ -4,7 +4,7 @@
"email": "619742721@qq.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jay.json b/domains/jay.json
deleted file mode 100644
index e732cb3c7..000000000
--- a/domains/jay.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jaygmx",
- "email": "j.jay@gmx.us"
- },
- "record": {
- "CNAME": "jay.readthedocs.io"
- }
-}
diff --git a/domains/jayesh.json b/domains/jayesh.json
deleted file mode 100644
index da96e40a9..000000000
--- a/domains/jayesh.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jayeshsomala",
- "email": "jayeshsomala@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/jbugel.json b/domains/jbugel.json
index c8a7b686d..34d78a82f 100644
--- a/domains/jbugel.json
+++ b/domains/jbugel.json
@@ -4,7 +4,7 @@
"email": "jbugel.lol.github@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jckli.json b/domains/jckli.json
new file mode 100644
index 000000000..02176fcc2
--- /dev/null
+++ b/domains/jckli.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jckli",
+ "email": "notjackhli@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/jckli"
+ }
+}
diff --git a/domains/jellyfin.banana.json b/domains/jellyfin.banana.json
deleted file mode 100644
index 5bd3d9aa5..000000000
--- a/domains/jellyfin.banana.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "BANanaD3V",
- "email": "banana@bananadev.ml"
- },
-
- "record": {
- "A": ["95.165.13.215"]
- }
-}
diff --git a/domains/jessehoekema.json b/domains/jessehoekema.json
index 1dfc215ef..cd9faa862 100644
--- a/domains/jessehoekema.json
+++ b/domains/jessehoekema.json
@@ -4,8 +4,11 @@
"email": "jessehoekema@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
}
-}
\ No newline at end of file
+}
diff --git a/domains/jhos.json b/domains/jhos.json
new file mode 100644
index 000000000..cd9faa862
--- /dev/null
+++ b/domains/jhos.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/jim.json b/domains/jim.json
index bd5bc1e67..1a252d948 100644
--- a/domains/jim.json
+++ b/domains/jim.json
@@ -4,7 +4,7 @@
"email": "jimmy20180130@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jimscope.json b/domains/jimscope.json
deleted file mode 100644
index f49b4a920..000000000
--- a/domains/jimscope.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "/home/jimscope",
- "repo": "https://github.com/jimscope/jimscope.github.io",
- "owner": {
- "username": "jimscope",
- "email": "jimscope@protonmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/jindx.json b/domains/jindx.json
index 11c92e898..cb678e640 100644
--- a/domains/jindx.json
+++ b/domains/jindx.json
@@ -4,7 +4,7 @@
"email": "dox.jin@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jirafey.json b/domains/jirafey.json
new file mode 100644
index 000000000..d1dc65eba
--- /dev/null
+++ b/domains/jirafey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jirafey",
+ "email": "jirafey@tuta.io"
+ },
+ "record": {
+ "CNAME": "jirafey.github.io"
+ }
+}
diff --git a/domains/jjhjkhk.json b/domains/jjhjkhk.json
new file mode 100644
index 000000000..515e9d62d
--- /dev/null
+++ b/domains/jjhjkhk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "f4ruk1453decodex",
+ "email": "furk4ncrowley@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jkb-bio.json b/domains/jkb-bio.json
index a11940628..6becbfa66 100644
--- a/domains/jkb-bio.json
+++ b/domains/jkb-bio.json
@@ -4,7 +4,7 @@
"email": "jkb@courvix.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jlalfonso21.json b/domains/jlalfonso21.json
deleted file mode 100644
index 2ca0563b0..000000000
--- a/domains/jlalfonso21.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jlalfonso21",
- "email": "jlalfonso21@gmail.com"
- },
- "record": {
- "A": ["89.147.111.78"]
- }
-}
diff --git a/domains/joao.json b/domains/joao.json
deleted file mode 100644
index 1489c645b..000000000
--- a/domains/joao.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "felipeiracloud",
- "email": "joaofelipegamer23@gmail.com"
- },
- "record": {
- "A": ["191.233.29.127"]
- }
-}
diff --git a/domains/joaozeira.json b/domains/joaozeira.json
index b0ef44d55..d9b58abf0 100644
--- a/domains/joaozeira.json
+++ b/domains/joaozeira.json
@@ -4,7 +4,7 @@
"email": "joaofelipegamer24@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jocke.json b/domains/jocke.json
new file mode 100644
index 000000000..14ea2e4e7
--- /dev/null
+++ b/domains/jocke.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NotAJocke",
+ "email": "jockerider199@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/johan-stickman.json b/domains/johan-stickman.json
deleted file mode 100644
index 0877408d5..000000000
--- a/domains/johan-stickman.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My personal website",
- "owner": {
- "username": "johan-perso",
- "email": "johan_stickman@proton.me",
- "twitter": "Johan_Stickman",
- "discord": "jsuismoi"
- },
- "record": {
- "URL": "https://johanstick.fr"
- }
-}
diff --git a/domains/johna.json b/domains/johna.json
index dfd3b98fd..bde09e552 100644
--- a/domains/johna.json
+++ b/domains/johna.json
@@ -6,6 +6,6 @@
"email": "j-verstraaten@hotmail.com"
},
"record": {
- "URL": "https://johna.is-a-fullstack.dev"
+ "CNAME": "johna.pages.dev"
}
}
diff --git a/domains/johnd.json b/domains/johnd.json
new file mode 100644
index 000000000..679044a79
--- /dev/null
+++ b/domains/johnd.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "tensura-is-good",
+ "email": "sands.is.undertable@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/johndo.json b/domains/johndo.json
new file mode 100644
index 000000000..c0d7e398a
--- /dev/null
+++ b/domains/johndo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "billybobisverycool",
+ "email": "27johnballenger@ucsstudent.org"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/johndoe.json b/domains/johndoe.json
index 550a484c2..9c82c35a8 100644
--- a/domains/johndoe.json
+++ b/domains/johndoe.json
@@ -4,7 +4,7 @@
"email": "sai.pasumarthi@stu.argyleisd.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/johnevermore.json b/domains/johnevermore.json
deleted file mode 100644
index 5450cd708..000000000
--- a/domains/johnevermore.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Atr-e",
- "email": "eatr577@gmail.com"
- },
- "record": {
- "CNAME": "galatic.hop.sh"
- }
-}
diff --git a/domains/johnmortan.json b/domains/johnmortan.json
index f0d0eec46..027bf71b7 100644
--- a/domains/johnmortan.json
+++ b/domains/johnmortan.json
@@ -4,7 +4,7 @@
"email": "eatr577@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/johnny1337.json b/domains/johnny1337.json
new file mode 100644
index 000000000..fe95131f8
--- /dev/null
+++ b/domains/johnny1337.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ProxyJohnny",
+ "email": "johnnydx7@gmail.com"
+ },
+ "record": {
+ "CNAME": "johnny1337.pages.dev"
+ }
+}
diff --git a/domains/johnrambo.json b/domains/johnrambo.json
new file mode 100644
index 000000000..7bc767d87
--- /dev/null
+++ b/domains/johnrambo.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ParthMaster",
+ "email": "parth.infynno@protonmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/johnroylapida.json b/domains/johnroylapida.json
new file mode 100644
index 000000000..cef9bb5be
--- /dev/null
+++ b/domains/johnroylapida.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "SnoopyCodeX",
+ "email": "johnroy062102calimlim@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jonas.json b/domains/jonas.json
index 24c743371..5f6e83824 100644
--- a/domains/jonas.json
+++ b/domains/jonas.json
@@ -4,7 +4,7 @@
"email": "jonas.werner.nov1999@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jonathan.json b/domains/jonathan.json
deleted file mode 100644
index c13860eec..000000000
--- a/domains/jonathan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "jonOriginal",
- "email": "jonathan-knox@outlook.com",
- "discord": "12340#0567"
- },
- "record": {
- "CNAME": "webknox.ddns.net"
- },
- "repo": "https://github.com/jonOriginal"
-}
diff --git a/domains/jonnycodes.json b/domains/jonnycodes.json
new file mode 100644
index 000000000..1a75c4201
--- /dev/null
+++ b/domains/jonnycodes.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JonnycatMeow",
+ "email": "jonnygomez156@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/joordih.json b/domains/joordih.json
new file mode 100644
index 000000000..c90eecd61
--- /dev/null
+++ b/domains/joordih.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HarpyLMAO",
+ "email": "harpymclol@gmail.com"
+ },
+ "record": {
+ "URL": "https://joordih.lol"
+ }
+}
diff --git a/domains/jophiel.json b/domains/jophiel.json
deleted file mode 100644
index 4993ee4ae..000000000
--- a/domains/jophiel.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "femboyjophiel",
- "email": "femboy.jophiel@gmail.com"
- },
-
- "record": {
- "CNAME": "58c70704-65c7-4baf-b3ac-d930c2a23d49.id.repl.co"
- }
-}
diff --git a/domains/josh.json b/domains/josh.json
deleted file mode 100644
index b127cefe9..000000000
--- a/domains/josh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Josh's personal developer website",
- "repo": "https://github.com/miltzi",
- "owner": {
- "username": "miltzi",
- "email": "josh@miltz.co.za"
- },
- "record": {
- "CNAME": "joshisadev.miltz.co.za"
- }
-}
diff --git a/domains/joshua.json b/domains/joshua.json
deleted file mode 100644
index 0bb60a121..000000000
--- a/domains/joshua.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Joshua's Website",
- "repo": "https://github.com/joshua-noakes1",
- "owner": {
- "username": "joshua-noakes1",
- "email": "joshua.noakes1@icloud.com"
- },
- "record": {
- "CNAME": "prx1.oci.cocogoat.xyz"
- }
-}
diff --git a/domains/josjonkeren.json b/domains/josjonkeren.json
deleted file mode 100644
index ee844f4a4..000000000
--- a/domains/josjonkeren.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jonkeren",
- "email": "josjonkeren@gmail.com"
- },
- "record": {
- "CNAME": "jonkeren.nl"
- }
-}
diff --git a/domains/jpstore.json b/domains/jpstore.json
new file mode 100644
index 000000000..ea2932833
--- /dev/null
+++ b/domains/jpstore.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "JonnycatMeow",
+ "email": "jonnygomez156@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jtgr.json b/domains/jtgr.json
index a11940628..6becbfa66 100644
--- a/domains/jtgr.json
+++ b/domains/jtgr.json
@@ -4,7 +4,7 @@
"email": "jkb@courvix.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/juisai.json b/domains/juisai.json
new file mode 100644
index 000000000..3429f5c74
--- /dev/null
+++ b/domains/juisai.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Eima834",
+ "email": "dargiseimantas5@gmail.com",
+ "discord": "1095651340589469786"
+ },
+
+ "record": {
+ "A": ["198.251.86.152"]
+ }
+}
diff --git a/domains/julian45838.json b/domains/julian45838.json
new file mode 100644
index 000000000..6b9b14847
--- /dev/null
+++ b/domains/julian45838.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "julian45678",
+ "email": "Julian464774@outlook.de"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/juliocesar.json b/domains/juliocesar.json
index 6148b124e..dfa58c444 100644
--- a/domains/juliocesar.json
+++ b/domains/juliocesar.json
@@ -4,7 +4,7 @@
"email": "julio.wisnieski@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jumanji.json b/domains/jumanji.json
index c354d0c6f..b5c67df79 100644
--- a/domains/jumanji.json
+++ b/domains/jumanji.json
@@ -4,7 +4,7 @@
"email": "madhuchutiya.unhinge650@silomails.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/junior.json b/domains/junior.json
index ac014dd71..6a05bf843 100644
--- a/domains/junior.json
+++ b/domains/junior.json
@@ -4,7 +4,7 @@
"email": "junior4u@reborn.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/jupie.json b/domains/jupie.json
index 2e3142c9d..df329160e 100644
--- a/domains/jupie.json
+++ b/domains/jupie.json
@@ -4,7 +4,7 @@
"email": "mzkplayz1@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/juqwtf.json b/domains/juqwtf.json
new file mode 100644
index 000000000..cd850be72
--- /dev/null
+++ b/domains/juqwtf.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "denboy0123",
+ "email": "pochtaproverka01@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/justcody.json b/domains/justcody.json
index f9afe869c..335897f2a 100644
--- a/domains/justcody.json
+++ b/domains/justcody.json
@@ -4,7 +4,7 @@
"email": "julian.weinelt@outlook.de"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/justevil.json b/domains/justevil.json
index c44d509b4..f1d318bb4 100644
--- a/domains/justevil.json
+++ b/domains/justevil.json
@@ -4,7 +4,7 @@
"email": "thatjustevil@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/justnils.json b/domains/justnils.json
new file mode 100644
index 000000000..e39a4d569
--- /dev/null
+++ b/domains/justnils.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "JustNils8",
+ "email": "nils.privat27@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/justus.json b/domains/justus.json
deleted file mode 100644
index 50acf9a0d..000000000
--- a/domains/justus.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Justus-D",
- "email": "justus.is-a.dev@herrblauzahn.de"
- },
- "record": {
- "CNAME": "is-a-dev.justus-d.de"
- }
-}
diff --git a/domains/jv.json b/domains/jv.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/jv.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jx-1.json b/domains/jx-1.json
index b45389d24..961a75e25 100644
--- a/domains/jx-1.json
+++ b/domains/jx-1.json
@@ -4,7 +4,7 @@
"email": "jvgvgaa@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jx01.json b/domains/jx01.json
deleted file mode 100644
index e978180e2..000000000
--- a/domains/jx01.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "XxJVG1xX",
- "email": "jvgvgaa@gmail.com"
- },
- "record": {
- "CNAME": "90ef348a-1a61-46ac-a889-62ac65e926b4.acmedns.infinityfree.net"
- }
-}
diff --git a/domains/jx1.json b/domains/jx1.json
index b45389d24..961a75e25 100644
--- a/domains/jx1.json
+++ b/domains/jx1.json
@@ -4,7 +4,7 @@
"email": "jvgvgaa@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/jz.json b/domains/jz.json
index 45c849919..2d7f80d6b 100644
--- a/domains/jz.json
+++ b/domains/jz.json
@@ -4,7 +4,7 @@
"email": "zheng.joshua2@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/k22rma.json b/domains/k22rma.json
deleted file mode 100644
index b47f99a31..000000000
--- a/domains/k22rma.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "k22rma",
- "email": "krrishsharma.ks12345@gmail.com"
- },
- "record": {
- "CNAME": "k22rma.github.io"
- }
-}
diff --git a/domains/k4i0d.json b/domains/k4i0d.json
deleted file mode 100644
index 0600507f3..000000000
--- a/domains/k4i0d.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "kaiodcosta",
- "email": "kaiod@riseup.net"
- },
- "record": {
- "URL": "https://kaiod.icu"
- }
-}
diff --git a/domains/kacper.json b/domains/kacper.json
new file mode 100644
index 000000000..d8f6a62e6
--- /dev/null
+++ b/domains/kacper.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "flink1337",
+ "email": "haviksior@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kainer.json b/domains/kainer.json
index c60567d15..88da7ed41 100644
--- a/domains/kainer.json
+++ b/domains/kainer.json
@@ -4,7 +4,7 @@
"email": "kai.ner.h13r@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kaish.json b/domains/kaish.json
new file mode 100644
index 000000000..e33ca80c9
--- /dev/null
+++ b/domains/kaish.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mark18cosmic",
+ "email": "kaish018@gmail.com"
+ },
+ "record": {
+ "URL": "https://mark18cosmic.github.io"
+ }
+}
diff --git a/domains/kaizin.json b/domains/kaizin.json
deleted file mode 100644
index 61c458efc..000000000
--- a/domains/kaizin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "kaizinbr",
- "email": "kaiolucas1812@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/kalebhumpal.json b/domains/kalebhumpal.json
index 75304257c..fe7ba826c 100644
--- a/domains/kalebhumpal.json
+++ b/domains/kalebhumpal.json
@@ -4,7 +4,7 @@
"email": "kaleblub@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kamek.json b/domains/kamek.json
index 01e8825f0..a63731287 100644
--- a/domains/kamek.json
+++ b/domains/kamek.json
@@ -4,7 +4,7 @@
"email": "hidden_tuetle427@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kameyo.json b/domains/kameyo.json
new file mode 100644
index 000000000..536882bb5
--- /dev/null
+++ b/domains/kameyo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "WhosKameyo",
+ "email": "kameyof@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kamilbienkowski.json b/domains/kamilbienkowski.json
new file mode 100644
index 000000000..2c9cb61cc
--- /dev/null
+++ b/domains/kamilbienkowski.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Trix3l",
+ "email": "kamiljan.bienkowski@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kamishi.json b/domains/kamishi.json
deleted file mode 100644
index c2de37447..000000000
--- a/domains/kamishi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "KamishiRewrote",
- "email": "",
- "discord": "kamishi_x"
- },
- "record": {
- "CNAME": "kamishi.kamishiyt.repl.co"
- }
-}
diff --git a/domains/kamlendras.json b/domains/kamlendras.json
new file mode 100644
index 000000000..334375cd2
--- /dev/null
+++ b/domains/kamlendras.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kamlendras",
+ "email": "ksinghpro@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kamy0403.json b/domains/kamy0403.json
deleted file mode 100644
index 9033e1e1a..000000000
--- a/domains/kamy0403.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "thanhcong2k7",
- "email": "nhocpeacock@gmail.com",
- "twitter": "NTKam007",
- "discord": "KamyzZ#3790"
- },
- "record": {
- "CNAME": "kmdev.carrd.co"
- }
-}
diff --git a/domains/kamyzz.json b/domains/kamyzz.json
deleted file mode 100644
index 2824a0ab9..000000000
--- a/domains/kamyzz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "thanhcong2k7",
- "email": "nhocpeacock@gmail.com"
- },
- "record": {
- "CNAME": "kamyzz.carrd.co"
- }
-}
diff --git a/domains/kappurumedia.json b/domains/kappurumedia.json
new file mode 100644
index 000000000..86ed91a78
--- /dev/null
+++ b/domains/kappurumedia.json
@@ -0,0 +1,11 @@
+{
+ "description": "I'm a developer",
+ "repo": "https://github.com/CyrusCore/cyruscore.github.io",
+ "owner": {
+ "username": "CyrusCore",
+ "email": "abramsatria7@gmail.com"
+ },
+ "record": {
+ "CNAME": "cyruscore.github.io"
+ }
+}
diff --git a/domains/karan.json b/domains/karan.json
index e79fdef54..e0aa55e98 100644
--- a/domains/karan.json
+++ b/domains/karan.json
@@ -4,7 +4,7 @@
"email": "karangamerz207@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/karanxidhu.json b/domains/karanxidhu.json
new file mode 100644
index 000000000..2fa871989
--- /dev/null
+++ b/domains/karanxidhu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Karanxidhu",
+ "email": "sidhu.karanjot22@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kashif.json b/domains/kashif.json
deleted file mode 100644
index 3c01fbe8a..000000000
--- a/domains/kashif.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "appsdevpk",
- "email": "kashid1@gmail.com"
- },
-
- "record": {
- "A": ["129.146.191.167"]
- }
-}
diff --git a/domains/kasmatic.json b/domains/kasmatic.json
deleted file mode 100644
index 3e9dbf32d..000000000
--- a/domains/kasmatic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PHYT90DitYT",
- "email": "chess049@rsdmo.org"
- },
- "record": {
- "CNAME": "i-think-i.lol"
- }
-}
diff --git a/domains/kasmatica.json b/domains/kasmatica.json
deleted file mode 100644
index 3e9dbf32d..000000000
--- a/domains/kasmatica.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PHYT90DitYT",
- "email": "chess049@rsdmo.org"
- },
- "record": {
- "CNAME": "i-think-i.lol"
- }
-}
diff --git a/domains/kasu.json b/domains/kasu.json
index 437840057..1147cf6ca 100644
--- a/domains/kasu.json
+++ b/domains/kasu.json
@@ -4,7 +4,7 @@
"email": "trandanghien120@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kasuu.json b/domains/kasuu.json
index 437840057..1147cf6ca 100644
--- a/domains/kasuu.json
+++ b/domains/kasuu.json
@@ -4,7 +4,7 @@
"email": "trandanghien120@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kaushal.json b/domains/kaushal.json
index 11a564a78..a8973434e 100644
--- a/domains/kaushal.json
+++ b/domains/kaushal.json
@@ -4,7 +4,7 @@
"email": "kaushalkishor10702@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kaushik.kashyap.json b/domains/kaushik.kashyap.json
new file mode 100644
index 000000000..29cf0112d
--- /dev/null
+++ b/domains/kaushik.kashyap.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kaushik-kashyap",
+ "email": "kknl65789@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/kaushik-kashyap/kaushik-kashyap.git"
+ }
+}
diff --git a/domains/kavinned.json b/domains/kavinned.json
index d12a04d9d..4f51eeb8c 100644
--- a/domains/kavinned.json
+++ b/domains/kavinned.json
@@ -4,7 +4,7 @@
"email": "kavin.ned@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kawet00.json b/domains/kawet00.json
deleted file mode 100644
index 80d0be185..000000000
--- a/domains/kawet00.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Kawet00",
- "email": "elpisstolero13@outlook.com"
- },
-
- "record": {
- "CNAME": "kawet.is-a.dev"
- }
-}
diff --git a/domains/kaze.json b/domains/kaze.json
new file mode 100644
index 000000000..6882d844b
--- /dev/null
+++ b/domains/kaze.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kazeapp",
+ "email": "kazeapp2022@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kcasm.json b/domains/kcasm.json
deleted file mode 100644
index eac9d55ed..000000000
--- a/domains/kcasm.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "PHYT90DitYT",
- "email": "chess049@rsdmo.org",
- "discord": "798934178783559710"
- },
-
- "record": {
- "CNAME": "i-think-i.lol"
- }
-}
diff --git a/domains/keczuu.json b/domains/keczuu.json
new file mode 100644
index 000000000..2528e1357
--- /dev/null
+++ b/domains/keczuu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Keczuu",
+ "email": "koteczek5184@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/keikibun.json b/domains/keikibun.json
new file mode 100644
index 000000000..4adae4bfb
--- /dev/null
+++ b/domains/keikibun.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "zerobun",
+ "email": "tareku2003@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kelvinmjr707.json b/domains/kelvinmjr707.json
index 9b3d13779..6ac6d416e 100644
--- a/domains/kelvinmjr707.json
+++ b/domains/kelvinmjr707.json
@@ -4,7 +4,7 @@
"email": "KelvinMJr707@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/kenanneo.json b/domains/kenanneo.json
index 186e9d707..ba0b2ff67 100644
--- a/domains/kenanneo.json
+++ b/domains/kenanneo.json
@@ -4,7 +4,7 @@
"email": "kenanneo2@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kenma.json b/domains/kenma.json
new file mode 100644
index 000000000..9c2e889ea
--- /dev/null
+++ b/domains/kenma.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "d746f",
+ "email": "shoyohosting@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kenny.json b/domains/kenny.json
new file mode 100644
index 000000000..49140c019
--- /dev/null
+++ b/domains/kenny.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "FireBoiDiscord",
+ "email": "kennybugeja@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kereh.json b/domains/kereh.json
deleted file mode 100644
index fdc491b05..000000000
--- a/domains/kereh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "kereh",
- "email": "kerehchannel@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/kevin.json b/domains/kevin.json
deleted file mode 100644
index fef2ee4bd..000000000
--- a/domains/kevin.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "KevinBrogan",
- "email": "kevin@brogan.ca"
- },
- "record": {
- "CNAME": "brogan.ca"
- }
-}
diff --git a/domains/kevv.json b/domains/kevv.json
new file mode 100644
index 000000000..d3e5b6940
--- /dev/null
+++ b/domains/kevv.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Kevin123456789-1",
+ "email": "kpkpkp12321@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kevvyyn.json b/domains/kevvyyn.json
deleted file mode 100644
index 83d1df3b9..000000000
--- a/domains/kevvyyn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "BiometricGlitch",
- "email": "smellysocks0147@gmail.com"
- },
- "record": {
- "CNAME": "19e5bf8c-21c4-458c-aade-3d247b901526.id.repl.co"
- }
-}
diff --git a/domains/keyboarding-advanced-test.json b/domains/keyboarding-advanced-test.json
new file mode 100644
index 000000000..c8bfa98db
--- /dev/null
+++ b/domains/keyboarding-advanced-test.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "deecoyz",
+ "email": "swr86.a8z72.a38o4.qm65c.lt0bz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/keylock.json b/domains/keylock.json
new file mode 100644
index 000000000..fb69a0062
--- /dev/null
+++ b/domains/keylock.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kaimodiss",
+ "email": "pijulas12345@gmail.com"
+ },
+ "record": {
+ "A": ["45.137.116.114"]
+ }
+}
diff --git a/domains/kh.json b/domains/kh.json
new file mode 100644
index 000000000..8c52380bf
--- /dev/null
+++ b/domains/kh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "khagdev",
+ "email": "nguyendaikhang2000@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/khag.json b/domains/khag.json
new file mode 100644
index 000000000..be7f8a334
--- /dev/null
+++ b/domains/khag.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "khagdev",
+ "email": "nguyendaikhang2000@gmail.com"
+ },
+ "record": {
+ "A": ["103.97.126.26"]
+ }
+}
diff --git a/domains/khang.json b/domains/khang.json
new file mode 100644
index 000000000..8c52380bf
--- /dev/null
+++ b/domains/khang.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "khagdev",
+ "email": "nguyendaikhang2000@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/khasan-tokhirov.json b/domains/khasan-tokhirov.json
index c9d227101..bab8fcb07 100644
--- a/domains/khasan-tokhirov.json
+++ b/domains/khasan-tokhirov.json
@@ -4,7 +4,7 @@
"email": "khasan.tokhirov@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/khongtontien.json b/domains/khongtontien.json
new file mode 100644
index 000000000..03e519a21
--- /dev/null
+++ b/domains/khongtontien.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thanhnguyen2075",
+ "email": "abc.bingboong@yahoo.com.vn"
+ },
+ "record": {
+ "A": ["103.75.187.18"]
+ }
+}
diff --git a/domains/kicrops.json b/domains/kicrops.json
index 857e5a4f3..7f840d617 100644
--- a/domains/kicrops.json
+++ b/domains/kicrops.json
@@ -1,11 +1,9 @@
{
- "description": "A personal website for me and my organization",
- "repo": "https://github.com/Kicrops/website",
"owner": {
"username": "Kicrops",
- "email": "kicropsdevelopment@gmail.com"
+ "email": "spiccininizeida@gmail.com"
},
"record": {
- "CNAME": "d3aeb170-58da-460e-aad2-29a40a7a0d80.id.repl.co"
+ "CNAME": "kicrops.github.io"
}
}
diff --git a/domains/kiir0n.json b/domains/kiir0n.json
deleted file mode 100644
index afa2c8d34..000000000
--- a/domains/kiir0n.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "kiir0n.is-a.dev",
- "repo": "https://github.com/kiir0n/kiir0n.github.io",
- "owner": {
- "username": "Kiir0n",
- "email": "kiir0n@outlook.com"
- },
- "record": {
- "CNAME": "kiir0n.github.io"
- }
-}
diff --git a/domains/kikig4mer.json b/domains/kikig4mer.json
new file mode 100644
index 000000000..befa0e0a0
--- /dev/null
+++ b/domains/kikig4mer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KikiG4mer",
+ "email": "kikig4mer@gmail.com"
+ },
+ "record": {
+ "CNAME": "kikig4mer.pages.dev"
+ }
+}
diff --git a/domains/kime.json b/domains/kime.json
index a59158a93..7b1cf343d 100644
--- a/domains/kime.json
+++ b/domains/kime.json
@@ -4,7 +4,7 @@
"email": "mikeyhackjob21@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/king.json b/domains/king.json
new file mode 100644
index 000000000..f3c8d4f03
--- /dev/null
+++ b/domains/king.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "treehousekingcomic",
+ "email": "TreeHouseKingComic@gmail.com"
+ },
+ "record": {
+ "CNAME": "thkc.space"
+ }
+}
diff --git a/domains/kio.json b/domains/kio.json
index 2cb8062e3..aa607de87 100644
--- a/domains/kio.json
+++ b/domains/kio.json
@@ -3,8 +3,9 @@
"username": "YoruAkio",
"email": "yoruakio@proton.me"
},
-
"record": {
- "CNAME": "nakio.pages.dev"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/kira.json b/domains/kira.json
index ba2f95c6f..d749f0159 100644
--- a/domains/kira.json
+++ b/domains/kira.json
@@ -4,7 +4,7 @@
"email": "jwan9714@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kirann.json b/domains/kirann.json
deleted file mode 100644
index 42c7372f4..000000000
--- a/domains/kirann.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Kiran's personal developer website",
- "repo": "https://github.com/sudopower",
- "owner": {
- "username": "sudopower",
- "email": "nkirandroid@gmail.com"
- },
- "record": {
- "URL": "http://sudopower.com"
- }
-}
diff --git a/domains/kiriland.json b/domains/kiriland.json
deleted file mode 100644
index 8a1c1867c..000000000
--- a/domains/kiriland.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "mrfinm",
- "email": "mohamixxxx@gmail.com"
- },
-
- "record": {
- "CNAME": "ess.fabad-ihe.ac.ir"
- }
-}
diff --git a/domains/kitku.json b/domains/kitku.json
new file mode 100644
index 000000000..fbcd54660
--- /dev/null
+++ b/domains/kitku.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kitku132",
+ "email": "kitku560@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kitty.json b/domains/kitty.json
index dd406458c..d55e38eee 100644
--- a/domains/kitty.json
+++ b/domains/kitty.json
@@ -1,10 +1,12 @@
{
- "owner": {
- "username": "Stardustxxx",
- "email": "kitty@kittysmh.tech"
- },
-
- "record": {
- "A": ["192.95.42.66"]
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
}
-}
+
\ No newline at end of file
diff --git a/domains/kkdesigns.json b/domains/kkdesigns.json
deleted file mode 100644
index 4c561b711..000000000
--- a/domains/kkdesigns.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "All of K.K Designs Fitbit® applications",
- "repo": "https://github.com/KK-Designs/K.K-Designs-Website",
- "owner": {
- "username": "KK-Designs",
- "email": "kkart2007@gmail.com"
- },
- "record": {
- "CNAME": "kk-designs.github.io"
- }
-}
diff --git a/domains/klarkc.json b/domains/klarkc.json
new file mode 100644
index 000000000..92ea3bbee
--- /dev/null
+++ b/domains/klarkc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "klarkc",
+ "email": "walkerleite490@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kleb.json b/domains/kleb.json
index 8ae5e94b9..8d4e08bbd 100644
--- a/domains/kleb.json
+++ b/domains/kleb.json
@@ -4,8 +4,8 @@
"email": "krazykleb@outlook.com"
},
"record": {
- "A": ["143.47.249.115"],
- "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "A": ["69.30.249.53"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/kno.json b/domains/kno.json
new file mode 100644
index 000000000..331dd65d8
--- /dev/null
+++ b/domains/kno.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MDev123",
+ "email": "markbekech@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kns.json b/domains/kns.json
deleted file mode 100644
index 72ec8d59a..000000000
--- a/domains/kns.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ItzCrazyKns",
- "email": "",
- "discord": "ItzCrazyKns#1337"
- },
- "record": {
- "A": ["129.153.126.170"]
- }
-}
diff --git a/domains/kntlpop.json b/domains/kntlpop.json
index 7921d30b1..e11842689 100644
--- a/domains/kntlpop.json
+++ b/domains/kntlpop.json
@@ -4,7 +4,7 @@
"email": "suhujetlag5@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kobeff.json b/domains/kobeff.json
deleted file mode 100644
index 6fcd7b36b..000000000
--- a/domains/kobeff.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "KobeFF's Portfolio",
- "repo": "please get the code from https://its.kobeff.repl.co",
- "owner": {
- "username": "Kobe523",
- "email": "kfni@madison.k12.wi.us"
- },
- "record": {
- "URL": "https://its.kobeff.repl.co"
- }
-}
diff --git a/domains/kodex.json b/domains/kodex.json
new file mode 100644
index 000000000..0576cb7b0
--- /dev/null
+++ b/domains/kodex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "codex009",
+ "email": "3gareb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/koenv.json b/domains/koenv.json
deleted file mode 100644
index 590d779b5..000000000
--- a/domains/koenv.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevKoenv",
- "email": "koenvanvlimmeren@gmail.com"
- },
-
- "record": {
- "A": ["168.119.108.101"]
- }
-}
diff --git a/domains/kofy.json b/domains/kofy.json
new file mode 100644
index 000000000..d428152dc
--- /dev/null
+++ b/domains/kofy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Kofysh",
+ "email": "baki.sagir@ik.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/komovie.json b/domains/komovie.json
new file mode 100644
index 000000000..c0d7e398a
--- /dev/null
+++ b/domains/komovie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "billybobisverycool",
+ "email": "27johnballenger@ucsstudent.org"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/komovies.json b/domains/komovies.json
new file mode 100644
index 000000000..c0d7e398a
--- /dev/null
+++ b/domains/komovies.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "billybobisverycool",
+ "email": "27johnballenger@ucsstudent.org"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/koopa.json b/domains/koopa.json
index 0ba154eb2..1f0e4c88a 100644
--- a/domains/koopa.json
+++ b/domains/koopa.json
@@ -6,7 +6,7 @@
"discord": "koopakio"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/koopacode.json b/domains/koopacode.json
index 6766676a3..f0780f83b 100644
--- a/domains/koopacode.json
+++ b/domains/koopacode.json
@@ -4,7 +4,7 @@
"email": "AndrewLife92@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/korbinvanette.json b/domains/korbinvanette.json
deleted file mode 100644
index 378097263..000000000
--- a/domains/korbinvanette.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "KorbinVanetteDev",
- "email": "korbinvanettedev@gmail.com"
- },
-
- "record": {
- "CNAME": "35ad5fb7-4c98-46e4-891b-67815124df03.id.repl.co"
- }
-}
diff --git a/domains/koru.json b/domains/koru.json
index abe2a05ca..9f8b26a78 100644
--- a/domains/koru.json
+++ b/domains/koru.json
@@ -4,7 +4,7 @@
"email": "popetopotolo@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kotawa.json b/domains/kotawa.json
deleted file mode 100644
index 7da6e75f0..000000000
--- a/domains/kotawa.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "dewiscool",
- "email": "zerolikecyber.2005@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 878821057748926534"
- },
-
- "record": {
- "CNAME": "f383a209-653f-447b-98fd-d7272d2cdec4.id.repl.co"
-
- }
-}
diff --git a/domains/kotelek.json b/domains/kotelek.json
deleted file mode 100644
index 5a8d21600..000000000
--- a/domains/kotelek.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "xKotelek",
- "email": "kontakt@kotelek.tk"
- },
-
- "record": {
- "CNAME": "kotelek.tk"
- }
-}
diff --git a/domains/koushik.json b/domains/koushik.json
index 309eafe25..e4d6a22d0 100644
--- a/domains/koushik.json
+++ b/domains/koushik.json
@@ -4,7 +4,7 @@
"email": "krishnan.koushik@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kpopiui.json b/domains/kpopiui.json
deleted file mode 100644
index a4879175c..000000000
--- a/domains/kpopiui.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Zeor154",
- "email": "driop12bu@gmail.com"
- },
- "record": {
- "A": ["45.140.141.88"]
- }
-}
diff --git a/domains/kramiikk.json b/domains/kramiikk.json
index 92e7cb91e..c2ee58540 100644
--- a/domains/kramiikk.json
+++ b/domains/kramiikk.json
@@ -4,7 +4,7 @@
"email": "hifund@yandex.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/krazy.json b/domains/krazy.json
index 157b62b8c..535e1be04 100644
--- a/domains/krazy.json
+++ b/domains/krazy.json
@@ -4,7 +4,7 @@
"email": "krazykleb@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kresswell.json b/domains/kresswell.json
index fa05957b0..1d64d85fd 100644
--- a/domains/kresswell.json
+++ b/domains/kresswell.json
@@ -4,7 +4,7 @@
"email": "simonecresswell@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kris.json b/domains/kris.json
index 145771d7c..b9a59ce51 100644
--- a/domains/kris.json
+++ b/domains/kris.json
@@ -4,7 +4,7 @@
"email": "krish732100@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/krish.json b/domains/krish.json
index 145771d7c..b9a59ce51 100644
--- a/domains/krish.json
+++ b/domains/krish.json
@@ -4,7 +4,7 @@
"email": "krish732100@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/krishna03.json b/domains/krishna03.json
index fe5ae4302..b0d6cfdf9 100644
--- a/domains/krishna03.json
+++ b/domains/krishna03.json
@@ -4,7 +4,7 @@
"email": "Krishnabohra2013@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/krishna033.json b/domains/krishna033.json
index fe5ae4302..b0d6cfdf9 100644
--- a/domains/krishna033.json
+++ b/domains/krishna033.json
@@ -4,7 +4,7 @@
"email": "Krishnabohra2013@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/krvishal.json b/domains/krvishal.json
deleted file mode 100644
index ff222e873..000000000
--- a/domains/krvishal.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Portfolio",
- "repo": "https://github.com/thegeekdex",
- "owner": {
- "username": "thegeekdex",
- "email": "",
- "discord": "Vishal S.#6993"
- },
- "record": {
- "A": ["43.205.87.144"]
- }
-}
diff --git a/domains/kryclopz.json b/domains/kryclopz.json
index 43c418f05..0623d40b0 100644
--- a/domains/kryclopz.json
+++ b/domains/kryclopz.json
@@ -4,7 +4,7 @@
"email": "officialkryclopz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/krzysiu.json b/domains/krzysiu.json
index dd65edd13..1dbbe498c 100644
--- a/domains/krzysiu.json
+++ b/domains/krzysiu.json
@@ -4,7 +4,7 @@
"email": "krzysztof2011@hotmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kshitij.json b/domains/kshitij.json
index 44397f87d..dea3ab773 100644
--- a/domains/kshitij.json
+++ b/domains/kshitij.json
@@ -1,10 +1,14 @@
{
- "description": "Kshitij Subedi",
"owner": {
- "username": "kshitijsubedi",
- "email": "2subedikshitij@gmail.com"
+ "username": "nerkoux",
+ "email": "akshatmehta_14434@mpsjaipur.com"
},
"record": {
- "CNAME": "kshitijsubedi.com.np"
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/ksingh.json b/domains/ksingh.json
index 179f4c18b..70e186d41 100644
--- a/domains/ksingh.json
+++ b/domains/ksingh.json
@@ -4,7 +4,7 @@
"email": "ksinghofficial@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kuat.json b/domains/kuat.json
index 92e7cb91e..c2ee58540 100644
--- a/domains/kuat.json
+++ b/domains/kuat.json
@@ -4,7 +4,7 @@
"email": "hifund@yandex.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kukikop.json b/domains/kukikop.json
deleted file mode 100644
index 4648786f2..000000000
--- a/domains/kukikop.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Zeor154",
- "email": "driop12bu@gmail.com"
- },
- "record": {
- "A": ["45.130.141.88"]
- }
-}
diff --git a/domains/kumkashree.json b/domains/kumkashree.json
deleted file mode 100644
index a868a091c..000000000
--- a/domains/kumkashree.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "kumkashree.is-a.dev",
- "owner": {
- "username": "kumkashree",
- "email": "",
- "discord": "KumKaShree#3777"
- },
- "record": {
- "A": ["43.205.87.144"]
- }
-}
diff --git a/domains/kurokami.json b/domains/kurokami.json
index 2c9dcb890..5d5343f6c 100644
--- a/domains/kurokami.json
+++ b/domains/kurokami.json
@@ -4,7 +4,7 @@
"email": "honghongleong2@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kuzey.json b/domains/kuzey.json
index 51b28e454..4af68c885 100644
--- a/domains/kuzey.json
+++ b/domains/kuzey.json
@@ -4,7 +4,7 @@
"email": "ardagokce0682@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kweeper.json b/domains/kweeper.json
deleted file mode 100644
index 81c8c51f2..000000000
--- a/domains/kweeper.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "kweeper.is-a.dev",
- "owner": {
- "username": "kweeperdotjs",
- "email": "kweeper@protonmail.com"
- },
- "record": {
- "CNAME": "kweeperdotjs.pages.dev"
- }
-}
diff --git a/domains/kxden.json b/domains/kxden.json
new file mode 100644
index 000000000..69928f92d
--- /dev/null
+++ b/domains/kxden.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ayekaden",
+ "email": "kadenfday91@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kxtz.json b/domains/kxtz.json
deleted file mode 100644
index 46e49f825..000000000
--- a/domains/kxtz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "kxtzownsu",
- "email": "kxtzownsu@gmail.com"
- },
- "record": {
- "CNAME": "ef93d84a-155f-4365-86a0-9dcc1d445acf.id.repl.co"
- }
-}
diff --git a/domains/kyakou.json b/domains/kyakou.json
index 95f22f401..b9ff5cda5 100644
--- a/domains/kyakou.json
+++ b/domains/kyakou.json
@@ -4,7 +4,7 @@
"email": "ali_a19@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/kyle.json b/domains/kyle.json
index e676647fc..323f6d50d 100644
--- a/domains/kyle.json
+++ b/domains/kyle.json
@@ -1,10 +1,11 @@
{
- "description": "My CDN",
"owner": {
- "username": "JavaScriptpy",
- "email": "zerotwo.on.discord@gmail.com"
+ "username": "SpectacledBear",
+ "email": "kyle@spectacledbear.ca"
},
"record": {
- "CNAME": "4610390a-31b4-45f7-9a4a-4c75e28ecfbd.repl.co"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/kylomaskgamer.json b/domains/kylomaskgamer.json
index 5449ad911..6dcb5cf07 100644
--- a/domains/kylomaskgamer.json
+++ b/domains/kylomaskgamer.json
@@ -4,7 +4,7 @@
"email": "kyle@kavenv.net"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/l3g3n7.json b/domains/l3g3n7.json
new file mode 100644
index 000000000..779c3ad7e
--- /dev/null
+++ b/domains/l3g3n7.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Heroku403",
+ "email": "juhisharma0757@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/l7neg.json b/domains/l7neg.json
new file mode 100644
index 000000000..05101905b
--- /dev/null
+++ b/domains/l7neg.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "l7neg",
+ "email": "mahmodealking467@gmail.com",
+ "repo": "https://replit.com/@L7NEG/L7NEG",
+ "description": "Main Bio Page And All Its Useful Tools"
+ },
+ "record": {
+ "A": ["34.111.254.92"],
+ "TXT": "replit-verify=23cc92c5-cdc9-47bf-9e4f-e692a2ab2097"
+ }
+}
diff --git a/domains/lacky.json b/domains/lacky.json
new file mode 100644
index 000000000..c167384d0
--- /dev/null
+++ b/domains/lacky.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LackyPal",
+ "email": "dev.lackypal@gmail.com"
+ },
+ "record": {
+ "CNAME": "lackypal.github.io"
+ }
+}
diff --git a/domains/lacyx.json b/domains/lacyx.json
index 0cdd45522..8fd612db3 100644
--- a/domains/lacyx.json
+++ b/domains/lacyx.json
@@ -4,7 +4,7 @@
"email": "nozoska@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/laker.json b/domains/laker.json
deleted file mode 100644
index ed2cad3d9..000000000
--- a/domains/laker.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "lxjv",
- "email": "hey@laker.tech"
- },
- "record": {
- "CNAME": "laker.omg.lol"
- }
-}
diff --git a/domains/lakhindar.json b/domains/lakhindar.json
new file mode 100644
index 000000000..56d9f457e
--- /dev/null
+++ b/domains/lakhindar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LakhindarPal",
+ "email": "dev.lakhindarpal@gmail.com"
+ },
+ "record": {
+ "CNAME": "lakhindarpal.github.io"
+ }
+}
diff --git a/domains/laluxx.json b/domains/laluxx.json
index 8aac87995..a557dda33 100644
--- a/domains/laluxx.json
+++ b/domains/laluxx.json
@@ -4,7 +4,7 @@
"email": "lorenzoaddamo10@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lamdev.json b/domains/lamdev.json
index 83fdc615a..33993fd19 100644
--- a/domains/lamdev.json
+++ b/domains/lamdev.json
@@ -4,7 +4,7 @@
"email": "lamdev1212@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/lamfun.json b/domains/lamfun.json
new file mode 100644
index 000000000..47705b87a
--- /dev/null
+++ b/domains/lamfun.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lamger",
+ "email": "ns6192295@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lamger.json b/domains/lamger.json
new file mode 100644
index 000000000..47705b87a
--- /dev/null
+++ b/domains/lamger.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lamger",
+ "email": "ns6192295@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lamgerr.json b/domains/lamgerr.json
new file mode 100644
index 000000000..47705b87a
--- /dev/null
+++ b/domains/lamgerr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lamger",
+ "email": "ns6192295@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lamgerxd.json b/domains/lamgerxd.json
new file mode 100644
index 000000000..47705b87a
--- /dev/null
+++ b/domains/lamgerxd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lamger",
+ "email": "ns6192295@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lamnotadev.json b/domains/lamnotadev.json
deleted file mode 100644
index 49555658c..000000000
--- a/domains/lamnotadev.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Syxaaa",
- "email": "nguyenlamyou@gmail.com"
- },
- "record": {
- "CNAME": "chubedanprofile.justtakarin.repl.co"
- }
-}
diff --git a/domains/landyn.json b/domains/landyn.json
new file mode 100644
index 000000000..2650ecc81
--- /dev/null
+++ b/domains/landyn.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "2131guhfgjh",
+ "email": "themoserhousehold@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lap.json b/domains/lap.json
index e08febfd4..0959a03a3 100644
--- a/domains/lap.json
+++ b/domains/lap.json
@@ -4,7 +4,7 @@
"email": "alexanderpaulwheeler15@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/latestnews.json b/domains/latestnews.json
new file mode 100644
index 000000000..5310876c2
--- /dev/null
+++ b/domains/latestnews.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "utsav1o1",
+ "email": "utsavkarki244@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/latuh.json b/domains/latuh.json
index fe8e7d0ee..f27f48e47 100644
--- a/domains/latuh.json
+++ b/domains/latuh.json
@@ -4,7 +4,7 @@
"email": "latitud@duck.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lavalink.trung.json b/domains/lavalink.trung.json
new file mode 100644
index 000000000..c372c8070
--- /dev/null
+++ b/domains/lavalink.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/laxminag.json b/domains/laxminag.json
deleted file mode 100644
index 60358800f..000000000
--- a/domains/laxminag.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "nagln's personal website",
- "repo": "https://github.com/laxminagln/laxminagln.github.io",
- "owner": {
- "username": "laxminagln",
- "email": "laxminagln@gmail.com"
- },
- "record": {
- "CNAME": "www.laxminagln.me"
- }
-}
diff --git a/domains/layor.json b/domains/layor.json
deleted file mode 100644
index 722c0732b..000000000
--- a/domains/layor.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "6346563751",
- "email": "b0bb1e@protonmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/lazycoder.json b/domains/lazycoder.json
deleted file mode 100644
index 3f13a6119..000000000
--- a/domains/lazycoder.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Saiful Personal Website",
- "repo": "https://github.com/saifulppro/lazycoder",
- "owner": {
- "username": "saifulppro",
- "email": "saifulp4200@gmail.com"
- },
- "record": {
- "CNAME": "lazycoder.pages.dev"
- }
-}
diff --git a/domains/lcdled.json b/domains/lcdled.json
index 85993512c..f46962cf3 100644
--- a/domains/lcdled.json
+++ b/domains/lcdled.json
@@ -4,7 +4,7 @@
"email": "TheCatatomic@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/leander.json b/domains/leander.json
new file mode 100644
index 000000000..830afa42b
--- /dev/null
+++ b/domains/leander.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lndrdev",
+ "email": "hellobubbles@tutanota.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/leawty.json b/domains/leawty.json
new file mode 100644
index 000000000..32f988a70
--- /dev/null
+++ b/domains/leawty.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Jacklin52",
+ "email": "gazihakan105@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/leeiz.json b/domains/leeiz.json
new file mode 100644
index 000000000..0f328d30f
--- /dev/null
+++ b/domains/leeiz.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Leizreal",
+ "email": "ridhokur2806@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/legalise.json b/domains/legalise.json
index b39362a36..ef05dd9cf 100644
--- a/domains/legalise.json
+++ b/domains/legalise.json
@@ -4,7 +4,7 @@
"email": "rahibrahman1210@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/legend-sabbir.json b/domains/legend-sabbir.json
index 0dfcc44fa..5336ad16d 100644
--- a/domains/legend-sabbir.json
+++ b/domains/legend-sabbir.json
@@ -4,7 +4,7 @@
"email": "sabbirhossain.trash@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/andrews22.json b/domains/leizreal.json
similarity index 58%
rename from domains/andrews22.json
rename to domains/leizreal.json
index 4dd4aa718..becac851f 100644
--- a/domains/andrews22.json
+++ b/domains/leizreal.json
@@ -1,10 +1,11 @@
{
"owner": {
- "username": "is-a-dev-bot",
- "email": "is-a-dev@win11react.com"
+ "username": "Leizreal",
+ "email": "ridhokur2806@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
+ "AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lellis.json b/domains/lellis.json
deleted file mode 100644
index 9a16087e2..000000000
--- a/domains/lellis.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a cool subdomain",
- "repo": "https://github.com/LellisV2/register",
- "owner": {
- "username": "LellisV2",
- "email": "cloud@lellis.tech"
- },
- "record": {
- "A": ["150.230.126.219"]
- }
-}
diff --git a/domains/lemmy.json b/domains/lemmy.json
deleted file mode 100644
index 583ce9bc8..000000000
--- a/domains/lemmy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "j0code",
- "discord": "j0code",
- "email": ""
- },
- "record": {
- "CNAME": "cohalejoja.selfhost.eu"
- }
-}
diff --git a/domains/lemon.json b/domains/lemon.json
index 99e6ae8e8..f395b54e8 100644
--- a/domains/lemon.json
+++ b/domains/lemon.json
@@ -4,6 +4,6 @@
"email": "lemonl3mn@protonmail.com"
},
"record": {
- "CNAME": "citrus-tree.xyz"
+ "A": ["64.217.148.69"]
}
}
diff --git a/domains/lenn106.json b/domains/lenn106.json
index 5436a8c28..a1fa37678 100644
--- a/domains/lenn106.json
+++ b/domains/lenn106.json
@@ -4,7 +4,7 @@
"email": "lennongreyson@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lennymaxmine.json b/domains/lennymaxmine.json
index 6740aca7c..a9a9023f0 100644
--- a/domains/lennymaxmine.json
+++ b/domains/lennymaxmine.json
@@ -4,7 +4,7 @@
"email": "kurve_bots0z@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/leogoetz.json b/domains/leogoetz.json
index af154117a..965db554d 100644
--- a/domains/leogoetz.json
+++ b/domains/leogoetz.json
@@ -4,7 +4,7 @@
"email": "leo.goetz2008@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/leon.json b/domains/leon.json
deleted file mode 100644
index e9ad23c8a..000000000
--- a/domains/leon.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/LeonskiDev/leonskidev",
- "owner": {
- "username": "LeonskiDev",
- "email": "bodged@pm.me"
- },
- "record": {
- "CNAME": "leonskidev.github.io"
- }
-}
diff --git a/domains/leon3321.json b/domains/leon3321.json
new file mode 100644
index 000000000..894b86057
--- /dev/null
+++ b/domains/leon3321.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leon332157",
+ "email": "leon332157@gmail.com"
+ },
+ "record": {
+ "CNAME": "leon332157.is-a.dev"
+ }
+}
diff --git a/domains/leon332157.json b/domains/leon332157.json
new file mode 100644
index 000000000..16257f3d3
--- /dev/null
+++ b/domains/leon332157.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leon332157",
+ "email": "leon332157@gmail.com"
+ },
+ "record": {
+ "CNAME":"leon332157.github.io"
+ }
+}
diff --git a/domains/levprograming.json b/domains/levprograming.json
deleted file mode 100644
index fbbacf5ed..000000000
--- a/domains/levprograming.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "LevPrograming",
- "repo": "https://github.com/double-square",
- "owner": {
- "username": "double-square",
- "email": "doublesquare@protonmail.com "
- },
- "record": {
- "CNAME": "levprograming.pages.dev"
- }
-}
diff --git a/domains/leymo.json b/domains/leymo.json
new file mode 100644
index 000000000..1fdc978e0
--- /dev/null
+++ b/domains/leymo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tomatolix",
+ "email": "hellobubbles@tutanota.com"
+ },
+ "record": {
+ "CNAME": "uwuhaftig.de"
+ }
+}
diff --git a/domains/lh.json b/domains/lh.json
new file mode 100644
index 000000000..8ec9378e2
--- /dev/null
+++ b/domains/lh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lhwe",
+ "email": "arieslovespiggies@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/li.whine.json b/domains/li.whine.json
deleted file mode 100644
index 836c70839..000000000
--- a/domains/li.whine.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "whi_ne's redirects",
- "owner": {
- "username": "whinee",
- "email": "",
- "twitter": "whi_nyaan"
- },
- "record": {
- "CNAME": "a.redirect.pizza"
- }
-}
diff --git a/domains/liam-h.json b/domains/liam-h.json
index 9b0d635b5..730b67cc0 100644
--- a/domains/liam-h.json
+++ b/domains/liam-h.json
@@ -4,7 +4,7 @@
"email": "liam.hedin.pro@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lightarea.json b/domains/lightarea.json
new file mode 100644
index 000000000..9788b7d23
--- /dev/null
+++ b/domains/lightarea.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "MayankServers",
+ "email": "mayankreal657@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lighty.json b/domains/lighty.json
index 0f206e1bf..5c3a446bf 100644
--- a/domains/lighty.json
+++ b/domains/lighty.json
@@ -1,10 +1,12 @@
{
- "owner": {
- "username": "ImLighty",
- "email": "imlighty@duck.com"
- },
-
- "record": {
- "CNAME": "imlighty.github.io"
+ "owner": {
+ "username": "ssynical",
+ "email": "trapizoids543@gmail.com",
+ "discord": "1108616541739700284"
+ },
+
+ "record": {
+ "CNAME": "ssynical.github.io"
+ }
}
-}
+
\ No newline at end of file
diff --git a/domains/likalium.json b/domains/likalium.json
index d8653bf85..6b9297302 100644
--- a/domains/likalium.json
+++ b/domains/likalium.json
@@ -5,7 +5,7 @@
"username": "likalium",
"email": "",
"twitter": "likalium",
- "discord": "likalium#2870"
+ "discord": "likalium"
},
"record": {
"CNAME": "likalium.github.io"
diff --git a/domains/lintahtorrents.json b/domains/lintahtorrents.json
deleted file mode 100644
index ebaf77f8e..000000000
--- a/domains/lintahtorrents.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "meritocrazy",
- "email": "lunatic@tuta.io"
- },
- "record": {
- "CNAME": "drives.labor.workers.dev"
- }
-}
diff --git a/domains/liquid.json b/domains/liquid.json
deleted file mode 100644
index 2d62d656a..000000000
--- a/domains/liquid.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ThinLiquid",
- "email": "thinliquid@proton.me"
- },
- "record": {
- "CNAME": "9b0994e0-3427-49c7-8609-b7027badd871.id.repl.co"
- }
-}
diff --git a/domains/littleneko.json b/domains/littleneko.json
index 143add315..dc479464a 100644
--- a/domains/littleneko.json
+++ b/domains/littleneko.json
@@ -4,7 +4,7 @@
"email": "mrdriveappstudios@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lixi.json b/domains/lixi.json
new file mode 100644
index 000000000..908c0925c
--- /dev/null
+++ b/domains/lixi.json
@@ -0,0 +1,15 @@
+
+{
+ "owner": {
+ "username": "Lixi002",
+ "email": "felixlixi09@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/llko.json b/domains/llko.json
index 345c40265..9c3d6d741 100644
--- a/domains/llko.json
+++ b/domains/llko.json
@@ -4,7 +4,7 @@
"email": "yo1sefooop@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lmgxenon.json b/domains/lmgxenon.json
deleted file mode 100644
index 62cb39df8..000000000
--- a/domains/lmgxenon.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Hi, I'm LMG XENON. I develop Discord bots, user interfaces and web applications.",
- "owner": {
- "username": "LMGXENON",
- "email": "lmgxenon@gmail.com"
- },
- "record": {
- "CNAME": "2fd4a23b-6608-4be8-b2fc-911cc30b1b87.id.repl.co"
- }
-}
diff --git a/domains/local.jj.json b/domains/local.jj.json
deleted file mode 100644
index ea9fa1419..000000000
--- a/domains/local.jj.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "my playit.gg ip",
- "owner": {
- "username": "TheBotlyNoob",
- "email": "jj@jj.is-a.dev"
- },
- "record": {
- "A": ["147.185.221.193"]
- }
-}
diff --git a/domains/lodestone.json b/domains/lodestone.json
new file mode 100644
index 000000000..d61673cba
--- /dev/null
+++ b/domains/lodestone.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Caiden-P",
+ "email": "iididhejejdj@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/logan2005.json b/domains/logan2005.json
index 3d59d5654..4c2608f70 100644
--- a/domains/logan2005.json
+++ b/domains/logan2005.json
@@ -4,7 +4,7 @@
"email": "logannorman2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/loganpaxton.json b/domains/loganpaxton.json
new file mode 100644
index 000000000..d7f39ed3a
--- /dev/null
+++ b/domains/loganpaxton.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LoganPaxton",
+ "email": "Logan.paxton864@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/login-brawley.json b/domains/login-brawley.json
deleted file mode 100644
index 5415b6f62..000000000
--- a/domains/login-brawley.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "login page for my discord bot",
- "repo": "https://github.com/teamjoelee/me",
- "owner": {
- "username": "brawlie",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "69cfaa0c-dc64-4aae-8038-3d5e8bd27073.repl.co"
- }
-}
diff --git a/domains/logxnic.json b/domains/logxnic.json
index cbc953a16..6b202bd48 100644
--- a/domains/logxnic.json
+++ b/domains/logxnic.json
@@ -4,7 +4,7 @@
"email": "loganlarwood2019@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lol.json b/domains/lol.json
deleted file mode 100644
index 8b7209b26..000000000
--- a/domains/lol.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "lol is a dev",
- "repo": "https://github.com/codingjlu/codingjlu.github.io",
- "owner": {
- "username": "codingjlu",
- "email": "20472547@fhda.edu"
- },
- "record": {
- "CNAME": "codingjlu.github.io"
- }
-}
diff --git a/domains/lol.squaresmp.json b/domains/lol.squaresmp.json
index 93efbb43e..ff5b01645 100644
--- a/domains/lol.squaresmp.json
+++ b/domains/lol.squaresmp.json
@@ -4,7 +4,7 @@
"email": "squaresmp@asia.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lolz.json b/domains/lolz.json
index be4dc5d57..382db9e27 100644
--- a/domains/lolz.json
+++ b/domains/lolz.json
@@ -4,7 +4,7 @@
"email": "lolzthegreat.0223@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/loneorangeball.json b/domains/loneorangeball.json
deleted file mode 100644
index 771da895a..000000000
--- a/domains/loneorangeball.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "loneorangeball's website",
- "owner": {
- "username": "loneorangeball",
- "email": "",
- "twitter": "LoneOrangeBall",
- "discord": "orangeBall#6183"
- },
- "record": {
- "CNAME": "b29ec742-99b6-4ff2-990d-58f9aa910bd1.id.repl.co"
- }
-}
diff --git a/domains/lordwolfy.json b/domains/lordwolfy.json
new file mode 100644
index 000000000..6a9de49ee
--- /dev/null
+++ b/domains/lordwolfy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lordwolfyy",
+ "email": "jaialders2009@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lori28167.json b/domains/lori28167.json
index 82ee22b45..8bc14c5de 100644
--- a/domains/lori28167.json
+++ b/domains/lori28167.json
@@ -4,7 +4,7 @@
"email": "lorenzo.cozzaglio@outlook.it"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lotra.json b/domains/lotra.json
new file mode 100644
index 000000000..cb7be3d60
--- /dev/null
+++ b/domains/lotra.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nlotra",
+ "email": "natashalotra@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/louis.json b/domains/louis.json
new file mode 100644
index 000000000..4dc0b7825
--- /dev/null
+++ b/domains/louis.json
@@ -0,0 +1,11 @@
+{
+ "description": "A portofolio",
+ "repo": "https://github.com/louloudev59/portofolio",
+ "owner": {
+ "username": "louloudev59",
+ "email": "louis.vasseur5@gmail.com"
+ },
+ "record": {
+ "CNAME": "louloudev59.github.io"
+ }
+}
diff --git a/domains/lsantana.json b/domains/lsantana.json
deleted file mode 100644
index 54a0fa45a..000000000
--- a/domains/lsantana.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "lsantana486",
- "email": "lsantana.486@gmail.com"
- },
- "description": "Personal domain for portofolio with my name Luis Santana",
- "repo": "https://github.com/lsantana486/lsantana486",
- "record": {
- "CNAME": "lsantana.dev"
- }
-}
diff --git a/domains/lsy.json b/domains/lsy.json
new file mode 100644
index 000000000..4a3a18d93
--- /dev/null
+++ b/domains/lsy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lsy1998",
+ "email": "1945934866@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lthon09.json b/domains/lthon09.json
deleted file mode 100644
index 14cce2c0d..000000000
--- a/domains/lthon09.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal Website.",
- "owner": {
- "username": "lthon09",
- "email": "",
- "twitter": "lthon09"
- },
- "record": {
- "CNAME": "lthon09.onrender.com"
- }
-}
diff --git a/domains/lucaforever.json b/domains/lucaforever.json
new file mode 100644
index 000000000..8b3527cbe
--- /dev/null
+++ b/domains/lucaforever.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lucaforever",
+ "email": "scorpinyesyeson@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lucas.json b/domains/lucas.json
new file mode 100644
index 000000000..4141e8c24
--- /dev/null
+++ b/domains/lucas.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lucas-labs",
+ "email": "lucasncolombo@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lucassaud.json b/domains/lucassaud.json
new file mode 100644
index 000000000..677def921
--- /dev/null
+++ b/domains/lucassaud.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lucassaud",
+ "email": "lucassaud9@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lucen.json b/domains/lucen.json
new file mode 100644
index 000000000..26aa4ebb9
--- /dev/null
+++ b/domains/lucen.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "lucenstuff",
+ "email": "lucentiniagustin@hotmail.com",
+ "discord": "202467820225822720"
+ },
+
+ "record": {
+ "CNAME": "lucendev.onrender.com"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/lucid.json b/domains/lucid.json
new file mode 100644
index 000000000..51d499c9f
--- /dev/null
+++ b/domains/lucid.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lucideds",
+ "email": "lucideds@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/luisandre.json b/domains/luisandre.json
new file mode 100644
index 000000000..7dc1ca316
--- /dev/null
+++ b/domains/luisandre.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luis073094",
+ "email": "luis073094@gmail.com"
+ },
+ "record": {
+ "URL": "https://portafolio-ctll.onrender.com"
+ }
+}
diff --git a/domains/luishdez.json b/domains/luishdez.json
new file mode 100644
index 000000000..dfe44b8d2
--- /dev/null
+++ b/domains/luishdez.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "luishdez",
+ "email": "luis.munoz.hdez@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/luminexcloud.json b/domains/luminexcloud.json
new file mode 100644
index 000000000..11cf96777
--- /dev/null
+++ b/domains/luminexcloud.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AndrexRo01",
+ "email": "spacersmp@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lumix.json b/domains/lumix.json
new file mode 100644
index 000000000..f0bf1a8cf
--- /dev/null
+++ b/domains/lumix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "o-lumix",
+ "email": "lumixofficiel@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/luna.json b/domains/luna.json
deleted file mode 100644
index 218f42211..000000000
--- a/domains/luna.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Luna Seemann's personal website",
- "repo": "https://github.com/Luna-devv/luna-site",
- "owner": {
- "username": "Luna-devv",
- "email": "luna@waya.one"
- },
- "record": {
- "A": ["51.161.24.80"]
- }
-}
diff --git a/domains/lunacharm.json b/domains/lunacharm.json
new file mode 100644
index 000000000..90b323fe6
--- /dev/null
+++ b/domains/lunacharm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "bot1323",
+ "email": "gutipro13t@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lunar.json b/domains/lunar.json
new file mode 100644
index 000000000..67b3b2fb3
--- /dev/null
+++ b/domains/lunar.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Lunarate",
+ "email": "veershrivastava1011@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/luqmanity.json b/domains/luqmanity.json
index 618bfe59a..55e8f37d3 100644
--- a/domains/luqmanity.json
+++ b/domains/luqmanity.json
@@ -4,7 +4,7 @@
"email": "luqman.yazrie@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/luzivr.json b/domains/luzivr.json
index 7f6a4bc9f..131aef652 100644
--- a/domains/luzivr.json
+++ b/domains/luzivr.json
@@ -4,7 +4,7 @@
"email": "jdvanlear@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/lwes.json b/domains/lwes.json
new file mode 100644
index 000000000..2670b6624
--- /dev/null
+++ b/domains/lwes.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lwescool",
+ "email": "lwescontactyt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lyn.json b/domains/lyn.json
new file mode 100644
index 000000000..e000b051a
--- /dev/null
+++ b/domains/lyn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cosmosc0des",
+ "email": "lyncodes@proton.me"
+ },
+ "record": {
+ "URL": "https://lyncodes.neocities.org"
+ }
+}
diff --git a/domains/lynix.json b/domains/lynix.json
deleted file mode 100644
index ae43967bc..000000000
--- a/domains/lynix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "lynix27",
- "email": "vncntwbr0207@gmail.com"
- },
- "record": {
- "URL": "https://linktr.ee/lynix27"
- }
-}
diff --git a/domains/m-avila.json b/domains/m-avila.json
new file mode 100644
index 000000000..d5507011d
--- /dev/null
+++ b/domains/m-avila.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DxRavage",
+ "email": "marianoavilaj4@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/m1.json b/domains/m1.json
new file mode 100644
index 000000000..b6c74c818
--- /dev/null
+++ b/domains/m1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "m1-dev",
+ "email": "notm1dev@skiff.com"
+ },
+ "record": {
+ "URL": "https://m1-dev.vercel.app"
+ }
+}
diff --git a/domains/m1cro.json b/domains/m1cro.json
new file mode 100644
index 000000000..b44fea3bd
--- /dev/null
+++ b/domains/m1cro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "m1cro-cat",
+ "email": "m1cro_cat@outlook.com"
+ },
+ "record": {
+ "A": ["65.19.141.67"]
+ }
+}
diff --git a/domains/m1dnight.json b/domains/m1dnight.json
deleted file mode 100644
index a9d61622d..000000000
--- a/domains/m1dnight.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "M1dnight's Coding/Digital Art Portfolio",
- "repo": "https://portfolio.m1dnightdev.repl.co",
- "owner": {
- "username": "M1dnight-ofcl",
- "email": "m1dnightgmrofficial@gmail.com"
- },
- "record": {
- "CNAME": "3076868f-0b1c-470a-b31d-f9fbb0ec9030.id.repl.co"
- }
-}
diff --git a/domains/maceng.json b/domains/maceng.json
index 0962bc72c..c1004942b 100644
--- a/domains/maceng.json
+++ b/domains/maceng.json
@@ -4,7 +4,7 @@
"email": "macengbot@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/machi.json b/domains/machi.json
index 044b55d86..cb37ad1ce 100644
--- a/domains/machi.json
+++ b/domains/machi.json
@@ -4,7 +4,7 @@
"email": "ocubrisme@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mafarag.json b/domains/mafarag.json
index c55b7045c..79426f3d7 100644
--- a/domains/mafarag.json
+++ b/domains/mafarag.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/magdi.json b/domains/magdi.json
index 1ef3bd905..ecc90682b 100644
--- a/domains/magdi.json
+++ b/domains/magdi.json
@@ -4,7 +4,7 @@
"email": "ahmed.magdi@msn.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mageclient.json b/domains/mageclient.json
new file mode 100644
index 000000000..5f4364d63
--- /dev/null
+++ b/domains/mageclient.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mageclienttt",
+ "email": "mageclienttt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/magenta.json b/domains/magenta.json
new file mode 100644
index 000000000..edb89124e
--- /dev/null
+++ b/domains/magenta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "EddieCherian",
+ "email": "eddiecherianj@gmail.com"
+ },
+ "record": {
+ "URL": "https://magenta.com"
+ }
+}
diff --git a/domains/mahfuz.json b/domains/mahfuz.json
new file mode 100644
index 000000000..0def90f46
--- /dev/null
+++ b/domains/mahfuz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mahfuz0001",
+ "email": "manjulkhatter01@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mahi.json b/domains/mahi.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/mahi.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/maikeru.json b/domains/maikeru.json
new file mode 100644
index 000000000..d07a60c5b
--- /dev/null
+++ b/domains/maikeru.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Maikeruwu",
+ "email": "michael.h.1708@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mail.boolean44.json b/domains/mail.boolean44.json
deleted file mode 100644
index fe8a0d3d8..000000000
--- a/domains/mail.boolean44.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "boolean44-repos",
- "email": "serenitypalmer10@gmail.com"
- },
- "record": {
- "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."],
- "A": ["10.0.0.1"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/mail.chiragnahata.json b/domains/mail.chiragnahata.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/mail.chiragnahata.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/thedev.json b/domains/mail.deadcode.json
similarity index 60%
rename from domains/thedev.json
rename to domains/mail.deadcode.json
index 2236897cd..0f5797fd4 100644
--- a/domains/thedev.json
+++ b/domains/mail.deadcode.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "thedev132",
- "email": "thedev132@gmail.com"
+ "username": "RichardKanshen",
+ "email": "richard@kanshen.click"
},
"record": {
- "A": ["138.2.237.127"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/mail.enderpoint.json b/domains/mail.enderpoint.json
index 8725e52e8..1a1a452f9 100644
--- a/domains/mail.enderpoint.json
+++ b/domains/mail.enderpoint.json
@@ -1,17 +1,11 @@
{
- "description": "EnderPoint's dev site",
"owner": {
"username": "EnderPoint07",
"email": "",
- "discord": "DotM38#5497",
- "instagram": "enderpoint07"
+ "discord": "dotm38"
},
"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"
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/mail.json b/domains/mail.json
new file mode 100644
index 000000000..ef09a36fd
--- /dev/null
+++ b/domains/mail.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
+ },
+
+ "record": {
+ "A": ["51.161.54.164"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "google-site-verification=pcSxUAiBwhvh9AVBbSSkKZovjsUFZzMgnh3q6XfGe1E"
+ }
+}
diff --git a/domains/mail.mrjunkyz.json b/domains/mail.mrjunkyz.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/mail.mrjunkyz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/mail.neki.json b/domains/mail.neki.json
new file mode 100644
index 000000000..cf94fe408
--- /dev/null
+++ b/domains/mail.neki.json
@@ -0,0 +1,10 @@
+{
+ "description": "Mail de Santiago",
+ "owner": {
+ "username": "PinkLittleKitty",
+ "email": "santyfisela@gmail.com"
+ },
+ "record": {
+ "TXT": "zoho-verification=zb84078345.zmverify.zoho.com"
+ }
+}
diff --git a/domains/mail.norkart.json b/domains/mail.norkart.json
new file mode 100644
index 000000000..43401ac60
--- /dev/null
+++ b/domains/mail.norkart.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "norkart1",
+ "email": "navasforwork@gmail.com",
+ "discord": "captnork"
+ },
+ "record": {
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/mail.noteswallah.json b/domains/mail.noteswallah.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/mail.noteswallah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/mail.stefdp.json b/domains/mail.stefdp.json
deleted file mode 100644
index ccc349163..000000000
--- a/domains/mail.stefdp.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "owner": {
- "username": "Stef-00012",
- "email": "admin@stefdp.is-a.dev",
- "discord": "694986201739952229"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/mail.teamcodearc.json b/domains/mail.teamcodearc.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/mail.teamcodearc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/mail.toasty.json b/domains/mail.toasty.json
new file mode 100644
index 000000000..3e46b1277
--- /dev/null
+++ b/domains/mail.toasty.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "toastyyyxd",
+ "email": "asaeasaeasae.x10@gmail.com",
+ "discord": "577480703302959104"
+ },
+
+ "record": {
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.zerow.json b/domains/mail.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/mail.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/main.json b/domains/main.json
new file mode 100644
index 000000000..22112fbac
--- /dev/null
+++ b/domains/main.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "qofdaq",
+ "email": "qofdaq@skiff.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/maintainers.json b/domains/maintainers.json
index e080ed5f4..8b11b2c87 100644
--- a/domains/maintainers.json
+++ b/domains/maintainers.json
@@ -5,7 +5,7 @@
},
"record": {
"URL": "https://team.is-a.dev",
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=isdevmail.beadman-network.com,andrew@win11react.com"
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/majorhead.json b/domains/majorhead.json
index 2f3667679..e50fef30f 100644
--- a/domains/majorhead.json
+++ b/domains/majorhead.json
@@ -4,7 +4,7 @@
"email": "alephdiallo@mail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/mak448a.json b/domains/mak448a.json
new file mode 100644
index 000000000..a07099e15
--- /dev/null
+++ b/domains/mak448a.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mak448a",
+ "email": "thracc448@gmail.com"
+ },
+ "record": {
+ "CNAME": "mak448a.github.io"
+ }
+}
diff --git a/domains/makeshiftartist.json b/domains/makeshiftartist.json
index ddcf47993..094063dfa 100644
--- a/domains/makeshiftartist.json
+++ b/domains/makeshiftartist.json
@@ -4,7 +4,7 @@
"email": "MakeShiftDevelopment@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["mx1.improvmx.com.", "mx2.improvmx.com."],
"TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all"
}
diff --git a/domains/mako.json b/domains/mako.json
deleted file mode 100644
index 332c2795d..000000000
--- a/domains/mako.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GoldenFire2317",
- "email": "buttersword2017@gmail.com"
- },
- "record": {
- "CNAME": "mako.mkoca.org"
- }
-}
diff --git a/domains/mamad.json b/domains/mamad.json
index 32f4bb151..6c8b3f5a1 100644
--- a/domains/mamad.json
+++ b/domains/mamad.json
@@ -4,7 +4,7 @@
"email": "mna969@uowmail.edu.au"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mammad.json b/domains/mammad.json
index bd83ea47b..5121abe84 100644
--- a/domains/mammad.json
+++ b/domains/mammad.json
@@ -4,7 +4,7 @@
"email": "mohamadzali@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/manage.uptime.trung.json b/domains/manage.uptime.trung.json
new file mode 100644
index 000000000..c372c8070
--- /dev/null
+++ b/domains/manage.uptime.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/manav.json b/domains/manav.json
new file mode 100644
index 000000000..06e14e61a
--- /dev/null
+++ b/domains/manav.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Manav011",
+ "email": "manav.12110503@lpu.in"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/manjunathkalburgi.json b/domains/manjunathkalburgi.json
new file mode 100644
index 000000000..0ea921707
--- /dev/null
+++ b/domains/manjunathkalburgi.json
@@ -0,0 +1,12 @@
+{
+ "description": "Manjunath Kalburgi Portfolio",
+ "repo": "https://github.com/aftoncodes/aftoncodes.github.io",
+ "owner": {
+ "username": "manjunathkalburgi",
+ "email": "manjunathkalburgi@gmail.com",
+ "twitter": "manjunathmk"
+ },
+ "record": {
+ "URL": "https://2j4h53-3000.csb.app/"
+ }
+}
diff --git a/domains/mansi.json b/domains/mansi.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/mansi.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/manu.json b/domains/manu.json
index c79fb5267..01de5ecfc 100644
--- a/domains/manu.json
+++ b/domains/manu.json
@@ -1,11 +1,11 @@
{
"description": "manu.is-a.dev",
- "repo": "https://github.com/manuthecoder/personal-website",
+ "repo": "https://github.com/manuthecoder/manuthecoder",
"owner": {
"username": "manuthecoder",
"email": "manusvathgurudath@gmail.com"
},
"record": {
- "CNAME": "manu-is-a-dev-yqz2.onrender.com"
+ "CNAME": "manuthecoder.pages.dev"
}
}
diff --git a/domains/manuel.json b/domains/manuel.json
index 51e6a6b89..14d8d0ccb 100644
--- a/domains/manuel.json
+++ b/domains/manuel.json
@@ -4,7 +4,7 @@
"email": "emanuelea.rega@itisvoltanapoli.edu.it"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/marban.json b/domains/marban.json
new file mode 100644
index 000000000..5d157fc37
--- /dev/null
+++ b/domains/marban.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rahuletto",
+ "email": "rahulmarban@gmail.com"
+ },
+ "record": {
+ "CNAME": "marban.pages.dev"
+ }
+}
diff --git a/domains/marby.json b/domains/marby.json
index 8b0cdace2..d6c07c42f 100644
--- a/domains/marby.json
+++ b/domains/marby.json
@@ -4,7 +4,7 @@
"email": "stanasarts@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/marcel.json b/domains/marcel.json
new file mode 100644
index 000000000..00baebea7
--- /dev/null
+++ b/domains/marcel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "marceljsh",
+ "email": "marceljoshua69@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/marchiba99.json b/domains/marchiba99.json
new file mode 100644
index 000000000..89536c1a6
--- /dev/null
+++ b/domains/marchiba99.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "marchiba99",
+ "email": "marchiba99@gmail.com"
+ },
+ "record": {
+ "CNAME": "marchiba99.github.io"
+ }
+}
diff --git a/domains/marcusj.json b/domains/marcusj.json
deleted file mode 100644
index bb5bd674d..000000000
--- a/domains/marcusj.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio of Marcus Weinberger",
- "repo": "https://github.com/AgeOfMarcus",
- "owner": {
- "username": "AgeOfMarcus",
- "email": "marcusjw.ftw@gmail.com"
- },
- "record": {
- "CNAME": "dev.marcusj.tech"
- }
-}
diff --git a/domains/mariovaldez.json b/domains/mariovaldez.json
new file mode 100644
index 000000000..5eee5c8da
--- /dev/null
+++ b/domains/mariovaldez.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "DevMarioValdez",
+ "email": "marioaf.valdez@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mark.json b/domains/mark.json
deleted file mode 100644
index 35a6b55d0..000000000
--- a/domains/mark.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Makr Davydov is a Developer!",
- "repo": "https://github.com/markrity",
- "owner": {
- "username": "markrity",
- "email": "markrity@gmail.com"
- },
- "record": {
- "URL": "https://www.linkedin.com/in/davydovmark"
- }
-}
diff --git a/domains/maskduck.json b/domains/maskduck.json
index 7195fbb1c..6597fe344 100644
--- a/domains/maskduck.json
+++ b/domains/maskduck.json
@@ -3,12 +3,12 @@
"repo": "https://github.com/maskducks/maskducks.github.io",
"owner": {
"username": "MaskDuck",
- "email": "",
- "discord": "MaskDuck#7325",
+ "email": "maskduckuwu@gmail.com",
+ "discord": "maskduck",
"reddit": "u/maskduck",
"note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
},
"record": {
- "CNAME": "maskduck.pages.dev"
+ "CNAME": "maskduck.github.io"
}
}
diff --git a/domains/master.json b/domains/master.json
index 6c05eaf9c..383835b97 100644
--- a/domains/master.json
+++ b/domains/master.json
@@ -4,7 +4,7 @@
"email": "masteriscool223@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/matrix.vi0leta.json b/domains/matrix.vi0leta.json
index 23a4748ac..ea691c545 100644
--- a/domains/matrix.vi0leta.json
+++ b/domains/matrix.vi0leta.json
@@ -4,8 +4,6 @@
"email": "vi0leta@riseup.net"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "A": ["37.27.4.76"]
}
-}
\ No newline at end of file
+}
diff --git a/domains/matt.json b/domains/matt.json
index d74f8375a..a3c862235 100644
--- a/domains/matt.json
+++ b/domains/matt.json
@@ -1,11 +1,14 @@
{
- "description": "Matt Casey is a Developer!",
- "repo": "https://github.com/mattcasey",
"owner": {
- "username": "mattcasey",
- "email": "mattwad@gmail.com"
+ "username": "SpearDevelopment1",
+ "email": "dev@spear.best"
},
"record": {
- "URL": "https://www.linkedin.com/in/mbcasey"
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/mauricio.json b/domains/mauricio.json
index 09ec5f28b..a676e449a 100644
--- a/domains/mauricio.json
+++ b/domains/mauricio.json
@@ -4,7 +4,7 @@
"email": "mauriciom.curiel@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/max.json b/domains/max.json
deleted file mode 100644
index 9ee172344..000000000
--- a/domains/max.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "mdsmax",
- "email": "maxguilham@protonmail.com"
- },
- "record": {
- "A": ["34.149.204.188"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/maxgreet.json b/domains/maxgreet.json
new file mode 100644
index 000000000..4dd26cda0
--- /dev/null
+++ b/domains/maxgreet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "emmu2008",
+ "email": "aneenababu17901@gmail.com"
+ },
+ "record": {
+ "CNAME": "emmu123.github.io"
+ }
+}
diff --git a/domains/maximking.json b/domains/maximking.json
deleted file mode 100644
index ee444b0bb..000000000
--- a/domains/maximking.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Maxim K Personal Dev Site",
- "owner": {
- "username": "MaximKing",
- "email": "business@maximking.co.uk"
- },
- "record": {
- "CNAME": "maximking.co.uk"
- }
-}
diff --git a/domains/maximumdevmode.json b/domains/maximumdevmode.json
new file mode 100644
index 000000000..d5ad34012
--- /dev/null
+++ b/domains/maximumdevmode.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MaximumDevMode",
+ "email": "MaximumDevMode@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/maxired.json b/domains/maxired.json
deleted file mode 100644
index e0f2bfa64..000000000
--- a/domains/maxired.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "maxired",
- "email": "github@maxired.fr"
- },
- "record": {
- "CNAME": "www.maxired.fr"
- }
-}
diff --git a/domains/mazimez.json b/domains/mazimez.json
index 0bb3e5e3c..f303e64bf 100644
--- a/domains/mazimez.json
+++ b/domains/mazimez.json
@@ -4,7 +4,7 @@
"email": "asif987patel@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mbenetta.json b/domains/mbenetta.json
deleted file mode 100644
index 2794d8db2..000000000
--- a/domains/mbenetta.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ruben-as",
- "email": "ruben.aja.85@gmail.com"
- },
- "record": {
- "A": ["212.227.32.105"]
- }
-}
diff --git a/domains/mbg.json b/domains/mbg.json
deleted file mode 100644
index b4c01c595..000000000
--- a/domains/mbg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MBG1337",
- "email": "MBGx1337@gmail.com"
- },
- "record": {
- "A": ["3.120.250.108"]
- }
-}
diff --git a/domains/mc-wolmarans.json b/domains/mc-wolmarans.json
new file mode 100644
index 000000000..9b3247382
--- /dev/null
+++ b/domains/mc-wolmarans.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mc141",
+ "email": "marthinuswolmarans61@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mc.daniel.json b/domains/mc.daniel.json
deleted file mode 100644
index d609fa170..000000000
--- a/domains/mc.daniel.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "2b2t Minecraft proxy",
-
- "owner": {
- "username": "hackermondev",
- "email": "isadev@daniel.is-a.dev",
- "twitter": "hackermondev"
- },
-
- "record": {
- "A": ["44.203.172.179"]
- }
-}
diff --git a/domains/mc.dergraph.json b/domains/mc.dergraph.json
deleted file mode 100644
index c302aa996..000000000
--- a/domains/mc.dergraph.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "derGraph",
- "email": "dergraph@f5.si"
- },
- "record": {
- "A": ["83.215.31.101"]
- }
-}
diff --git a/domains/mc.toastersticks.json b/domains/mc.toastersticks.json
deleted file mode 100644
index eb779638f..000000000
--- a/domains/mc.toastersticks.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ToasterSticks",
- "email": "matt.zhao.18@gmail.com"
- },
- "record": {
- "A": ["168.138.69.189"]
- }
-}
diff --git a/domains/mc1.notjadeja.json b/domains/mc1.notjadeja.json
deleted file mode 100644
index 2f92a3446..000000000
--- a/domains/mc1.notjadeja.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "HalalJadeja",
- "discord": "NotJadeja#8183",
- "email": "9236.stkabirdio@gmail.com"
- },
- "record": {
- "A": ["147.185.221.180"]
- }
-}
diff --git a/domains/mcgraph.json b/domains/mcgraph.json
deleted file mode 100644
index 043e6a35f..000000000
--- a/domains/mcgraph.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "playstation452",
- "email": "oscarlin1026@gmail.com"
- },
- "record": {
- "CNAME": "justaminecraftgraph.swapniladhikari.com.np"
- }
-}
diff --git a/domains/mcio.json b/domains/mcio.json
deleted file mode 100644
index 5ad1cbb1f..000000000
--- a/domains/mcio.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "PHYT90DitYT",
- "email": "chess049@rsdmo.org",
- "discord": "798934178783559710"
- },
-
- "record": {
- "CNAME": "mine-craft.io"
- }
-}
diff --git a/domains/mctest.json b/domains/mctest.json
deleted file mode 100644
index 9fe2db999..000000000
--- a/domains/mctest.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TechnoFusionTech",
- "email": "technofusiontech@techie.com"
- },
- "record": {
- "A": ["213.239.207.141"]
- }
-}
diff --git a/domains/mcz.json b/domains/mcz.json
deleted file mode 100644
index 48e29ec65..000000000
--- a/domains/mcz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Mczgodpiggy",
- "email": "dragonhuntergamingweb@gmail.com"
- },
- "record": {
- "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co"
- }
-}
diff --git a/domains/mczgodpiggy.json b/domains/mczgodpiggy.json
deleted file mode 100644
index 17dae5044..000000000
--- a/domains/mczgodpiggy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Mczgodpiggy",
- "email": "aukoeh@gmail.com"
- },
- "record": {
- "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co"
- }
-}
diff --git a/domains/mdbesoain.json b/domains/mdbesoain.json
index 36e233813..234d840ec 100644
--- a/domains/mdbesoain.json
+++ b/domains/mdbesoain.json
@@ -4,7 +4,7 @@
"email": "mdbesoain@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mdk.json b/domains/mdk.json
deleted file mode 100644
index a3d3e99fb..000000000
--- a/domains/mdk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MaskDuck",
- "email": "it-is@too-obvious-that.maskduck.is-a.dev"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/mean.json b/domains/mean.json
new file mode 100644
index 000000000..ef03c1641
--- /dev/null
+++ b/domains/mean.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MeanZhang",
+ "email": "zhangmean@outlook.com"
+ },
+ "record": {
+ "CNAME": "meanzhang.github.io"
+ }
+}
diff --git a/domains/meerkats.shays.json b/domains/meerkats.shays.json
new file mode 100644
index 000000000..19b709877
--- /dev/null
+++ b/domains/meerkats.shays.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SHays24",
+ "email": "shays24@student.sacs.nsw.edu.au"
+ },
+ "record": {
+ "CNAME": "the-meerkats-projects-shays24-90484013ec4c0067187cd3a154c706ad6.gitlab.io"
+ }
+}
diff --git a/domains/meerveld.json b/domains/meerveld.json
new file mode 100644
index 000000000..5a65d0585
--- /dev/null
+++ b/domains/meerveld.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FabianMeerveld",
+ "email": "fabian.meerveld@student.hu.nl"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mehedi.json b/domains/mehedi.json
new file mode 100644
index 000000000..271cae80e
--- /dev/null
+++ b/domains/mehedi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "CNAME": "asma019.github.io"
+ }
+}
diff --git a/domains/mehedibd.json b/domains/mehedibd.json
new file mode 100644
index 000000000..965c62d0b
--- /dev/null
+++ b/domains/mehedibd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "A": ["172.104.43.107"]
+ }
+}
diff --git a/domains/menard.json b/domains/menard.json
new file mode 100644
index 000000000..35c72932a
--- /dev/null
+++ b/domains/menard.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevNanad",
+ "email": "menardpajares02@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-fe29.onrender.com"
+ }
+}
diff --git a/domains/meraj.json b/domains/meraj.json
new file mode 100644
index 000000000..e86124761
--- /dev/null
+++ b/domains/meraj.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MRJ-Badshah",
+ "email": "illegalhacker2.0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mersillc.json b/domains/mersillc.json
new file mode 100644
index 000000000..836a26903
--- /dev/null
+++ b/domains/mersillc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mersi-LLC",
+ "email": "marsitvtube@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mesmerica.json b/domains/mesmerica.json
new file mode 100644
index 000000000..bf934eba0
--- /dev/null
+++ b/domains/mesmerica.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "meteoritics-reii",
+ "email": "reii.meteoritics@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mewwme.json b/domains/mewwme.json
new file mode 100644
index 000000000..7b7305fc6
--- /dev/null
+++ b/domains/mewwme.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmn.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "mewwme.github.io"
+ }
+}
diff --git a/domains/mfarag.json b/domains/mfarag.json
index c55b7045c..79426f3d7 100644
--- a/domains/mfarag.json
+++ b/domains/mfarag.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mfused.json b/domains/mfused.json
index b9dccc513..aa98be810 100644
--- a/domains/mfused.json
+++ b/domains/mfused.json
@@ -4,7 +4,7 @@
"email": "fiverronlyokay@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mh4d.json b/domains/mh4d.json
deleted file mode 100644
index b39a07d6b..000000000
--- a/domains/mh4d.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "mh4d",
- "email": "muhamednaous@gmail.com"
- },
- "description": "I'll probably put some project pages on mh4d.is-a.dev.",
- "record": {
- "CNAME": "940f2633-fe4f-4fd8-89e5-4fbfaa73e8a7.id.repl.co"
- }
-}
diff --git a/domains/mhmd.json b/domains/mhmd.json
index 0327e8e2c..1db3e314a 100644
--- a/domains/mhmd.json
+++ b/domains/mhmd.json
@@ -4,7 +4,7 @@
"email": "mj@naous.eu.org"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mhsunny.json b/domains/mhsunny.json
new file mode 100644
index 000000000..b1963a898
--- /dev/null
+++ b/domains/mhsunny.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "mehedi6800",
+ "email": "hassainmehedi3@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/michaelbelete.json b/domains/michaelbelete.json
deleted file mode 100644
index 2ae7099d6..000000000
--- a/domains/michaelbelete.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "michael belete portfolio website",
- "repo": "https://github.com/michaelbelete",
- "owner": {
- "username": "michaelbelete",
- "email": "it.michael.belete@gmail.com"
- },
- "record": {
- "URL": "https://michaelb.iceiy.com"
- }
-}
diff --git a/domains/miho.json b/domains/miho.json
index c70ecfd09..9300449be 100644
--- a/domains/miho.json
+++ b/domains/miho.json
@@ -4,7 +4,7 @@
"email": "nguyenha280876@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/miku.json b/domains/miku.json
deleted file mode 100644
index b62050c12..000000000
--- a/domains/miku.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "sercwn",
- "email": "artidoxd@gmail.com"
- },
- "record": {
- "URL": "https://playmiku.blogspot.com/2023/08/miku_98.html"
- }
-}
diff --git a/domains/milcon-uptimer.json b/domains/milcon-uptimer.json
deleted file mode 100644
index 8471985a7..000000000
--- a/domains/milcon-uptimer.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Uptimer site",
- "owner": {
- "username": "njanemmu",
- "email": "aneenababu71901@gmail.com"
- },
- "record": {
- "CNAME": "ce061efe-4c98-41af-b793-2e0d4e4322a1.id.repl.co"
- }
-}
diff --git a/domains/miljte.json b/domains/miljte.json
new file mode 100644
index 000000000..955a4a263
--- /dev/null
+++ b/domains/miljte.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Miljte",
+ "email": "hak4rgof120876@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/milocat.json b/domains/milocat.json
deleted file mode 100644
index d6084b3a7..000000000
--- a/domains/milocat.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "BigKitten",
- "email": "",
- "discord": "MiloCat#8198"
- },
- "record": {
- "CNAME": "MiloCat.repl.co"
- }
-}
diff --git a/domains/mimic.json b/domains/mimic.json
deleted file mode 100644
index 0c15b8a51..000000000
--- a/domains/mimic.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Mimic Services",
- "repo": "https://github.com/mimicdotga",
- "owner": {
- "username": "mimicdotga",
- "email": "hello@mimic.ga"
- },
- "record": {
- "CNAME": "mimicdotga.duckdns.org"
- }
-}
diff --git a/domains/mine.craft.json b/domains/mine.craft.json
new file mode 100644
index 000000000..0b9799197
--- /dev/null
+++ b/domains/mine.craft.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Ocean-OS",
+ "email": "andrewhnolt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mingihihi.json b/domains/mingihihi.json
index 957f0af69..0e598d609 100644
--- a/domains/mingihihi.json
+++ b/domains/mingihihi.json
@@ -4,7 +4,7 @@
"email": "modelvnn@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/miniexploit.json b/domains/miniexploit.json
deleted file mode 100644
index f22688d71..000000000
--- a/domains/miniexploit.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "miniexploit",
- "email": "miniexploitttt@gmail.com"
- },
- "record": {
- "A": ["14.232.197.17"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:14.232.197.17 ~all"
- }
-}
diff --git a/domains/minihoot.json b/domains/minihoot.json
index b3f5dde2c..cc3661df7 100644
--- a/domains/minihoot.json
+++ b/domains/minihoot.json
@@ -4,7 +4,7 @@
"email": "henrymahlberg65@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/minion.json b/domains/minion.json
deleted file mode 100644
index 6c6b8d540..000000000
--- a/domains/minion.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "joaozeiradev",
- "email": "joaofelipegamer24@gmail.com"
- },
-
- "record": {
- "A": ["191.233.30.89"]
- }
-}
diff --git a/domains/minkxx.json b/domains/minkxx.json
new file mode 100644
index 000000000..bfa37a224
--- /dev/null
+++ b/domains/minkxx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "minkxx",
+ "email": "aryuokk@gmail.com"
+ },
+ "record": {
+ "URL": "https://minkxx.onrender.com"
+ }
+}
diff --git a/domains/minoa.json b/domains/minoa.json
new file mode 100644
index 000000000..90b2f2f78
--- /dev/null
+++ b/domains/minoa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "M1noa",
+ "email": "baccusminoa@gmail.com"
+ },
+ "record": {
+ "URL": "https://about.minoa.cat"
+ }
+}
diff --git a/domains/miro.json b/domains/miro.json
deleted file mode 100644
index 51c29d65e..000000000
--- a/domains/miro.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My other site :)",
- "repo": "https://replit.com/@RoBlockHead/mirois-adev",
- "owner": {
- "username": "RoBlockHead",
- "email": "tessa7551@gmail.com"
- },
- "record": {
- "CNAME": "c2b57eca-71a9-4f20-8877-c210f7e71f12.repl.co"
- }
-}
diff --git a/domains/mishalshanavas.json b/domains/mishalshanavas.json
new file mode 100644
index 000000000..c45fd9940
--- /dev/null
+++ b/domains/mishalshanavas.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mishalshanavas",
+ "email": "mishalshanavas8@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/misi.json b/domains/misi.json
new file mode 100644
index 000000000..c3b845699
--- /dev/null
+++ b/domains/misi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "suhajda3",
+ "email": "",
+ "twitter": "misi"
+ },
+ "record": {
+ "URL": "https://6esm7nio666sm3gejt6cl4gc3e0dzavv.lambda-url.eu-central-1.on.aws"
+ }
+}
diff --git a/domains/mitchellecamacho.json b/domains/mitchellecamacho.json
deleted file mode 100644
index df53227ed..000000000
--- a/domains/mitchellecamacho.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "mitchcam81",
- "email": "mocamacho.works@gmail.com"
- },
- "record": {
- "CNAME": "mitchellecamacho.com"
- }
-}
diff --git a/domains/miyonaki.json b/domains/miyonaki.json
new file mode 100644
index 000000000..338ba0c86
--- /dev/null
+++ b/domains/miyonaki.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "OlaMushroom",
+ "email": "ola.mushroom@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mjs.json b/domains/mjs.json
deleted file mode 100644
index 2b39ed2a1..000000000
--- a/domains/mjs.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "Mohdjariullah",
- "email": "mohdjariullah@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 890323443252351046"
- },
-
- "record": {
- "CNAME": "fdf28412-bb15-46fb-97b5-e4ea905c949b.id.repl.co"
-
- }
-}
diff --git a/domains/mlemingcapoo.json b/domains/mlemingcapoo.json
new file mode 100644
index 000000000..bfbb904a5
--- /dev/null
+++ b/domains/mlemingcapoo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mlemingcapoo",
+ "email": "ducvu73@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/mnoer.json b/domains/mnoer.json
new file mode 100644
index 000000000..deafb8c4c
--- /dev/null
+++ b/domains/mnoer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "m-noer",
+ "email": "mnoer@nerolab.dev"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mnshakib.json b/domains/mnshakib.json
new file mode 100644
index 000000000..d4e6e8c07
--- /dev/null
+++ b/domains/mnshakib.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "flam3arafat",
+ "email": "flamearafat@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/moe.json b/domains/moe.json
deleted file mode 100644
index aeb62b6da..000000000
--- a/domains/moe.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Moe's Portfolio site",
- "repo": "https://github.com/abused/abused.github.io",
- "owner": {
- "username": "abused",
- "email": "techperson71@gmail.com"
- },
- "record": {
- "URL": "https://moealothman.com"
- }
-}
diff --git a/domains/mohab.json b/domains/mohab.json
index 01b5231c3..636aeb56f 100644
--- a/domains/mohab.json
+++ b/domains/mohab.json
@@ -4,7 +4,7 @@
"email": "heroxmain@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mohammed.json b/domains/mohammed.json
index dd140730e..1651c390a 100644
--- a/domains/mohammed.json
+++ b/domains/mohammed.json
@@ -4,7 +4,7 @@
"email": "vx2dsk@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mohand.json b/domains/mohand.json
index 68156f035..317c6de8a 100644
--- a/domains/mohand.json
+++ b/domains/mohand.json
@@ -4,7 +4,7 @@
"email": "mohandakliamara09@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json
index aa70ee03d..d6704ced9 100644
--- a/domains/mohdjariullah.json
+++ b/domains/mohdjariullah.json
@@ -6,7 +6,7 @@
"discord": "@jariullah"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mokajmc.oxmc.json b/domains/mokajmc.oxmc.json
new file mode 100644
index 000000000..ba37338bc
--- /dev/null
+++ b/domains/mokajmc.oxmc.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "oxmc",
+ "email": "oxmc7769.mail@gmail.com",
+ "discord": "oxmc7769"
+ },
+ "record": {
+ "A": ["198.244.164.183"],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=contact:oxmc7769.mail@gmail.com"
+ }
+}
diff --git a/domains/monissh.json b/domains/monissh.json
index 4d539f85a..a940ed997 100644
--- a/domains/monissh.json
+++ b/domains/monissh.json
@@ -4,7 +4,7 @@
"email": "itsamemonissh@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mono.json b/domains/mono.json
new file mode 100644
index 000000000..267ea1a23
--- /dev/null
+++ b/domains/mono.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "imakittymeow",
+ "email": "iamakitty@interia.pl"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/monuk7735.json b/domains/monuk7735.json
deleted file mode 100644
index 870f472e4..000000000
--- a/domains/monuk7735.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "monuk7735",
- "email": "monuk7735@gmail.com"
- },
-
- "record": {
- "CNAME": "monuk7735.roundraven.com"
- }
-}
diff --git a/domains/moonboy.json b/domains/moonboy.json
deleted file mode 100644
index d421d1257..000000000
--- a/domains/moonboy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "My cdn",
- "owner": {
- "username": "A-cute-blob",
- "email": "sambitkayal255@gmail.com"
- },
- "record": {
- "CNAME": "5dd47b4e-07c1-43a2-bf6e-05953b263786.repl.co"
- }
-}
diff --git a/domains/moonmachine.json b/domains/moonmachine.json
new file mode 100644
index 000000000..2d3aca564
--- /dev/null
+++ b/domains/moonmachine.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mikaaamoe",
+ "email": "itzmerinz.dc@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mosa.json b/domains/mosa.json
deleted file mode 100644
index 2c26d4a80..000000000
--- a/domains/mosa.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "For my portfolio website made by using HTML + CSS and JS",
- "owner": {
- "username": "mosageneral",
- "email": "mosageneral@gmail.com"
- },
- "record": {
- "A": ["130.162.168.84"]
- }
-}
diff --git a/domains/mosaab.json b/domains/mosaab.json
index f6e3e27f2..3558bce71 100644
--- a/domains/mosaab.json
+++ b/domains/mosaab.json
@@ -6,8 +6,8 @@
"email": "mosaabgka@outlook.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"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/mostafizurrahman.json b/domains/mostafizur-rahman.json
similarity index 80%
rename from domains/mostafizurrahman.json
rename to domains/mostafizur-rahman.json
index 339a082ba..196080d64 100644
--- a/domains/mostafizurrahman.json
+++ b/domains/mostafizur-rahman.json
@@ -4,7 +4,7 @@
"email": "tplink3116@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mpacheco.json b/domains/mpacheco.json
new file mode 100644
index 000000000..1af5f9931
--- /dev/null
+++ b/domains/mpacheco.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MichaelPachec0",
+ "email": "michaelpacheco@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mpangobank.json b/domains/mpangobank.json
index dda3ac1a1..6580dddf2 100644
--- a/domains/mpangobank.json
+++ b/domains/mpangobank.json
@@ -4,7 +4,7 @@
"email": "abdulhaulerashid@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mr.json b/domains/mr.json
index 2f123d9b5..6af3c2e52 100644
--- a/domains/mr.json
+++ b/domains/mr.json
@@ -4,7 +4,7 @@
"email": "adrienansari@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mr.noname.json b/domains/mr.noname.json
new file mode 100644
index 000000000..b5f918a82
--- /dev/null
+++ b/domains/mr.noname.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nonamehtml",
+ "email": "nonameprobots@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mr.stuffmaker.json b/domains/mr.stuffmaker.json
new file mode 100644
index 000000000..f083fc786
--- /dev/null
+++ b/domains/mr.stuffmaker.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MrStuffmaker",
+ "email": "acapello6666@gmail.com"
+ },
+ "record": {
+ "A": ["109.71.253.24"]
+ }
+}
diff --git a/domains/mra1k3r0.json b/domains/mra1k3r0.json
new file mode 100644
index 000000000..785020460
--- /dev/null
+++ b/domains/mra1k3r0.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mra1k3r0",
+ "email": "jocaigas@my.cspc.edu.ph"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mrepol742.json b/domains/mrepol742.json
new file mode 100644
index 000000000..0af11f84d
--- /dev/null
+++ b/domains/mrepol742.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mrepol742",
+ "email": "mrepol742@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrepol742.github.io"
+ }
+}
diff --git a/domains/mrj.json b/domains/mrj.json
index f3e362dd2..21d629caf 100644
--- a/domains/mrj.json
+++ b/domains/mrj.json
@@ -4,7 +4,7 @@
"email": "illegalhacker2.0@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mrjbadshah.json b/domains/mrjbadshah.json
new file mode 100644
index 000000000..21d629caf
--- /dev/null
+++ b/domains/mrjbadshah.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MRJ-Badshah",
+ "email": "illegalhacker2.0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/mrjunkyz.json b/domains/mrjunkyz.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/mrjunkyz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/mrnover.json b/domains/mrnover.json
deleted file mode 100644
index 0873dc77f..000000000
--- a/domains/mrnover.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "MrNover's Website",
- "repo": "https://github.com/MrNoverGitHub/mrnoverdevsite",
- "owner": {
- "username": "mrnovergithub",
- "email": "mrnover@mrnover.com",
- "twitter": "Mr_Nover"
- },
- "record": {
- "CNAME": "9800a36a-2d84-483e-a96f-72b8263cc24e.id.repl.co"
- }
-}
diff --git a/domains/mrrob0t.json b/domains/mrrob0t.json
index c55b7045c..79426f3d7 100644
--- a/domains/mrrob0t.json
+++ b/domains/mrrob0t.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mrrobot.json b/domains/mrrobot.json
index c55b7045c..79426f3d7 100644
--- a/domains/mrrobot.json
+++ b/domains/mrrobot.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mrtomxxx.json b/domains/mrtomxxx.json
new file mode 100644
index 000000000..609594fb4
--- /dev/null
+++ b/domains/mrtomxxx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MrT0mXxX",
+ "email": "mrtomxxx5@gmail.com"
+ },
+ "record": {
+ "URL": "https://main-api.cat0tom2.repl.co"
+ }
+}
diff --git a/domains/mst.json b/domains/mst.json
new file mode 100644
index 000000000..7034e0cda
--- /dev/null
+++ b/domains/mst.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MystieHum",
+ "email": "z232566755z@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mtestsite.json b/domains/mtestsite.json
deleted file mode 100644
index f5fd02654..000000000
--- a/domains/mtestsite.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "mobin-mazahery-school",
- "email": "mobin.mazahery85@gmail.com"
- },
- "record": {
- "CNAME": "m-proxy.cf"
- }
-}
diff --git a/domains/mthia.json b/domains/mthia.json
index 278b6b128..a564ce588 100644
--- a/domains/mthia.json
+++ b/domains/mthia.json
@@ -1,7 +1,7 @@
{
"description": "mthia page",
"owner": {
- "username": "Mthia727",
+ "username": "xddMthia",
"email": "mthia@xdd.moe",
"discord": "443794213524733962"
},
diff --git a/domains/mubashiryasin.json b/domains/mubashiryasin.json
index b9dccc513..aa98be810 100644
--- a/domains/mubashiryasin.json
+++ b/domains/mubashiryasin.json
@@ -4,7 +4,7 @@
"email": "fiverronlyokay@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mudrika.json b/domains/mudrika.json
deleted file mode 100644
index 1c41803d4..000000000
--- a/domains/mudrika.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "aktgram",
- "email": "aktgram4me@gmail.com"
- },
-
- "record": {
- "A": ["16.16.156.1"]
- }
-}
diff --git a/domains/mukeshkumarcharak.json b/domains/mukeshkumarcharak.json
index ded434679..773b89502 100644
--- a/domains/mukeshkumarcharak.json
+++ b/domains/mukeshkumarcharak.json
@@ -4,7 +4,7 @@
"email": "kumarm_1@rknec.edu"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/music-old.mxnticek.json b/domains/music-old.mxnticek.json
deleted file mode 100644
index a8fe555e1..000000000
--- a/domains/music-old.mxnticek.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Domain for my old music bot",
- "owner": {
- "username": "VlastikYoutubeKo",
- "email": "plainrock@seznam.cz"
- },
- "record": {
- "A": ["129.151.254.58"]
- }
-}
diff --git a/domains/music.mxnticek.json b/domains/music.mxnticek.json
deleted file mode 100644
index ef1716109..000000000
--- a/domains/music.mxnticek.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Domain for my music bot",
- "owner": {
- "username": "VlastikYoutubeKo",
- "email": "plainrock@seznam.cz"
- },
- "record": {
- "A": ["129.151.254.58"]
- }
-}
diff --git a/domains/musikid.json b/domains/musikid.json
index 140b15419..4a2561759 100644
--- a/domains/musikid.json
+++ b/domains/musikid.json
@@ -4,7 +4,7 @@
"email": "musikid@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/mysteriousk.json b/domains/mysteriousk.json
deleted file mode 100644
index a4e3206f9..000000000
--- a/domains/mysteriousk.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "The official website for Lawliet.Host.",
- "repo": "https://github.com/NoobDevs69/LawlietHost",
- "owner": {
- "username": "MysteriousK69",
- "email": "mysteriousk@lawliet.host"
- },
- "record": {
- "CNAME": "lawliet.host"
- }
-}
diff --git a/domains/mystic.trung.json b/domains/mystic.trung.json
new file mode 100644
index 000000000..c372c8070
--- /dev/null
+++ b/domains/mystic.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/mytac.json b/domains/mytac.json
index 8cf69cd63..984a17ebb 100644
--- a/domains/mytac.json
+++ b/domains/mytac.json
@@ -4,7 +4,7 @@
"email": "my_tac@126.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/myvps.json b/domains/myvps.json
index a7b7e07f9..99e5e5d91 100644
--- a/domains/myvps.json
+++ b/domains/myvps.json
@@ -4,7 +4,7 @@
"email": "irawancandra6699@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/myx.json b/domains/myx.json
deleted file mode 100644
index 298af65b2..000000000
--- a/domains/myx.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Myx's portfolio.",
- "repo": "https://github.com/notmyx/notmyx.github.io",
- "owner": {
- "username": "notmyx",
- "email": "darkmyxx@gmail.com",
- "twitter": "omgmyx"
- },
- "record": {
- "CNAME": "6950d6d4-e456-41b9-a407-3b569801cfa0.id.repl.co"
- }
-}
diff --git a/domains/myxi.json b/domains/myxi.json
new file mode 100644
index 000000000..bb24694db
--- /dev/null
+++ b/domains/myxi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "eeriemyxi",
+ "email": "myxi@duck.com"
+ },
+ "record": {
+ "URL": "https://eeriemyxi.blogspot.com"
+ }
+}
diff --git a/domains/mz.json b/domains/mz.json
new file mode 100644
index 000000000..f4156ba17
--- /dev/null
+++ b/domains/mz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "influxweb",
+ "email": "matt@dev4web.net"
+ },
+ "record": {
+ "URL": "https://www.dev4web.net"
+ }
+}
diff --git a/domains/n1ghtmare.json b/domains/n1ghtmare.json
new file mode 100644
index 000000000..4dcec9c31
--- /dev/null
+++ b/domains/n1ghtmare.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "n1ghtmare3301",
+ "email": "n1ghtmare3301@proton.me"
+ },
+ "record": {
+ "CNAME": "n1ghtmare3301.github.io"
+ }
+}
diff --git a/domains/n3rcy.json b/domains/n3rcy.json
index 761614f96..378623cfb 100644
--- a/domains/n3rcy.json
+++ b/domains/n3rcy.json
@@ -3,8 +3,9 @@
"username": "N3rcy",
"email": "nercysvoboda@gmail.com"
},
-
"record": {
- "CNAME": "n3rcy.xyz"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/naby.json b/domains/naby.json
new file mode 100644
index 000000000..bab5e09ce
--- /dev/null
+++ b/domains/naby.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Naby29",
+ "email": "dani.constantinescu.ro@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/namishpande.json b/domains/nam.json
similarity index 99%
rename from domains/namishpande.json
rename to domains/nam.json
index 3c2962721..9762c78bd 100644
--- a/domains/namishpande.json
+++ b/domains/nam.json
@@ -3,7 +3,6 @@
"username": "chadcat7",
"email": "namishpande2007@gmail.com"
},
-
"record": {
"CNAME": "chadcat7.github.io"
}
diff --git a/domains/namesmt.json b/domains/namesmt.json
new file mode 100644
index 000000000..a9db06b1a
--- /dev/null
+++ b/domains/namesmt.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NamesMT",
+ "email": "dangquoctrung123@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nandan.json b/domains/nandan.json
new file mode 100644
index 000000000..612b6d681
--- /dev/null
+++ b/domains/nandan.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Nandan-N",
+ "email": "authornandan1@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nandhu.json b/domains/nandhu.json
new file mode 100644
index 000000000..c47442045
--- /dev/null
+++ b/domains/nandhu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "nandhu-44",
+ "email": "nandhu90040@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "nandhu.deno.dev"
+ }
+}
diff --git a/domains/narayana.json b/domains/narayana.json
index 7f47d53b7..e2bacc769 100644
--- a/domains/narayana.json
+++ b/domains/narayana.json
@@ -4,7 +4,7 @@
"email": "nemaninarayna@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nardcrat.json b/domains/nardcrat.json
deleted file mode 100644
index 3d922a25d..000000000
--- a/domains/nardcrat.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "use for the main site for protfolio",
- "repo": "https://github.com/meetkool/meetkool",
- "owner": {
- "username": "meetkool",
- "email": "doomlol@protonmail.com"
- },
- "record": {
- "CNAME": "meetssh.ml"
- }
-}
diff --git a/domains/nationwide.json b/domains/nationwide.json
deleted file mode 100644
index 04a20a529..000000000
--- a/domains/nationwide.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["194.5.64.173"]
- }
-}
diff --git a/domains/nauriculus.json b/domains/nauriculus.json
new file mode 100644
index 000000000..63a4c29d0
--- /dev/null
+++ b/domains/nauriculus.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "nauriculus",
+ "email": "nauriculus@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/naveedalirehmani.json b/domains/naveedalirehmani.json
deleted file mode 100644
index 6143e5d65..000000000
--- a/domains/naveedalirehmani.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "naveedalirehmani",
- "email": "naveedalirehmani321@gmail.com"
- },
- "record": {
- "A": ["13.48.190.82"]
- }
-}
diff --git a/domains/naveenlam.json b/domains/naveenlam.json
new file mode 100644
index 000000000..b7135d653
--- /dev/null
+++ b/domains/naveenlam.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LamNaveen",
+ "email": "notlamger@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nayam.json b/domains/nayam.json
index 417175ba1..c6de65cb1 100644
--- a/domains/nayam.json
+++ b/domains/nayam.json
@@ -4,7 +4,7 @@
"email": "nayam.emikx@aleeas.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nedosite.json b/domains/nedosite.json
deleted file mode 100644
index 9911cbb9f..000000000
--- a/domains/nedosite.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SpaceProjects",
- "email": "maksim1961space@gmail.com"
- },
- "record": {
- "A": ["185.228.233.148"]
- }
-}
diff --git a/domains/neeraz.json b/domains/neeraz.json
new file mode 100644
index 000000000..7c6fdc9fc
--- /dev/null
+++ b/domains/neeraz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "techneeraz",
+ "email": "tech.neeraz@groupiig.com"
+ },
+ "record": {
+ "A": ["103.147.226.20"]
+ }
+}
diff --git a/domains/nego.json b/domains/nego.json
deleted file mode 100644
index 6572ff14f..000000000
--- a/domains/nego.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Nego personal developer website",
- "repo": "https://github.com/kardespro/kardespro.github.io",
- "owner": {
- "username": "nego",
- "email": "devnego@gmail.com"
- },
- "record": {
- "CNAME": "negodev.tk"
- }
-}
diff --git a/domains/negodev.json b/domains/negodev.json
index 3eb73d60b..cc7e2e33d 100644
--- a/domains/negodev.json
+++ b/domains/negodev.json
@@ -4,7 +4,7 @@
"email": "kardesdcys@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/neki.json b/domains/neki.json
index 07025aa32..a79a51670 100644
--- a/domains/neki.json
+++ b/domains/neki.json
@@ -5,6 +5,13 @@
"email": "santyfisela@gmail.com"
},
"record": {
- "CNAME": "PinkLittleKitty.github.io"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/nelson.json b/domains/nelson.json
new file mode 100644
index 000000000..c08ae220d
--- /dev/null
+++ b/domains/nelson.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nelsonGX",
+ "email": "hi@nelsongx.com"
+ },
+ "record": {
+ "URL": "https://nelsongx.com"
+ }
+}
diff --git a/domains/neo.json b/domains/neo.json
deleted file mode 100644
index 9680f6dc9..000000000
--- a/domains/neo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "onem0",
- "email": "kremersneo0@gmail.com"
- },
- "record": {
- "A": ["173.212.227.74"]
- }
-}
diff --git a/domains/neomc.xyz.json b/domains/neomc.xyz.json
index 784f5a66a..1860e7c56 100644
--- a/domains/neomc.xyz.json
+++ b/domains/neomc.xyz.json
@@ -4,7 +4,7 @@
"email": "saiifksa509@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nepy.json b/domains/nepy.json
new file mode 100644
index 000000000..d706a36d6
--- /dev/null
+++ b/domains/nepy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "StrwbryMilk",
+ "email": "nepznepy@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nerd.json b/domains/nerd.json
deleted file mode 100644
index ccf258335..000000000
--- a/domains/nerd.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "n3rd3x3",
- "email": "me@n3rd3x3.xyz"
- },
- "record": {
- "URL": "https://n3rd3x3.xyz"
- }
-}
diff --git a/domains/neria.json b/domains/neria.json
new file mode 100644
index 000000000..3883683a5
--- /dev/null
+++ b/domains/neria.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "neriat",
+ "email": "me@neria.dev"
+ },
+ "record": {
+ "CNAME": "neria.dev"
+ }
+}
diff --git a/domains/netf.json b/domains/netf.json
deleted file mode 100644
index 56d7e44c5..000000000
--- a/domains/netf.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "netflexs",
- "email": ""
- },
- "record": {
- "CNAME": "c4f04559-5bd7-49db-ae04-93e53cd8abc2.id.repl.co"
- }
-}
diff --git a/domains/netsterx.json b/domains/netsterx.json
new file mode 100644
index 000000000..2c0ffc0da
--- /dev/null
+++ b/domains/netsterx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "netsterX",
+ "email": "mb3202879@gmail.com"
+ },
+ "record": {
+ "CNAME": "netsterx.github.io"
+ }
+}
diff --git a/domains/neuron.json b/domains/neuron.json
index ad8477829..05a37b2c4 100644
--- a/domains/neuron.json
+++ b/domains/neuron.json
@@ -4,7 +4,7 @@
"email": "torinnn28@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nexacopic.json b/domains/nexacopic.json
deleted file mode 100644
index 80b66bb96..000000000
--- a/domains/nexacopic.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "nexacopic",
- "email": "nexacopic@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/nextcloud.banana.json b/domains/nextcloud.banana.json
deleted file mode 100644
index 5bd3d9aa5..000000000
--- a/domains/nextcloud.banana.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "BANanaD3V",
- "email": "banana@bananadev.ml"
- },
-
- "record": {
- "A": ["95.165.13.215"]
- }
-}
diff --git a/domains/nextcloud.vi0leta.json b/domains/nextcloud.vi0leta.json
index bbcd415dd..784e44261 100644
--- a/domains/nextcloud.vi0leta.json
+++ b/domains/nextcloud.vi0leta.json
@@ -5,6 +5,6 @@
},
"record": {
- "A": ["158.101.199.231"]
+ "A": ["37.27.4.76"]
}
}
diff --git a/domains/nfason.json b/domains/nfason.json
deleted file mode 100644
index 9ee4b12ea..000000000
--- a/domains/nfason.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "nfason",
- "email": "nfason@uab.edu"
- },
- "record": {
- "CNAME": "nfason.com"
- }
-}
diff --git a/domains/nguyenkhanhhoa.json b/domains/nguyenkhanhhoa.json
new file mode 100644
index 000000000..6eea67047
--- /dev/null
+++ b/domains/nguyenkhanhhoa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nguyenkhanhhoa",
+ "email": "coolie.itman@gmail.com"
+ },
+ "record": {
+ "A": ["34.168.72.137"]
+ }
+}
diff --git a/domains/nicekun.json b/domains/nicekun.json
index b3eec57b5..f268a50e5 100644
--- a/domains/nicekun.json
+++ b/domains/nicekun.json
@@ -4,7 +4,7 @@
"email": "tangkeehee2002@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nicesapien.json b/domains/nicesapien.json
deleted file mode 100644
index 56dc17b04..000000000
--- a/domains/nicesapien.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "NiceSapien's portfolio website",
- "owner": {
- "username": "NiceSapien",
- "email": "nicesapien@gmail.com",
- "discord": "NiceSapien#2356"
- },
- "record": {
- "CNAME": "nicesapien.gatsbyjs.io"
- }
-}
diff --git a/domains/nicholas.json b/domains/nicholas.json
deleted file mode 100644
index df331ea5c..000000000
--- a/domains/nicholas.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "nicholasyoannou",
- "email": "nicholas@nicholas.dev",
- "discord": "janeberru#4594",
- "note": "You can contact me by email or discord, really don't mind :)"
- },
- "description": "I'll probably put some project pages on nicholas.is-a.dev. ¯\\_(ツ)_/¯",
- "record": {
- "CNAME": "nicholas.dev"
- }
-}
diff --git a/domains/nick.json b/domains/nick.json
deleted file mode 100644
index 695874d3a..000000000
--- a/domains/nick.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "nimolas",
- "email": "nick.o@microfnclan.com"
- },
- "record": {
- "CNAME": "microfnclan.com"
- }
-}
diff --git a/domains/nickooms.json b/domains/nickooms.json
index c7e16fb95..a5c6c3108 100644
--- a/domains/nickooms.json
+++ b/domains/nickooms.json
@@ -4,7 +4,7 @@
"email": "oomsni@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nicoladen.json b/domains/nicoladen.json
new file mode 100644
index 000000000..db7454b33
--- /dev/null
+++ b/domains/nicoladen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nicoladen05",
+ "email": "nicolashartmanntaba@gmail.com"
+ },
+ "record": {
+ "CNAME": "nicoladen05.github.io"
+ }
+}
diff --git a/domains/niel.json b/domains/niel.json
new file mode 100644
index 000000000..c1004942b
--- /dev/null
+++ b/domains/niel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MacengBOT",
+ "email": "macengbot@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/niemiets.json b/domains/niemiets.json
index d235aac44..a9bf61d37 100644
--- a/domains/niemiets.json
+++ b/domains/niemiets.json
@@ -4,7 +4,7 @@
"email": "niemiec123123123@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/night.json b/domains/night.json
deleted file mode 100644
index 1c03cd80c..000000000
--- a/domains/night.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal portfolio for showing my projects, contacts and about me",
- "repo": "https://github.com/night0721/night0721.github.io",
- "owner": {
- "username": "night0721",
- "email": "nightkalyyy@gmail.com"
- },
- "record": {
- "CNAME": "night0721.github.io"
- }
-}
diff --git a/domains/nihaltm.json b/domains/nihaltm.json
index 79190a806..69c0f9ba2 100644
--- a/domains/nihaltm.json
+++ b/domains/nihaltm.json
@@ -4,7 +4,7 @@
"email": "nihaltmdev@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nik.json b/domains/nik.json
new file mode 100644
index 000000000..fae6c2cf1
--- /dev/null
+++ b/domains/nik.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "nikxso",
+ "email": "nikhilsoniya123@gmail.com",
+ "discord": "nikxso#0000"
+ },
+ "record": {
+ "CNAME": "myweb-266f0.web.app"
+ }
+}
diff --git a/domains/nilhem.json b/domains/nilhem.json
index e86e510ec..872ce8eb0 100644
--- a/domains/nilhem.json
+++ b/domains/nilhem.json
@@ -4,7 +4,7 @@
"email": "a.mbiad3s@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nimish.json b/domains/nimish.json
deleted file mode 100644
index f6750611f..000000000
--- a/domains/nimish.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Nimish's Engineering Diary",
- "repo": "https://github.com/nimish-gupta/blog",
- "owner": {
- "username": "nimish-gupta",
- "email": "gnimish03@gmail.com"
- },
- "record": {
- "CNAME": "nimish-gupta.dev"
- }
-}
diff --git a/domains/nine.json b/domains/nine.json
index 0c94b85f0..7cb74dd5e 100644
--- a/domains/nine.json
+++ b/domains/nine.json
@@ -1,11 +1,10 @@
{
- "description": "A passionate Back and Front-end Developer 🚀 Having An Experience Of Building Web And Discord Bots With JavaScript / HTML / CSS / Nodejs / Python And Some Other Cool Libraries And Frameworks.",
- "repo": "https://github.com/ninelel",
- "record": {
- "CNAME": "hcceg285.up.railway.app"
- },
"owner": {
"username": "NineLEL",
"email": "notninelel@gmail.com"
+ },
+ "record": {
+ "A": ["76.223.55.44"],
+ "TXT": "deta-verification=DyZWThRbwVx1vudpA5oB8DEekn58LG75"
}
}
diff --git a/domains/niper.json b/domains/niper.json
new file mode 100644
index 000000000..6d3286888
--- /dev/null
+++ b/domains/niper.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NIPERR",
+ "email": "marcel.dziewaa@gmail.com"
+ },
+ "record": {
+ "URL": "https://niper.vercel.app"
+ }
+}
diff --git a/domains/nishaj.json b/domains/nishaj.json
new file mode 100644
index 000000000..46ce325d2
--- /dev/null
+++ b/domains/nishaj.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nishaj0",
+ "email": "njnishaj0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nishaj0.json b/domains/nishaj0.json
new file mode 100644
index 000000000..46ce325d2
--- /dev/null
+++ b/domains/nishaj0.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nishaj0",
+ "email": "njnishaj0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nishant.json b/domains/nishant.json
deleted file mode 100644
index 53080c6a7..000000000
--- a/domains/nishant.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Nishant's website and blog",
- "repo": "https://github.com/nishch/nishch.github.io",
- "owner": {
- "username": "nishch",
- "email": "nishantchvedi@gmail.com"
- },
- "record": {
- "CNAME": "twistedsoft.com"
- }
-}
diff --git a/domains/nishin.json b/domains/nishin.json
deleted file mode 100644
index 7e6e954dd..000000000
--- a/domains/nishin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "nishinraj",
- "email": "",
- "twitter": "nishinrajk"
- },
- "record": {
- "URL": "https://medium.com/@nishinraj"
- }
-}
diff --git a/domains/nithin.json b/domains/nithin.json
new file mode 100644
index 000000000..42ac6cfd6
--- /dev/null
+++ b/domains/nithin.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "nithinlycanz",
+ "email": "nithinnikhil582@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nixon.json b/domains/nixon.json
deleted file mode 100644
index d8f227f54..000000000
--- a/domains/nixon.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NxnRmz",
- "email": "nxnrmz@gmail.com"
- },
- "record": {
- "A": ["44.203.96.123"]
- }
-}
diff --git a/domains/nixxvl.json b/domains/nixxvl.json
deleted file mode 100644
index d1b4d3d3c..000000000
--- a/domains/nixxvl.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "nixxvl",
- "email": "noyboyroblox@gmail.com"
- },
- "record": {
- "CNAME": "nixxvl.space"
- }
-}
diff --git a/domains/njfamirm.json b/domains/njfamirm.json
deleted file mode 100644
index 00e382514..000000000
--- a/domains/njfamirm.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "njfamirm",
- "email": "njfamirm@gmail.com"
- },
- "repo": "https://github.com/njfamirm/njfamirm.ir",
- "record": {
- "CNAME": "njfamirm.ir"
- }
-}
diff --git a/domains/noah.json b/domains/noah.json
index 6cd243341..89c3e8cd2 100644
--- a/domains/noah.json
+++ b/domains/noah.json
@@ -4,7 +4,7 @@
"email": "noah.parmentier@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/noahgao.json b/domains/noahgao.json
deleted file mode 100644
index d6ebd486d..000000000
--- a/domains/noahgao.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "noahziheng",
- "email": "noahgaocn@outlook.com"
- },
-
- "record": {
- "CNAME": "noahziheng.github.io"
- }
-}
diff --git a/domains/nobody.json b/domains/nobody.json
index 2f123d9b5..6af3c2e52 100644
--- a/domains/nobody.json
+++ b/domains/nobody.json
@@ -4,7 +4,7 @@
"email": "adrienansari@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nodirbek.json b/domains/nodirbek.json
deleted file mode 100644
index 72d8d0c6e..000000000
--- a/domains/nodirbek.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Piratebay298",
- "email": "piratebay298@gmail.com"
- },
-
- "record": {
- "CNAME": "nodirbek.42web.io"
- }
-}
diff --git a/domains/noflare.json b/domains/noflare.json
index 3eac8f9f5..8e4192495 100644
--- a/domains/noflare.json
+++ b/domains/noflare.json
@@ -4,7 +4,7 @@
"email": "Noflare.dev@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/noob.json b/domains/noob.json
deleted file mode 100644
index 9b317de89..000000000
--- a/domains/noob.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "KeIrNeGn",
- "email": "terminatorx5e@gmail.com",
- "discord": "499592235772280842"
- },
-
- "record": {
- "CNAME": "keirnegn.dev"
- }
-}
diff --git a/domains/nopply.json b/domains/nopply.json
deleted file mode 100644
index b33237863..000000000
--- a/domains/nopply.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Nopply is-a.dev",
- "owner": {
- "username": "kornls",
- "email": "larryst.korn@gmail.com"
- },
- "record": {
- "CNAME": "nopply.carrd.co"
- }
-}
diff --git a/domains/noraa.json b/domains/noraa.json
deleted file mode 100644
index 5a7d1743c..000000000
--- a/domains/noraa.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Noraa08",
- "email": "antoteje2004@gmail.com"
- },
- "record": {
- "CNAME": "595a8166-a27b-43e4-848e-da1ce6bcd3f6.id.repl.co"
- }
-}
diff --git a/domains/norkart.json b/domains/norkart.json
new file mode 100644
index 000000000..711b5d325
--- /dev/null
+++ b/domains/norkart.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "norkart1",
+ "email": "navasforwork@gmail.com"
+ },
+ "record": {
+ "CNAME": "personal-website-26y.pages.dev"
+ }
+}
diff --git a/domains/normturtle.json b/domains/normturtle.json
new file mode 100644
index 000000000..99bc9076f
--- /dev/null
+++ b/domains/normturtle.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NormTurtle",
+ "email": "omix1.ok@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/not-a-nerd.json b/domains/not-a-nerd.json
deleted file mode 100644
index d5d934fd6..000000000
--- a/domains/not-a-nerd.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Well, this is my github sub-domain for my future page",
- "repo": "https://github.com/0lp/0lp.github.io",
- "owner": {
- "username": "0lp",
- "email": "not.a.nerd0005@gmail.com"
- },
- "record": {
- "CNAME": "0lp.github.io"
- }
-}
diff --git a/domains/nota.json b/domains/nota.json
index becc7dc6e..4b27eb5ce 100644
--- a/domains/nota.json
+++ b/domains/nota.json
@@ -4,7 +4,7 @@
"email": "zerolikecyber.2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/notarya.json b/domains/notarya.json
deleted file mode 100644
index 27f10eee3..000000000
--- a/domains/notarya.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "not-arya",
- "email": "abiixmessanger@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/noteswallah.json b/domains/noteswallah.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/noteswallah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/notgoogle.json b/domains/notgoogle.json
deleted file mode 100644
index 396dc59f4..000000000
--- a/domains/notgoogle.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "uugghhwhy",
- "email": "",
- "discord": "[]#4604"
- },
- "record": {
- "CNAME": "873cf0d8-4ae8-4a9c-9a48-b58ac4c67f3d.id.repl.co"
- }
-}
diff --git a/domains/notrana.json b/domains/notrana.json
index 79a08a799..cb050c83e 100644
--- a/domains/notrana.json
+++ b/domains/notrana.json
@@ -1,10 +1,7 @@
{
- "description": "Link to my portfolio site.",
- "repo": "https://github.com/notrana/notrana.github.io",
"owner": {
- "username": "notrana",
- "email": "mail@notrana.tk",
- "discord": "Rana Asad.py#5925"
+ "username": "NotRana",
+ "email": "benyameen75@gmail.com"
},
"record": {
"CNAME": "notrana.github.io"
diff --git a/domains/notskillz.json b/domains/notskillz.json
index 5fe751c74..77ad463dd 100644
--- a/domains/notskillz.json
+++ b/domains/notskillz.json
@@ -4,7 +4,7 @@
"email": "jacob.blits@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/notsora.json b/domains/notsora.json
deleted file mode 100644
index c7cd55b38..000000000
--- a/domains/notsora.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "OraSora",
- "email": "S05A@outlook.com"
- },
- "record": {
- "CNAME": "c20d9bfa-52f3-47e1-a43f-326fe4079288.repl.co"
- }
-}
diff --git a/domains/notugotskillz.json b/domains/notugotskillz.json
index 5fe751c74..77ad463dd 100644
--- a/domains/notugotskillz.json
+++ b/domains/notugotskillz.json
@@ -4,7 +4,7 @@
"email": "jacob.blits@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/notzsfell.json b/domains/notzsfell.json
index 90425b148..a24031e73 100644
--- a/domains/notzsfell.json
+++ b/domains/notzsfell.json
@@ -4,7 +4,7 @@
"email": "felinzkvic@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nova.json b/domains/nova.json
index b1d378527..490f0be9b 100644
--- a/domains/nova.json
+++ b/domains/nova.json
@@ -1,11 +1,11 @@
{
- "description": "nova.is-a.dev",
"owner": {
- "username": "LunarN0v4",
- "email": "zeus@zeusteam.dev",
- "discord": "lunarn0v4"
+ "username": "sexy-bullet",
+ "email": "e4nbullet@protonmail.com"
},
"record": {
- "A": ["170.39.215.45"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/novinity.json b/domains/novinity.json
new file mode 100644
index 000000000..85cdb22e1
--- /dev/null
+++ b/domains/novinity.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Novinity",
+ "email": "novinity63@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/npc.json b/domains/npc.json
index 5eb5e5abe..afdd829a5 100644
--- a/domains/npc.json
+++ b/domains/npc.json
@@ -4,7 +4,7 @@
"email": "aziznasrul85@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nqdev.json b/domains/nqdev.json
index 2cbbfef3d..b305e2dee 100644
--- a/domains/nqdev.json
+++ b/domains/nqdev.json
@@ -4,7 +4,7 @@
"email": "nguyenquy.1096@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ns1.zerow.json b/domains/ns1.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/ns1.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/ns2.zerow.json b/domains/ns2.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/ns2.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/ntc-edm.json b/domains/ntc-edm.json
deleted file mode 100644
index 3aa60549e..000000000
--- a/domains/ntc-edm.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "thanhcong2k7",
- "email": "nhocpeacock@gmail.com"
- },
- "record": {
- "CNAME": "kmdev.carrd.co"
- }
-}
diff --git a/domains/ntfy.stefdp.json b/domains/ntfy.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/ntfy.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/nubi.json b/domains/nubi.json
deleted file mode 100644
index 04b0efafb..000000000
--- a/domains/nubi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "nubi1337",
- "email": "jutendo112233@gmail.com"
- },
- "record": {
- "A": ["45.142.107.232"]
- }
-}
diff --git a/domains/nxn.json b/domains/nxn.json
deleted file mode 100644
index d8f227f54..000000000
--- a/domains/nxn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NxnRmz",
- "email": "nxnrmz@gmail.com"
- },
- "record": {
- "A": ["44.203.96.123"]
- }
-}
diff --git a/domains/nxnetwork.json b/domains/nxnetwork.json
index 424c5ab05..2674ffd29 100644
--- a/domains/nxnetwork.json
+++ b/domains/nxnetwork.json
@@ -4,7 +4,7 @@
"email": "hackeryijia@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nxyoo.json b/domains/nxyoo.json
index c7c4552fd..ec176e37e 100644
--- a/domains/nxyoo.json
+++ b/domains/nxyoo.json
@@ -4,7 +4,7 @@
"email": "armqnd.pro@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/nxyy.json b/domains/nxyy.json
index 52e753f4a..d46a972aa 100644
--- a/domains/nxyy.json
+++ b/domains/nxyy.json
@@ -4,7 +4,7 @@
"email": "nxyylol@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/nyc.json b/domains/nyc.json
new file mode 100644
index 000000000..5a384e076
--- /dev/null
+++ b/domains/nyc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "resporitories",
+ "email": "localugly@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nypd.json b/domains/nypd.json
new file mode 100644
index 000000000..7f33edc6a
--- /dev/null
+++ b/domains/nypd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "a77-dev",
+ "email": "andbro4955@student.ccs.k12.nc.us"
+ },
+ "record": {
+ "URL": "https://feds.lol/nypd"
+ }
+}
diff --git a/domains/nyx.json b/domains/nyx.json
index 77f7eb6c9..19f2d0026 100644
--- a/domains/nyx.json
+++ b/domains/nyx.json
@@ -4,6 +4,8 @@
"email": "xaveegacha7@gmail.com"
},
"record": {
- "A": ["76.223.55.44"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/obaydmerz.json b/domains/obaydmerz.json
index 4b09f8493..1c59423bd 100644
--- a/domains/obaydmerz.json
+++ b/domains/obaydmerz.json
@@ -4,7 +4,7 @@
"email": "obaydmerz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/objectrecognisation.syntaxloopers.json b/domains/objectrecognisation.syntaxloopers.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/objectrecognisation.syntaxloopers.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/ofir.json b/domains/ofir.json
new file mode 100644
index 000000000..6e4b8c0a1
--- /dev/null
+++ b/domains/ofir.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "OfirApps",
+ "email": "ijumpitsus@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ogor.json b/domains/ogor.json
deleted file mode 100644
index ca999f2ed..000000000
--- a/domains/ogor.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ProfKrzys",
- "email": "krzysztof2011@hotmail.com"
- },
- "record": {
- "CNAME": "xomc.pl.opts-https.redirect.center"
- }
-}
diff --git a/domains/ohgodanoob.json b/domains/ohgodanoob.json
index b1a76a6e4..265baa4df 100644
--- a/domains/ohgodanoob.json
+++ b/domains/ohgodanoob.json
@@ -4,7 +4,7 @@
"email": "ohgodanoob@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ohm.json b/domains/ohm.json
index 377c9e4a5..8e962f1b2 100644
--- a/domains/ohm.json
+++ b/domains/ohm.json
@@ -4,7 +4,7 @@
"email": "work@sujandeb.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ohmdeb.json b/domains/ohmdeb.json
index 377c9e4a5..8e962f1b2 100644
--- a/domains/ohmdeb.json
+++ b/domains/ohmdeb.json
@@ -4,7 +4,7 @@
"email": "work@sujandeb.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/oli.json b/domains/oli.json
index c3a0f7940..f0025b231 100644
--- a/domains/oli.json
+++ b/domains/oli.json
@@ -1,11 +1,9 @@
{
"owner": {
- "username": "qyful",
- "email": "",
- "twitter": "Qyful",
- "discord": "Qyful#1800"
+ "username": "hxntaish",
+ "email": "juliettepoisson3@gmail.com"
},
"record": {
- "CNAME": "cb41d586-dc17-4f5d-b336-2c93504644e4.id.repl.co"
+ "A": ["185.171.202.187"]
}
}
diff --git a/domains/olivia.json b/domains/olivia.json
new file mode 100644
index 000000000..4f63e99b5
--- /dev/null
+++ b/domains/olivia.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "olivi-r",
+ "email": "olivia.r.dev@gmail.com",
+ "discord": "723626729247342662"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/om.json b/domains/om.json
deleted file mode 100644
index 48896d992..000000000
--- a/domains/om.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "Portfolio - a simple portfolio website for TerraPlayz. It's in Beta Stages. Thanks for visiting my Portfolio! I hope to see you again. This also serves as a mail for my domain",
- "repo": "https://github.com/TerraPlayz/portfolio-cf",
- "owner": {
- "username": "TerraPlayz",
- "email": "github@om.is-a.dev",
- "twitter": "DaRealOmxpro"
- },
- "record": {
- "A": ["172.66.44.237", "172.66.47.19"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/omarplayz.json b/domains/omarplayz.json
index 50411153a..12296d6ee 100644
--- a/domains/omarplayz.json
+++ b/domains/omarplayz.json
@@ -4,7 +4,7 @@
"email": "omarplayzsounds@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/omarzaghlool.json b/domains/omarzaghlool.json
index e7dde8fb4..f1fda26d3 100644
--- a/domains/omarzaghlool.json
+++ b/domains/omarzaghlool.json
@@ -4,7 +4,7 @@
"email": "omarzaghlool538@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/omg.json b/domains/omg.json
new file mode 100644
index 000000000..965c62d0b
--- /dev/null
+++ b/domains/omg.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "A": ["172.104.43.107"]
+ }
+}
diff --git a/domains/omi.json b/domains/omi.json
new file mode 100644
index 000000000..99bc9076f
--- /dev/null
+++ b/domains/omi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NormTurtle",
+ "email": "omix1.ok@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/omne.json b/domains/omne.json
deleted file mode 100644
index 6db6df819..000000000
--- a/domains/omne.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "owner": {
- "username": "notomne",
- "email": "charmquark314@proton.me"
- },
- "record": {
- "A": ["44.240.31.54"],
- "AAAA": [
- "2600:1f14:1f56:d100::1337",
- "2600:1f14:1f56:d100::c0de"
- ]
- }
-}
diff --git a/domains/omsandeppatil.json b/domains/omsandeppatil.json
new file mode 100644
index 000000000..56e14549f
--- /dev/null
+++ b/domains/omsandeppatil.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "omsandippatil",
+ "email": "omsandeeppatil02@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/onlive.json b/domains/onlive.json
new file mode 100644
index 000000000..a8c58df1e
--- /dev/null
+++ b/domains/onlive.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Onlive1337",
+ "email": "tabdulov2006@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/onvr.json b/domains/onvr.json
new file mode 100644
index 000000000..df151fadf
--- /dev/null
+++ b/domains/onvr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stanasxw",
+ "email": "karnavald@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/oofy.json b/domains/oofy.json
deleted file mode 100644
index 7571fc158..000000000
--- a/domains/oofy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Oofquest's Website!",
- "repo": "https://github.com/oofquest",
- "owner": {
- "username": "oofquest",
- "email": "oofquest@cub0rd.xyz"
- },
- "record": {
- "CNAME": "9655e52b-5dc4-45ba-8e74-8d942aa9ea33.repl.co"
- }
-}
diff --git a/domains/opaayush.json b/domains/opaayush.json
deleted file mode 100644
index 8a1b90e92..000000000
--- a/domains/opaayush.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Aayu5h's Website",
- "repo": "https://github.com/OpAayush/opaayush.github.io",
- "owner": {
- "username": "OpAayush",
- "email": "aayushmagrawal@gmail.com",
- "discord": "Aayu5h#1737"
- },
- "record": {
- "CNAME": "opaayush.pages.dev"
- }
-}
diff --git a/domains/opbot.json b/domains/opbot.json
deleted file mode 100644
index 3e74a0bcb..000000000
--- a/domains/opbot.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "MRD433",
- "email": "52184mo@gmail.com"
- },
-
- "record": {
- "CNAME": "discord-bot-dashboard-1.zfair45.repl.co"
- }
-}
diff --git a/domains/optixyt.json b/domains/optixyt.json
new file mode 100644
index 000000000..a81258c59
--- /dev/null
+++ b/domains/optixyt.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "optixyt0",
+ "email": "kaibeeley@icloud.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/oreki.json b/domains/oreki.json
deleted file mode 100644
index 166f8c81f..000000000
--- a/domains/oreki.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "My Personal Website",
- "owner": {
- "username": "Oreki-Dev",
- "email": "orekidev@gmail.com"
- },
- "record": {
- "A": ["164.132.74.251", "192.95.42.75"]
- }
-}
diff --git a/domains/orhanyigitdurmaz.json b/domains/orhanyigitdurmaz.json
index b9445d7dd..48187805b 100644
--- a/domains/orhanyigitdurmaz.json
+++ b/domains/orhanyigitdurmaz.json
@@ -4,7 +4,7 @@
"email": "orhanyigitv2durmaz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/osakihsieh.json b/domains/osakihsieh.json
index 6793003bb..87680c9da 100644
--- a/domains/osakihsieh.json
+++ b/domains/osakihsieh.json
@@ -4,7 +4,7 @@
"email": "aspdoctor@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/outland3r2007.json b/domains/outland3r2007.json
new file mode 100644
index 000000000..dd9c523af
--- /dev/null
+++ b/domains/outland3r2007.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Outland3r2007",
+ "email": "baloggabriel76@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+ }
diff --git a/domains/ovidiuradu.json b/domains/ovidiuradu.json
deleted file mode 100644
index 1e1d545fb..000000000
--- a/domains/ovidiuradu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Oxidiu",
- "email": "oxidiu777@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/owain.json b/domains/owain.json
deleted file mode 100644
index 22080c4c3..000000000
--- a/domains/owain.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Owain's Website",
- "owner": {
- "username": "owjothegreat",
- "email": "owain.jones74@gmail.com"
- },
- "record": {
- "CNAME": "0wain.xyz"
- }
-}
diff --git a/domains/owl.json b/domains/owl.json
new file mode 100644
index 000000000..608185c25
--- /dev/null
+++ b/domains/owl.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "foxsophia",
+ "email": "cchirrpy@outlook.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/oxoomy.json b/domains/oxoomy.json
index 25180da87..4c388a3ed 100644
--- a/domains/oxoomy.json
+++ b/domains/oxoomy.json
@@ -4,7 +4,7 @@
"email": "goument.yelinn52@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pace.json b/domains/pace.json
deleted file mode 100644
index 1e50c5e7a..000000000
--- a/domains/pace.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Place to host all my bio for my spigot plugins",
- "repo": "https://github.com/Pace1337",
- "owner": {
- "username": "Pace1337",
- "email": "pacex3123@gmail.com"
- },
- "record": {
- "CNAME": "pacedev.tk"
- }
-}
diff --git a/domains/pad.json b/domains/pad.json
deleted file mode 100644
index 809275bf4..000000000
--- a/domains/pad.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "aripadrian",
- "email": "aripadrian01@gmail.com"
- },
-
- "record": {
- "A": ["209.182.237.31"]
- }
-}
diff --git a/domains/pafias.json b/domains/pafias.json
index ab87e6ecd..81f3dfe8a 100644
--- a/domains/pafias.json
+++ b/domains/pafias.json
@@ -4,7 +4,7 @@
"email": "tiagana.b@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/paillat.json b/domains/paillat.json
new file mode 100644
index 000000000..b6de726cf
--- /dev/null
+++ b/domains/paillat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Paillat-dev",
+ "email": "me@paillat.dev"
+ },
+ "record": {
+ "CNAME": "paill.at"
+ }
+}
diff --git a/domains/painfuego.json b/domains/painfuego.json
new file mode 100644
index 000000000..53e99ea1b
--- /dev/null
+++ b/domains/painfuego.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "flame3301",
+ "email": "neongamerflame@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/palak.json b/domains/palak.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/palak.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/pancakes.json b/domains/pancakes.json
deleted file mode 100644
index 21fb01415..000000000
--- a/domains/pancakes.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "pancak3boy",
- "email": "Robloxisnotcoolanymore@gmail.com"
- },
- "record": {
- "CNAME": "c65a3e15-40a1-4799-8fac-2d5866ebd587.id.repl.co"
- }
-}
diff --git a/domains/panda.json b/domains/panda.json
index 94c5e5d5c..cc4ebc80c 100644
--- a/domains/panda.json
+++ b/domains/panda.json
@@ -1,10 +1,14 @@
{
"owner": {
- "username": "s3mant",
- "email": "contact@semant.is-a.dev"
+ "username": "Thanawatttt",
+ "email": "tanawattawillha@gmail.com"
},
- "description": "redirection to main web.",
"record": {
- "URL": "https://semant.panda.is-a.dev"
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/panel.shing.json b/domains/panel.shing.json
new file mode 100644
index 000000000..052235500
--- /dev/null
+++ b/domains/panel.shing.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ShingSemicolon",
+ "email": "Shing.XD.0602@gmail.com"
+ },
+ "record": {
+ "A": ["150.136.114.225"],
+ "AAAA": ["2603:c020:400d:3e89:7825:8a70:6518:5c68"]
+ }
+}
diff --git a/domains/panther.json b/domains/panther.json
index cd4233fa9..4f46a8629 100644
--- a/domains/panther.json
+++ b/domains/panther.json
@@ -4,7 +4,7 @@
"email": "zahidhassankalaroa104@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/paoloclimaco.json b/domains/paoloclimaco.json
new file mode 100644
index 000000000..80d9deb59
--- /dev/null
+++ b/domains/paoloclimaco.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pawdgreyt",
+ "email": "paoloclimaco01@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/parasyte.json b/domains/parasyte.json
new file mode 100644
index 000000000..ce9c87658
--- /dev/null
+++ b/domains/parasyte.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ParasyteUnknown",
+ "email": "parasyte@duck.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/parthmaster.json b/domains/parthmaster.json
new file mode 100644
index 000000000..7bc767d87
--- /dev/null
+++ b/domains/parthmaster.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ParthMaster",
+ "email": "parth.infynno@protonmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/parthpanchal.json b/domains/parthpanchal.json
new file mode 100644
index 000000000..58b6a96eb
--- /dev/null
+++ b/domains/parthpanchal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "parth-panchal",
+ "email": "parth.sdis@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pascal-jacq.json b/domains/pascal-jacq.json
new file mode 100644
index 000000000..239712c39
--- /dev/null
+++ b/domains/pascal-jacq.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pascal-Jacq",
+ "email": "pascal.jacq29@gmail.com"
+ },
+
+ "record": {
+ "A": ["80.119.158.22"]
+ }
+}
diff --git a/domains/paste.stefdp.json b/domains/paste.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/paste.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/pathdog.json b/domains/pathdog.json
index d8f2eaa87..f62c0304e 100644
--- a/domains/pathdog.json
+++ b/domains/pathdog.json
@@ -4,7 +4,7 @@
"email": "hannah.valdez@cetys.edu.mx"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/patrick.json b/domains/patrick.json
deleted file mode 100644
index 872961653..000000000
--- a/domains/patrick.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Have a look to my web site please ;-;",
- "repo": "https://github.com/PatrickChoDev",
- "owner": {
- "username": "PatrickChoDev",
- "email": "devpatrick.cho@gmail.com"
- },
- "record": {
- "A": ["158.101.70.92"]
- }
-}
diff --git a/domains/patrickbrophy.json b/domains/patrickbrophy.json
deleted file mode 100644
index 04aa0e744..000000000
--- a/domains/patrickbrophy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "washedPat",
- "email": "patrick.brophy2@gmail.com"
- },
- "record": {
- "CNAME": "patrickbrophy.dev"
- }
-}
diff --git a/domains/patsore.json b/domains/patsore.json
index e5ee61b41..b79fc198b 100644
--- a/domains/patsore.json
+++ b/domains/patsore.json
@@ -4,7 +4,7 @@
"email": "ostapo.semenikh@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/paula.json b/domains/paula.json
new file mode 100644
index 000000000..3a922605c
--- /dev/null
+++ b/domains/paula.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "pbabbicola",
+ "email": "paula.babbicola@gmail.com"
+ },
+ "record": {
+ "A": ["185.26.156.151"],
+ "AAAA": ["2a00:d0c0:200:0:64fc:adff:fef0:8a72"]
+ }
+}
diff --git a/domains/paulojunqueira.json b/domains/paulojunqueira.json
new file mode 100644
index 000000000..dd75f6d0e
--- /dev/null
+++ b/domains/paulojunqueira.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "opaulojunqueira",
+ "email": "pcjunqueira30@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/paulpfeiffer.json b/domains/paulpfeiffer.json
new file mode 100644
index 000000000..a8f5a644d
--- /dev/null
+++ b/domains/paulpfeiffer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "paul-pfeiffer",
+ "email": "ppfeiffer93@gmx.at"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pawix.json b/domains/pawix.json
index bcfa4d38e..923bc552d 100644
--- a/domains/pawix.json
+++ b/domains/pawix.json
@@ -4,7 +4,7 @@
"email": "wyrebakpawel@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pay.gornostay25.json b/domains/pay.gornostay25.json
deleted file mode 100644
index 075714eae..000000000
--- a/domains/pay.gornostay25.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "gornostay25",
- "email": "me@gornostay25.is-a.dev"
- },
- "record": {
- "CNAME": "d3ef8e32-cbba-4a23-a450-08aa46054a6b.repl.co"
- }
-}
diff --git a/domains/peacy.json b/domains/peacy.json
index 8971e9386..3bea46de8 100644
--- a/domains/peacy.json
+++ b/domains/peacy.json
@@ -4,7 +4,7 @@
"email": "kiwibird211@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/peak.json b/domains/peak.json
deleted file mode 100644
index 234428160..000000000
--- a/domains/peak.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NottPeak",
- "email": "quirkyfishyt@gmail.com"
- },
- "record": {
- "A": ["129.213.82.186"]
- }
-}
diff --git a/domains/peanut.json b/domains/peanut.json
new file mode 100644
index 000000000..7b046b828
--- /dev/null
+++ b/domains/peanut.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "realpeanut",
+ "email": "jacoboconnell27@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pekly.json b/domains/pekly.json
deleted file mode 100644
index 57869b846..000000000
--- a/domains/pekly.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Pekly",
- "email": "oodhuu57@gmail.com"
- },
- "record": {
- "URL": "https://dsc.gg/pekly"
- }
-}
diff --git a/domains/pelfex.json b/domains/pelfex.json
new file mode 100644
index 000000000..642930fbe
--- /dev/null
+++ b/domains/pelfex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "membanned",
+ "email": "volaree2@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/peme969.json b/domains/peme969.json
new file mode 100644
index 000000000..9a77cd5aa
--- /dev/null
+++ b/domains/peme969.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "peme969",
+ "email": "mrcoderpeme@gmail.com"
+ },
+ "record": {
+ "CNAME": "peme969.github.io"
+ }
+}
diff --git a/domains/pengubin.json b/domains/pengubin.json
index 5948519e2..78f76ef66 100644
--- a/domains/pengubin.json
+++ b/domains/pengubin.json
@@ -4,7 +4,7 @@
"email": "piplup7575@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/peterhinga.json b/domains/peterhinga.json
new file mode 100644
index 000000000..b62fe5b9c
--- /dev/null
+++ b/domains/peterhinga.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "peterhinga",
+ "email": "hingapetes6@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/petla.json b/domains/petla.json
deleted file mode 100644
index 99913cff7..000000000
--- a/domains/petla.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "Petla-reboot",
- "email": "petla@s246.xrea.com",
- "twitter": "Petla_reboot"
- },
-
- "record": {
- "A": ["160.251.151.77"],
- "MX": ["s246.xrea.com"]
- }
-}
diff --git a/domains/phakh.json b/domains/phakh.json
index 3f13c37c3..7f501bdeb 100644
--- a/domains/phakh.json
+++ b/domains/phakh.json
@@ -4,7 +4,7 @@
"email": "sirprak1245@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/phaze.json b/domains/phaze.json
deleted file mode 100644
index 70b7adc8a..000000000
--- a/domains/phaze.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "phaze-the-dumb",
- "email": "phaze@duck.com"
- },
- "record": {
- "A": ["132.226.127.70"]
- }
-}
diff --git a/domains/pheonix.json b/domains/pheonix.json
deleted file mode 100644
index b981729f1..000000000
--- a/domains/pheonix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Pheonix14",
- "email": "sd490405@gmail.com"
- },
- "record": {
- "A": ["164.132.74.251"]
- }
-}
diff --git a/domains/pherngpy.json b/domains/pherngpy.json
new file mode 100644
index 000000000..ee9e89993
--- /dev/null
+++ b/domains/pherngpy.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "shockbs",
+ "email": "apipherng@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/phoenix.json b/domains/phoenix.json
index 2df38dc56..a3b11cfac 100644
--- a/domains/phoenix.json
+++ b/domains/phoenix.json
@@ -5,7 +5,7 @@
},
"record": {
"A": ["130.162.166.134"],
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=phoenixorigin171@gmail.com"
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~include:_spf.google.com ~all"
}
}
diff --git a/domains/pi.json b/domains/pi.json
index c3f46e605..219fed568 100644
--- a/domains/pi.json
+++ b/domains/pi.json
@@ -4,7 +4,7 @@
"email": "naivenevaii@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pico.json b/domains/pico.json
new file mode 100644
index 000000000..90a09d4ef
--- /dev/null
+++ b/domains/pico.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wuspicodev",
+ "email": "wuspico@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/piero.json b/domains/piero.json
deleted file mode 100644
index 76e744f86..000000000
--- a/domains/piero.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Piero Is a Dev",
- "repo": "https://replit.com/@piemadd/pierois-adev",
- "owner": {
- "username": "pieromqwerty",
- "email": "isadev@piemadd.com"
- },
- "record": {
- "CNAME": "588d327b-9fb6-4484-856e-0477ffef0efe.repl.co"
- }
-}
diff --git a/domains/pieter.json b/domains/pieter.json
new file mode 100644
index 000000000..7cda41e0c
--- /dev/null
+++ b/domains/pieter.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PieterDePauw",
+ "email": "pieter@pieterdepauw.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pike.json b/domains/pike.json
new file mode 100644
index 000000000..fbb868a48
--- /dev/null
+++ b/domains/pike.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "itsLopcy",
+ "email": "lopcyorasepele@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jamez.json b/domains/pink.json
similarity index 81%
rename from domains/jamez.json
rename to domains/pink.json
index c392e4547..4f12e5fec 100644
--- a/domains/jamez.json
+++ b/domains/pink.json
@@ -4,7 +4,7 @@
"email": "jamezemailreal@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pinkyplant.json b/domains/pinkyplant.json
new file mode 100644
index 000000000..4f12e5fec
--- /dev/null
+++ b/domains/pinkyplant.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jamesisacutedog",
+ "email": "jamezemailreal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/piplup7575.json b/domains/piplup7575.json
index 5948519e2..78f76ef66 100644
--- a/domains/piplup7575.json
+++ b/domains/piplup7575.json
@@ -4,7 +4,7 @@
"email": "piplup7575@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pirpal.json b/domains/pirpal.json
index c5fa06067..b897f3291 100644
--- a/domains/pirpal.json
+++ b/domains/pirpal.json
@@ -4,7 +4,7 @@
"email": "pirpalss@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pixelbots.json b/domains/pixelbots.json
deleted file mode 100644
index 6d1924bea..000000000
--- a/domains/pixelbots.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wansiie",
- "email": "Janeiscool4ever@web.de"
- },
- "record": {
- "CNAME": "89e1de78ff-hosting.gitbook.io"
- }
-}
diff --git a/domains/pixeldust.json b/domains/pixeldust.json
new file mode 100644
index 000000000..306e2332c
--- /dev/null
+++ b/domains/pixeldust.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "p1xeldust",
+ "email": "flutterw1ve@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pixelnest.json b/domains/pixelnest.json
deleted file mode 100644
index 6d1924bea..000000000
--- a/domains/pixelnest.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wansiie",
- "email": "Janeiscool4ever@web.de"
- },
- "record": {
- "CNAME": "89e1de78ff-hosting.gitbook.io"
- }
-}
diff --git a/domains/pixelnestbots.json b/domains/pixelnestbots.json
deleted file mode 100644
index 6d1924bea..000000000
--- a/domains/pixelnestbots.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wansiie",
- "email": "Janeiscool4ever@web.de"
- },
- "record": {
- "CNAME": "89e1de78ff-hosting.gitbook.io"
- }
-}
diff --git a/domains/pixelsbots.json b/domains/pixelsbots.json
deleted file mode 100644
index 6d1924bea..000000000
--- a/domains/pixelsbots.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wansiie",
- "email": "Janeiscool4ever@web.de"
- },
- "record": {
- "CNAME": "89e1de78ff-hosting.gitbook.io"
- }
-}
diff --git a/domains/pknw1.json b/domains/pknw1.json
new file mode 100644
index 000000000..c6f0d0edd
--- /dev/null
+++ b/domains/pknw1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pknw1",
+ "email": "github@pknw1.co.uk"
+ },
+ "record": {
+ "CNAME": "ks5.pknw1.co.uk"
+ }
+}
diff --git a/domains/play.json b/domains/play.json
deleted file mode 100644
index 816c23629..000000000
--- a/domains/play.json
+++ /dev/null
@@ -1,11 +0,0 @@
-
- {
- "owner": {
- "username": "CcNicebruh",
- "email": "tangkeehee2002@gmail.com"
- },
- "record": {
- "A": ["49.231.43.12"]
- }
- }
-
\ No newline at end of file
diff --git a/domains/play.technofusiontech.json b/domains/play.technofusiontech.json
deleted file mode 100644
index ece4e0cea..000000000
--- a/domains/play.technofusiontech.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TechnoFusionTech",
- "email": "technofusiontech@techie.com"
- },
- "record": {
- "A": ["138.68.79.95"]
- }
-}
diff --git a/domains/plexus.json b/domains/plexus.json
new file mode 100644
index 000000000..154a9350e
--- /dev/null
+++ b/domains/plexus.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "angelwarelmao",
+ "email": "asdjaflmao@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pls.json b/domains/pls.json
new file mode 100644
index 000000000..8e5ef7106
--- /dev/null
+++ b/domains/pls.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "plszz",
+ "email": "itsplsdev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/plush.json b/domains/plush.json
index eaf887a0a..725cda352 100644
--- a/domains/plush.json
+++ b/domains/plush.json
@@ -4,7 +4,7 @@
"email": "umer.farooq0@icloud.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/poliwhirl.json b/domains/poliwhirl.json
new file mode 100644
index 000000000..1d8bc3bc4
--- /dev/null
+++ b/domains/poliwhirl.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MattiaCro",
+ "email": "mattia.crosato@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/polytap.json b/domains/polytap.json
new file mode 100644
index 000000000..4f7a08b88
--- /dev/null
+++ b/domains/polytap.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hacktron86",
+ "email": "hacktron86@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ponich-sandbox.json b/domains/ponich-sandbox.json
deleted file mode 100644
index 10f458466..000000000
--- a/domains/ponich-sandbox.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ponich",
- "email": "n.ponich@gmail.com"
- },
-
- "record": {
- "CNAME": "dev.ponich.com"
- }
-}
diff --git a/domains/popcorn.json b/domains/popcorn.json
new file mode 100644
index 000000000..cd359fae1
--- /dev/null
+++ b/domains/popcorn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "POPCORNTVCZE",
+ "email": "popcorntvcze@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pororo.json b/domains/pororo.json
deleted file mode 100644
index 7db26beb2..000000000
--- a/domains/pororo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MoartMedia",
- "email": "u.hello@kakao.com"
- },
- "record": {
- "CNAME": "dev.is.moart.media"
- }
-}
diff --git a/domains/potato.json b/domains/potato.json
new file mode 100644
index 000000000..aea5d4b24
--- /dev/null
+++ b/domains/potato.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RaafatTurki",
+ "email": "raafat.turki@pm.me"
+ },
+ "record": {
+ "CNAME": "potato.alwaysdata.net"
+ }
+}
diff --git a/domains/potatochips0706.json b/domains/potatochips0706.json
new file mode 100644
index 000000000..af8a19b9b
--- /dev/null
+++ b/domains/potatochips0706.json
@@ -0,0 +1,11 @@
+{
+ "description": "A sub-domain to my portfolio github page.",
+ "repo": "https://github.com/potato0706/potato0706.github.io",
+ "owner": {
+ "username": "potato0706",
+ "email": "potatochips0706@gmail.com"
+ },
+ "record": {
+ "CNAME": "potato0706.github.io"
+ }
+}
diff --git a/domains/poyo.json b/domains/poyo.json
new file mode 100644
index 000000000..3866fe1d3
--- /dev/null
+++ b/domains/poyo.json
@@ -0,0 +1,11 @@
+{
+ "description": "I'll use this sub-domain for my portfolio website.",
+ "owner": {
+ "username": "MrDaPoyo",
+ "email": "wiiuforever25@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrdapoyo.github.io"
+ }
+
+}
diff --git a/domains/ppy.json b/domains/ppy.json
new file mode 100644
index 000000000..960b2f8c4
--- /dev/null
+++ b/domains/ppy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ringo360",
+ "email": "nep360i@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prabhat.json b/domains/prabhat.json
deleted file mode 100644
index 8aac90ffa..000000000
--- a/domains/prabhat.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Portfolio Website",
- "repo": "https://github.com/itzPrabhat",
- "owner": {
- "username": "itzPrabhat",
- "email": "prabhatbhatia09@gmail.com"
- },
- "record": {
- "CNAME": "pbdev.ml"
- }
-}
diff --git a/domains/prachiti.json b/domains/prachiti.json
new file mode 100644
index 000000000..e35588040
--- /dev/null
+++ b/domains/prachiti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PrathameshhW",
+ "email": "prathameshj0407@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prafit.json b/domains/prafit.json
index 1e3036641..11586dd95 100644
--- a/domains/prafit.json
+++ b/domains/prafit.json
@@ -4,7 +4,7 @@
"email": "palvido81@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/praharsh.json b/domains/praharsh.json
deleted file mode 100644
index 817615819..000000000
--- a/domains/praharsh.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "praharshjain",
- "email": "praharshsamria@gmail.com"
- },
-
- "record": {
- "CNAME": "praharsh.tech"
- }
-}
diff --git a/domains/prajjwal.json b/domains/prajjwal.json
index 9c5b61bd1..edfc2aad1 100644
--- a/domains/prajjwal.json
+++ b/domains/prajjwal.json
@@ -4,7 +4,7 @@
"email": "cycloneaddon@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/prakarsh.json b/domains/prakarsh.json
new file mode 100644
index 000000000..b1abc3a3d
--- /dev/null
+++ b/domains/prakarsh.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal Website (maybe my portfolio)",
+ "repo": "https://github.com/prakarsh17/prakarsh17.github.io",
+ "owner": {
+ "username": "prakarsh17",
+ "email": "pranjal.prakarsh@outlook.com"
+ },
+ "record": {
+ "CNAME": "prakarsh17.github.io"
+ }
+}
diff --git a/domains/prakhillohiya.json b/domains/prakhillohiya.json
new file mode 100644
index 000000000..13f1f6378
--- /dev/null
+++ b/domains/prakhillohiya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prakhillohiya",
+ "email": "prakhillohiya@gmail.com"
+ },
+ "record": {
+ "CNAME": "prakhillohiya.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/prakmo.json b/domains/prakmo.json
deleted file mode 100644
index 795b3aa92..000000000
--- a/domains/prakmo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PrakmO",
- "email": "omkar9patil0@gmail.com"
- },
- "record": {
- "CNAME": "eb215cd3-797f-4063-bbdf-d9687fc6d8de.id.repl.co"
- }
-}
diff --git a/domains/pranav.json b/domains/pranav.json
deleted file mode 100644
index fe64e0226..000000000
--- a/domains/pranav.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Pranav's personal website",
- "repo": "https://github.com/pranavnt/pt5.dev",
- "owner": {
- "username": "pranavnt",
- "email": "pranavnt@outlook.com"
- },
- "record": {
- "CNAME": "pt5.dev"
- }
-}
diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json
index de9cddb22..664e253e2 100644
--- a/domains/pranavagrawal.json
+++ b/domains/pranavagrawal.json
@@ -6,6 +6,9 @@
"email": "pranavagrawal321@gmail.com"
},
"record": {
- "CNAME": "pranavagrawal321.github.io"
+ "A": ["185.199.108.153"],
+ "AAAA": ["2606:50c0:8001::153"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/pranjal.json b/domains/pranjal.json
index aeca0df34..dcd951e58 100644
--- a/domains/pranjal.json
+++ b/domains/pranjal.json
@@ -4,7 +4,7 @@
"email": "psbhatnagar.in@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/pranjalrastogi.json b/domains/pranjalrastogi.json
deleted file mode 100644
index d82c6fb40..000000000
--- a/domains/pranjalrastogi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PjrCodes",
- "email": "pranjal.j.rastogi@gmail.com"
- },
- "record": {
- "CNAME": "thepjr.com"
- }
-}
diff --git a/domains/prasadsawant.json b/domains/prasadsawant.json
index e428a7bc5..041840f36 100644
--- a/domains/prasadsawant.json
+++ b/domains/prasadsawant.json
@@ -4,7 +4,7 @@
"email": "prasadsawant7git@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/prathamesh.json b/domains/prathamesh.json
index 542ba6fe7..e35588040 100644
--- a/domains/prathamesh.json
+++ b/domains/prathamesh.json
@@ -4,7 +4,7 @@
"email": "prathameshj0407@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/predefine.json b/domains/predefine.json
index e299ee19b..38cad70a7 100644
--- a/domains/predefine.json
+++ b/domains/predefine.json
@@ -4,7 +4,7 @@
"email": "predefine@yandex.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/prharshith.json b/domains/prharshith.json
new file mode 100644
index 000000000..db0b2efac
--- /dev/null
+++ b/domains/prharshith.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "prharshith",
+ "email": "prharshith37@gmail.com",
+ "twitter": "prharshith37"
+ },
+ "record": {
+ "CNAME": "prharshith.pages.dev"
+ }
+}
\ No newline at end of file
diff --git a/domains/pricing.syntaxloopers.json b/domains/pricing.syntaxloopers.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/pricing.syntaxloopers.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/prima.json b/domains/prima.json
new file mode 100644
index 000000000..63f2620ed
--- /dev/null
+++ b/domains/prima.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "coderzhaxor",
+ "email": "ajanuantara@gmail.com"
+ },
+ "record": {
+ "CNAME": "coderzhaxor.github.io"
+ }
+}
diff --git a/domains/pringelsdc.json b/domains/pringelsdc.json
new file mode 100644
index 000000000..fbcbf05e7
--- /dev/null
+++ b/domains/pringelsdc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Bot-Dev1",
+ "email": "julia.hillmann123@gmail.com"
+ },
+
+ "record": {
+ "A": ["45.145.226.13"]
+ }
+}
diff --git a/domains/prisems.json b/domains/prisems.json
deleted file mode 100644
index 14d923705..000000000
--- a/domains/prisems.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "prisems",
- "email": "earthrulerr@gmail.com"
- },
- "record": {
- "CNAME": "4b616032-4803-4d79-a566-b8523b0ef299.id.repl.co"
- }
-}
diff --git a/domains/priyanka.json b/domains/priyanka.json
index 36988655b..de010a275 100644
--- a/domains/priyanka.json
+++ b/domains/priyanka.json
@@ -4,7 +4,7 @@
"email": "priyankaananthashetty@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/priyanshu.json b/domains/priyanshu.json
index 3a388873c..5d59c0e6d 100644
--- a/domains/priyanshu.json
+++ b/domains/priyanshu.json
@@ -1,9 +1,10 @@
{
"owner": {
- "username": "PriyanshuxGupta",
- "email": "priyanshugupta6891@gmail.com"
+ "username": "Priyansxu",
+ "email": "cloudypriyanshu@gmail.com",
+ "twitter": "priyansxu_gupta"
},
"record": {
- "CNAME": "fa339f2a-eae3-42e4-a4a1-18c2726299a3.id.repl.co"
+ "CNAME": "priyanshu.pages.dev"
}
-}
+}
diff --git a/domains/pro.json b/domains/pro.json
new file mode 100644
index 000000000..c4e85b6f2
--- /dev/null
+++ b/domains/pro.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pro1492025",
+ "email": "pro1492025@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prodefix.json b/domains/prodefix.json
index c80a7635c..e6e8d9236 100644
--- a/domains/prodefix.json
+++ b/domains/prodefix.json
@@ -4,7 +4,7 @@
"email": "prodefix.ytb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/proo.json b/domains/proo.json
new file mode 100644
index 000000000..c4e85b6f2
--- /dev/null
+++ b/domains/proo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pro1492025",
+ "email": "pro1492025@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prototalk.json b/domains/prototalk.json
new file mode 100644
index 000000000..2a071ccd7
--- /dev/null
+++ b/domains/prototalk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "micho137",
+ "email": "michaenrangelmr@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prox.json b/domains/prox.json
new file mode 100644
index 000000000..c4e85b6f2
--- /dev/null
+++ b/domains/prox.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pro1492025",
+ "email": "pro1492025@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/proximity.json b/domains/proximity.json
deleted file mode 100644
index 9bee26560..000000000
--- a/domains/proximity.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Dev Env",
- "repo": "https://github.com/hexed",
- "owner": {
- "username": "hexed",
- "email": "me@proximity.sh"
- },
- "record": {
- "A": ["144.172.67.6"]
- }
-}
diff --git a/domains/prryplatypus.json b/domains/prryplatypus.json
deleted file mode 100644
index 8311ab435..000000000
--- a/domains/prryplatypus.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/prryplatypus",
- "owner": {
- "username": "prryplatypus",
- "email": "",
- "twitter": "prryplatypus"
- },
- "record": {
- "CNAME": "prryplatypus.dev"
- }
-}
diff --git a/domains/psharma.json b/domains/psharma.json
deleted file mode 100644
index 690830a72..000000000
--- a/domains/psharma.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Pranav Sharma's developer-specific blog.",
- "repo": "https://github.com/psharma04",
- "owner": {
- "username": "psharma04",
- "email": "isadev@psharma.schoolnotes.xyz"
- },
- "record": {
- "CNAME": "servarr.nighthawk.pw"
- }
-}
diff --git a/domains/psyro.json b/domains/psyro.json
deleted file mode 100644
index e53542852..000000000
--- a/domains/psyro.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Clynt uplaoder!",
- "repo": "https://gitlab.com/Clynt707/SharX",
- "owner": {
- "username": "Clynt",
- "email": "clyntcollin@gmail.com"
- },
- "record": {
- "A": ["45.131.108.144"]
- }
-}
diff --git a/domains/puchikat.json b/domains/puchikat.json
index 83fdc615a..33993fd19 100644
--- a/domains/puchikat.json
+++ b/domains/puchikat.json
@@ -4,7 +4,7 @@
"email": "lamdev1212@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/punto.tomgxz.json b/domains/punto.tomgxz.json
deleted file mode 100644
index c0a3d9187..000000000
--- a/domains/punto.tomgxz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tomgxz",
- "email": "tomgxz138@gmail.com"
- },
- "record": {
- "CNAME": "de2df0d8-013b-487c-b621-4423472d6d71.id.repl.co"
- }
-}
diff --git a/domains/pupbrained.json b/domains/pupbrained.json
deleted file mode 100644
index 6dc24e09b..000000000
--- a/domains/pupbrained.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "pupbrained",
- "email": "mars@pupbrained.xyz"
- },
- "record": {
- "CNAME": "pupbrained.xyz"
- }
-}
diff --git a/domains/puria.json b/domains/puria.json
new file mode 100644
index 000000000..8e104b237
--- /dev/null
+++ b/domains/puria.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CoderApuri",
+ "email": "puri.aarav@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/q31265503-bio.json b/domains/q31265503-bio.json
index 253d2ddea..59294b2fd 100644
--- a/domains/q31265503-bio.json
+++ b/domains/q31265503-bio.json
@@ -4,7 +4,7 @@
"email": "fedulai195@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/q31265503.json b/domains/q31265503.json
index 253d2ddea..59294b2fd 100644
--- a/domains/q31265503.json
+++ b/domains/q31265503.json
@@ -4,7 +4,7 @@
"email": "fedulai195@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/qnm1.json b/domains/qnm1.json
deleted file mode 100644
index 85f743039..000000000
--- a/domains/qnm1.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "questonomemio1",
- "email": "lorenzomusto.dbz@gmail.com"
- },
- "record": {
- "URL": "https://dev-questonomemio1.pantheonsite.io"
- }
-}
diff --git a/domains/qqg00.json b/domains/qqg00.json
index dd140730e..1651c390a 100644
--- a/domains/qqg00.json
+++ b/domains/qqg00.json
@@ -4,7 +4,7 @@
"email": "vx2dsk@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/quantamphysics.json b/domains/quantamphysics.json
index cb35e6f92..94ebbc75e 100644
--- a/domains/quantamphysics.json
+++ b/domains/quantamphysics.json
@@ -4,7 +4,7 @@
"email": "Sujataghosal05@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/quartz.json b/domains/quartz.json
index 2aa1c45c9..72d3a1100 100644
--- a/domains/quartz.json
+++ b/domains/quartz.json
@@ -4,7 +4,7 @@
"email": "chrissquartz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/querko.json b/domains/querko.json
new file mode 100644
index 000000000..1dbbe498c
--- /dev/null
+++ b/domains/querko.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ProfKrzys",
+ "email": "krzysztof2011@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/quest.json b/domains/quest.json
new file mode 100644
index 000000000..f268a50e5
--- /dev/null
+++ b/domains/quest.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CcNicebruh",
+ "email": "tangkeehee2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/qwerty-qwerty.json b/domains/qwerty-qwerty.json
deleted file mode 100644
index b922c0b7f..000000000
--- a/domains/qwerty-qwerty.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Qwerty-Qwerty88",
- "email": "personqwertyperson88@gmail.com"
- },
- "record": {
- "CNAME": "d9394ac5-c4db-44e1-b67f-198ad4c7dc3a.id.repl.co"
- }
-}
diff --git a/domains/qwertyqwerty.json b/domains/qwertyqwerty.json
new file mode 100644
index 000000000..c064112ad
--- /dev/null
+++ b/domains/qwertyqwerty.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Qwerty-Qwerty88",
+ "email": "personqwertyperson88@gmail.com",
+ "twitter": "QwertyQwerty88_"
+ },
+ "record": {
+ "A": ["34.111.254.92"],
+ "TXT": "replit-verify=91e42e80-7ebf-4e64-88e0-b20657592584"
+ }
+}
diff --git a/domains/r0bl0x10501050.json b/domains/r0bl0x10501050.json
deleted file mode 100644
index aaedfa16f..000000000
--- a/domains/r0bl0x10501050.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "R0bl0x10501050's portfolio site!",
- "repo": "https://github.com/R0bl0x10501050/1050-Site",
- "owner": {
- "username": "R0bl0x10501050",
- "email": "r0bl0x10501050e@gmail.com",
- "twitter": "r0bl0x10501050",
- "discord": "R0bl0x10501050#9989"
- },
- "record": {
- "CNAME": "846358be-940c-4bdd-8b5b-3964aab5843c.id.repl.co"
- }
-}
diff --git a/domains/r2d2.json b/domains/r2d2.json
deleted file mode 100644
index 6ceaa1b7a..000000000
--- a/domains/r2d2.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "R2D2 website",
- "owner": {
- "username": "hogakesan",
- "email": "aereg@ya.ru"
- },
- "record": {
- "A": ["46.32.83.106"]
- }
-}
diff --git a/domains/ra.json b/domains/ra.json
index 2148b17d0..0a922bbd7 100644
--- a/domains/ra.json
+++ b/domains/ra.json
@@ -4,7 +4,7 @@
"email": "rizmyabdulla@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/racem.json b/domains/racem.json
deleted file mode 100644
index 663509173..000000000
--- a/domains/racem.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Racembenamar",
- "email": "racem.benamar@esprit.tn"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/racembenamar.json b/domains/racembenamar.json
index 663509173..039c08e26 100644
--- a/domains/racembenamar.json
+++ b/domains/racembenamar.json
@@ -4,7 +4,7 @@
"email": "racem.benamar@esprit.tn"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/radi8.json b/domains/radi8.json
deleted file mode 100644
index 3bd7955bd..000000000
--- a/domains/radi8.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "radeeyate",
- "email": "radi8@duck.com"
- },
-
- "record": {
- "CNAME": "radi8.dev"
- }
-}
diff --git a/domains/radsteve.json b/domains/radsteve.json
deleted file mode 100644
index 8a87446e0..000000000
--- a/domains/radsteve.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "radstevee",
- "email": "radsteve@radsteve.net"
- },
- "record": {
- "A": ["2.205.42.22"]
- }
-}
diff --git a/domains/rafal.json b/domains/rafal.json
deleted file mode 100644
index 951e7480c..000000000
--- a/domains/rafal.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TheRafal",
- "email": "therafal@proton.me"
- },
- "record": {
- "A": ["178.159.197.126"]
- }
-}
diff --git a/domains/rafsanrakib.json b/domains/rafsanrakib.json
index 306f4f8bf..6a29c29b2 100644
--- a/domains/rafsanrakib.json
+++ b/domains/rafsanrakib.json
@@ -4,7 +4,7 @@
"email": "rakibyt13155@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/raga.json b/domains/raga.json
index e808f851c..5223d07be 100644
--- a/domains/raga.json
+++ b/domains/raga.json
@@ -4,7 +4,7 @@
"email": "rfilmriot@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rage65.json b/domains/rage65.json
new file mode 100644
index 000000000..09d1194d8
--- /dev/null
+++ b/domains/rage65.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rage65",
+ "email": "123thetechguy@gmail.com"
+ },
+ "record": {
+ "CNAME": "rage65.duckdns.org"
+ }
+}
diff --git a/domains/rahil.json b/domains/rahil.json
new file mode 100644
index 000000000..e0a024880
--- /dev/null
+++ b/domains/rahil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Rahilkzi",
+ "email": "rahilkazi66@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rahul-ray.json b/domains/rahul-ray.json
index 5e0f55ae4..b0605a62c 100644
--- a/domains/rahul-ray.json
+++ b/domains/rahul-ray.json
@@ -4,7 +4,7 @@
"email": "raystatic9650@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rahul.json b/domains/rahul.json
deleted file mode 100644
index b1e212657..000000000
--- a/domains/rahul.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Rahul's personal developer website",
- "repo": "https://github.com/rahuldahal",
- "owner": {
- "username": "rahuldahal",
- "email": "rdaahal@gmail.com"
- },
- "record": {
- "CNAME": "rahuldahal.com.np"
- }
-}
diff --git a/domains/rahul.ray.json b/domains/rahul.ray.json
index 5e0f55ae4..b0605a62c 100644
--- a/domains/rahul.ray.json
+++ b/domains/rahul.ray.json
@@ -4,7 +4,7 @@
"email": "raystatic9650@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rahulol.json b/domains/rahulol.json
index 09894d160..9e5130dbb 100644
--- a/domains/rahulol.json
+++ b/domains/rahulol.json
@@ -4,7 +4,7 @@
"email": "rahulsinghhh2312@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rahulray.json b/domains/rahulray.json
index 5e0f55ae4..b0605a62c 100644
--- a/domains/rahulray.json
+++ b/domains/rahulray.json
@@ -4,7 +4,7 @@
"email": "raystatic9650@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/raid.json b/domains/raid.json
deleted file mode 100644
index 51eeada27..000000000
--- a/domains/raid.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ImRaid",
- "email": "romanplayer76@gmail.com"
- },
- "record": {
- "CNAME": "f8d83b65-6aa3-47dd-952f-95b1a52eadb4.id.repl.co"
- }
-}
diff --git a/domains/raiden-16f7.json b/domains/raiden-16f7.json
new file mode 100644
index 000000000..dbb862b35
--- /dev/null
+++ b/domains/raiden-16f7.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Raiden-16F7",
+ "email": "fahad.rizwan07@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/raiden.json b/domains/raiden.json
deleted file mode 100644
index 955c67630..000000000
--- a/domains/raiden.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "raiden076",
- "email": "arkapravodas99@gmail.com"
- },
- "record": {
- "A": ["144.24.145.70"]
- }
-}
diff --git a/domains/raiin.json b/domains/raiin.json
index ae347f452..4e6a7710f 100644
--- a/domains/raiin.json
+++ b/domains/raiin.json
@@ -4,7 +4,7 @@
"email": "clicpowytb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rain.json b/domains/rain.json
new file mode 100644
index 000000000..7eb0584ca
--- /dev/null
+++ b/domains/rain.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "devraiin",
+ "email": "amarbajrif@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/raiven.json b/domains/raiven.json
deleted file mode 100644
index 392efa682..000000000
--- a/domains/raiven.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "rdvntpkky",
- "email": "ridvantopakkaya@hotmail.com"
- },
-
- "record": {
- "A": ["193.31.116.116"]
- }
-}
diff --git a/domains/raiyaad-raad.json b/domains/raiyaad-raad.json
new file mode 100644
index 000000000..7bc5f30a1
--- /dev/null
+++ b/domains/raiyaad-raad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Raiyaad-Raad",
+ "email": "raiyaadraad132rafan45@gmail.com"
+ },
+ "record": {
+ "CNAME": "raiyaad-raad.github.io"
+ }
+}
diff --git a/domains/raiyaad.json b/domains/raiyaad.json
new file mode 100644
index 000000000..7bc5f30a1
--- /dev/null
+++ b/domains/raiyaad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Raiyaad-Raad",
+ "email": "raiyaadraad132rafan45@gmail.com"
+ },
+ "record": {
+ "CNAME": "raiyaad-raad.github.io"
+ }
+}
diff --git a/domains/rajuan.json b/domains/rajuan.json
new file mode 100644
index 000000000..86487e7e1
--- /dev/null
+++ b/domains/rajuan.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "rajuan-r34",
+ "email": "rajuan.r34.dev@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rakib.json b/domains/rakib.json
deleted file mode 100644
index cc586fe32..000000000
--- a/domains/rakib.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "For my personal portfolio",
- "repo": "https://github.comrakibul-islam-hasib/rakibul-islam-hasib.github.io",
- "owner": {
- "username": "rakibul-islam-hasib",
- "email": "boraborhasib@gmail.com",
- "twitter": "netkinghasib"
- },
- "record": {
- "CNAME": "rakibul-islam-hasib.github.io"
- }
-}
diff --git a/domains/rakibahmed.json b/domains/rakibahmed.json
index 306f4f8bf..6a29c29b2 100644
--- a/domains/rakibahmed.json
+++ b/domains/rakibahmed.json
@@ -4,7 +4,7 @@
"email": "rakibyt13155@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rakibrafsaaan.json b/domains/rakibrafsaaan.json
index 306f4f8bf..6a29c29b2 100644
--- a/domains/rakibrafsaaan.json
+++ b/domains/rakibrafsaaan.json
@@ -4,7 +4,7 @@
"email": "rakibyt13155@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rakibrafsan.json b/domains/rakibrafsan.json
index 306f4f8bf..6a29c29b2 100644
--- a/domains/rakibrafsan.json
+++ b/domains/rakibrafsan.json
@@ -4,7 +4,7 @@
"email": "rakibyt13155@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ralph.json b/domains/ralph.json
deleted file mode 100644
index 6d809aef9..000000000
--- a/domains/ralph.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Ralph Wang's blog",
- "owner": {
- "username": "ralph",
- "email": "asnowwolf@gmail.com"
- },
- "record": {
- "CNAME": "blog.ralph.wang"
- }
-}
diff --git a/domains/ramakrishna.json b/domains/ramakrishna.json
new file mode 100644
index 000000000..a84d242b1
--- /dev/null
+++ b/domains/ramakrishna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Arrekhey",
+ "email": "pillaramakrishna77@yahoo.com"
+ },
+ "record": {
+ "URL": "https://www.ramakrishna.com"
+ }
+}
diff --git a/domains/rana.json b/domains/rana.json
index 1db84fe1b..85b5d0800 100644
--- a/domains/rana.json
+++ b/domains/rana.json
@@ -4,7 +4,7 @@
"email": "rannawe.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ranamoh.json b/domains/ranamoh.json
index 1db84fe1b..85b5d0800 100644
--- a/domains/ranamoh.json
+++ b/domains/ranamoh.json
@@ -4,7 +4,7 @@
"email": "rannawe.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rare1k.json b/domains/rare1k.json
new file mode 100644
index 000000000..ae9f0b869
--- /dev/null
+++ b/domains/rare1k.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "uhidontkno",
+ "email": "bjaaa2gmlmain@gmail.com",
+ "discord": "1129545353717366884"
+ },
+
+ "record": {
+ "A": ["134.56.183.128"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/rasofex.json b/domains/rasofex.json
deleted file mode 100644
index b2303d2b8..000000000
--- a/domains/rasofex.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Rasofex",
- "email": "rasofex@yandex.ru"
- },
-
- "record": {
- "A": ["217.18.61.157"]
- }
-}
diff --git a/domains/raspi.json b/domains/raspi.json
new file mode 100644
index 000000000..373716fe7
--- /dev/null
+++ b/domains/raspi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Raspi-dude",
+ "email": "musashibeckman@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ratler.json b/domains/ratler.json
deleted file mode 100644
index a374ca597..000000000
--- a/domains/ratler.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "ratler is a dev subdomain",
- "owner": {
- "username": "ItzArman09",
- "email": "contact@mail.arman.is-a.dev"
- },
- "record": {
- "A": ["89.106.200.1"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/raunak.json b/domains/raunak.json
new file mode 100644
index 000000000..7e4601e62
--- /dev/null
+++ b/domains/raunak.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Newer1107",
+ "email": "newerxd1@gmail.com",
+ "discord": "964547951273840650"
+ },
+
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
+ }
+ }
+
diff --git a/domains/raviteja-geddada.json b/domains/raviteja-geddada.json
new file mode 100644
index 000000000..16203b487
--- /dev/null
+++ b/domains/raviteja-geddada.json
@@ -0,0 +1,16 @@
+{
+ "owner": {
+ "username": "Raviteja77",
+ "email": "geddadaraviteja612@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/ravost.json b/domains/ravost.json
deleted file mode 100644
index 1ebaacd7b..000000000
--- a/domains/ravost.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Ravost99",
- "email": "Ravost6@outlook.com"
- },
- "description": "Ravost99's Personal website",
- "record": {
- "CNAME": "910fc002-6c43-4a8f-89d9-e0807e831470.id.repl.co"
- }
-}
diff --git a/domains/notify-api.json b/domains/raw.json
similarity index 73%
rename from domains/notify-api.json
rename to domains/raw.json
index ef2dd2748..f37ef295e 100644
--- a/domains/notify-api.json
+++ b/domains/raw.json
@@ -5,6 +5,6 @@
},
"record": {
- "CNAME": "dns.beadman-network.com"
+ "URL": "https://raw-api.is-a.dev"
}
}
diff --git a/domains/ray.json b/domains/ray.json
deleted file mode 100644
index e0a618574..000000000
--- a/domains/ray.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "RayhanADev's Personal Website",
- "repo": "https://github.com/rayhanadev/Personal-Website-v3",
- "owner": {
- "username": "rayhanadev",
- "email": "rayhanadev@protonmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/rayan.json b/domains/rayan.json
index cff26534a..382c85671 100644
--- a/domains/rayan.json
+++ b/domains/rayan.json
@@ -4,7 +4,7 @@
"email": "kkll345643@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rayane-nekena.json b/domains/rayane-nekena.json
new file mode 100644
index 000000000..853cda9b5
--- /dev/null
+++ b/domains/rayane-nekena.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for my personal blog",
+ "repo": "https://github.com/Online13/Online13.github.io",
+ "owner": {
+ "username": "Online13",
+ "email": "Rratiarivelo@gmail.com"
+ },
+ "record": {
+ "CNAME":"online13.github.io"
+ }
+}
diff --git a/domains/raystatic.json b/domains/raystatic.json
index 2982171f9..a2081fb71 100644
--- a/domains/raystatic.json
+++ b/domains/raystatic.json
@@ -4,7 +4,7 @@
"email": "rahul9650ray@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/razvy.json b/domains/razvy.json
index 52e753f4a..d46a972aa 100644
--- a/domains/razvy.json
+++ b/domains/razvy.json
@@ -4,7 +4,7 @@
"email": "nxyylol@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/re.maskduck.json b/domains/re.maskduck.json
deleted file mode 100644
index 0f9b04d19..000000000
--- a/domains/re.maskduck.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MaskDuck",
- "email": "maskduckuwu@gmail.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/rebokdev.json b/domains/rebokdev.json
index ab0218719..83be04508 100644
--- a/domains/rebokdev.json
+++ b/domains/rebokdev.json
@@ -4,7 +4,7 @@
"email": "rebok@duck.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/recoderdrastic.json b/domains/recoderdrastic.json
index 842ac532a..d5dd3c361 100644
--- a/domains/recoderdrastic.json
+++ b/domains/recoderdrastic.json
@@ -4,7 +4,7 @@
"email": "shaileteitpa@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/reef.json b/domains/reef.json
index e14593559..478c13ca4 100644
--- a/domains/reef.json
+++ b/domains/reef.json
@@ -4,7 +4,7 @@
"email": "reefsalter@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/reegan.json b/domains/reegan.json
new file mode 100644
index 000000000..37a8d84d2
--- /dev/null
+++ b/domains/reegan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "reeganrajasekar",
+ "email": "areeganrajasekar@gmail.com"
+ },
+ "record": {
+ "A": ["103.191.209.47"]
+ }
+}
diff --git a/domains/refact0r.json b/domains/refact0r.json
index 619c4f74d..cfbd29f2c 100644
--- a/domains/refact0r.json
+++ b/domains/refact0r.json
@@ -4,7 +4,7 @@
"email": "yifanw06@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/register-bot.json b/domains/register-bot.json
index 1afde3af6..45ad3d5aa 100644
--- a/domains/register-bot.json
+++ b/domains/register-bot.json
@@ -1,11 +1,12 @@
{
- "description": "Register-bot",
- "repo": "https://github.com/andrewstech/is-a-dev-bot",
- "owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "CNAME": "dns.beadman-network.com"
+ "owner": {
+ "username": "is-a-dev",
+ "email": "andrew@maintainers.is-a.dev",
+ "discord": "598245488977903688"
+ },
+
+ "record": {
+ "A": ["217.174.245.249"]
+ }
}
-}
+
diff --git a/domains/rehanplayz.json b/domains/rehanplayz.json
deleted file mode 100644
index 5834203a0..000000000
--- a/domains/rehanplayz.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A redirect to my new domain",
- "repo": "https://github.com/RehanPlayz/RehanPlayz.github.io",
- "owner": {
- "username": "RehanPlayz",
- "email": "rehanplayz321@protonmail.com"
- },
- "record": {
- "CNAME": "rehanplayz.gq"
- }
-}
diff --git a/domains/renata.json b/domains/renata.json
index 57db3a46a..16e0f1790 100644
--- a/domains/renata.json
+++ b/domains/renata.json
@@ -4,7 +4,7 @@
"email": "emirhan@duck.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rendi.json b/domains/rendi.json
new file mode 100644
index 000000000..f0a27972d
--- /dev/null
+++ b/domains/rendi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "avrzll",
+ "email": "yogsstore.send@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/replit.json b/domains/replit.json
deleted file mode 100644
index e4b56d679..000000000
--- a/domains/replit.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Setup is-a.dev domain with Replit",
- "owner": {
- "username": "VaibhavSys",
- "email": "vaibhavsys@protonmail.com"
- },
- "record": {
- "CNAME": "ff4ced07-325d-4fbd-8fcc-d3ae663f2a60.id.repl.co"
- }
-}
diff --git a/domains/rest.json b/domains/rest.json
deleted file mode 100644
index c8eb4c2b8..000000000
--- a/domains/rest.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Amir-Lotfi",
- "email": "amir79976@gmail.com"
- },
-
- "record": {
- "A": ["136.243.109.199"]
- }
-}
diff --git a/domains/restart.json b/domains/restart.json
index c55b7045c..79426f3d7 100644
--- a/domains/restart.json
+++ b/domains/restart.json
@@ -4,7 +4,7 @@
"email": "godfather.x64@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/retr0xraiden.json b/domains/retr0xraiden.json
new file mode 100644
index 000000000..91cf17508
--- /dev/null
+++ b/domains/retr0xraiden.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Developer Portfolio",
+ "repo": "https://github.com/raiden-16f7/raiden-16f7.github.io",
+ "owner": {
+ "username": "Raiden-16F7",
+ "email": "fahad.rizwan07@gmail.com"
+ },
+ "record": {
+ "CNAME": "raiden-16f7.github.io"
+ }
+}
diff --git a/domains/return.json b/domains/return.json
index 2d85844dc..a4dba5b04 100644
--- a/domains/return.json
+++ b/domains/return.json
@@ -4,7 +4,7 @@
"email": "hc_2583@naver.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/revelav2.json b/domains/revelav2.json
deleted file mode 100644
index efcc3f18b..000000000
--- a/domains/revelav2.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "revelav2.is-a.dev",
- "owner": {
- "username": "DIVISIONSolar",
- "email": "me@joshsevero.dev"
- },
- "record": {
- "CNAME": "proxy.revela.network"
- }
-}
diff --git a/domains/reynold.json b/domains/reynold.json
deleted file mode 100644
index 863f72857..000000000
--- a/domains/reynold.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "EMMU",
- "email": "aneenababu71901@gmail.com"
- },
- "record": {
- "CNAME": "d60bb323-8a85-4e54-82b0-f2faaf77569c.id.repl.co"
- }
-}
diff --git a/domains/reyzo.json b/domains/reyzo.json
index 9abe02bec..09b9730d0 100644
--- a/domains/reyzo.json
+++ b/domains/reyzo.json
@@ -4,7 +4,7 @@
"email": "konectplay2008@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rherly.json b/domains/rherly.json
index 3c909341b..6a58e20bd 100644
--- a/domains/rherly.json
+++ b/domains/rherly.json
@@ -4,7 +4,7 @@
"email": "rherlydev@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rhino.json b/domains/rhino.json
deleted file mode 100644
index ba363f9be..000000000
--- a/domains/rhino.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Tech2Logix",
- "email": "rhinovanboxelaere@outlook.com"
- },
- "record": {
- "CNAME": "rhino-vb.be"
- }
-}
diff --git a/domains/riann.json b/domains/riann.json
new file mode 100644
index 000000000..7e3199d98
--- /dev/null
+++ b/domains/riann.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "afrianluthfan",
+ "email": "afrian.luthfan@gmail.com"
+ },
+ "record": {
+ "CNAME": "afrianluthfan.github.io"
+ }
+}
diff --git a/domains/riannegreiros.json b/domains/riannegreiros.json
deleted file mode 100644
index 04b9c38f9..000000000
--- a/domains/riannegreiros.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "RianNegreiros",
- "email": "riannegreiros@gmail.com"
- },
- "record": {
- "CNAME": "blog-client-66ki.onrender.com"
- }
-}
diff --git a/domains/rice.json b/domains/rice.json
new file mode 100644
index 000000000..4db421dec
--- /dev/null
+++ b/domains/rice.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JoaquinDaBest",
+ "email": "theonlyhehehehaw@gmail.com"
+ },
+ "record": {
+ "CNAME": "keenwa.x10.mx"
+ }
+}
diff --git a/domains/richie.json b/domains/richie.json
deleted file mode 100644
index 6932520cd..000000000
--- a/domains/richie.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "This is for my local server",
- "repo": "https://github.com/richiesuper",
- "owner": {
- "username": "richiesuper",
- "email": "richie9963@gmail.com"
- },
- "record": {
- "CNAME": "richiesuper.ddns.net"
- }
-}
diff --git a/domains/rick.json b/domains/rick.json
deleted file mode 100644
index 15f4f7871..000000000
--- a/domains/rick.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a fun website i made",
- "repo": "https://github.com/rickastleyy/rickastleyy",
- "owner": {
- "username": "rickastleyy",
- "email": "rickrolle.you@outlook.com"
- },
- "record": {
- "CNAME": "50e20db5-db2e-4dc7-9913-9986797944d3.repl.co"
- }
-}
diff --git a/domains/ridamkrishna.json b/domains/ridamkrishna.json
deleted file mode 100644
index 7ff0a9d5a..000000000
--- a/domains/ridamkrishna.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ridamEXE",
- "email": "ridamkrishna@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/riddim-glitch.json b/domains/riddim-glitch.json
new file mode 100644
index 000000000..a7209946c
--- /dev/null
+++ b/domains/riddim-glitch.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Riddim-GLiTCH",
+ "email": "Riddim_GLiTCH@courvix.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rie.json b/domains/rie.json
deleted file mode 100644
index bb6d20603..000000000
--- a/domains/rie.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Rie's Website",
- "repo": "https://github.com/meguminsama",
- "owner": {
- "username": "MeguminSama",
- "email": "megumin@megu.dev"
- },
- "record": {
- "CNAME": "cname-dev.megu.dev"
- }
-}
diff --git a/domains/rifkisaputra.json b/domains/rifkisaputra.json
index ed2d54e62..a784cb1b1 100644
--- a/domains/rifkisaputra.json
+++ b/domains/rifkisaputra.json
@@ -4,7 +4,7 @@
"email": "rifkimuhamad0987@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/riko.json b/domains/riko.json
deleted file mode 100644
index 9029c0da9..000000000
--- a/domains/riko.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GoldenFire2317",
- "email": "buttersword2017@gmail.com"
- },
- "record": {
- "CNAME": "riko.mkoca.org"
- }
-}
diff --git a/domains/rikosnapse.json b/domains/rikosnapse.json
deleted file mode 100644
index 9029c0da9..000000000
--- a/domains/rikosnapse.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GoldenFire2317",
- "email": "buttersword2017@gmail.com"
- },
- "record": {
- "CNAME": "riko.mkoca.org"
- }
-}
diff --git a/domains/rin.json b/domains/rin.json
index 04bf3325a..aa4ae7dd1 100644
--- a/domains/rin.json
+++ b/domains/rin.json
@@ -4,7 +4,7 @@
"email": "budderlovr@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ringoxd.json b/domains/ringoxd.json
index 89b26aaae..32da7ce07 100644
--- a/domains/ringoxd.json
+++ b/domains/ringoxd.json
@@ -4,7 +4,7 @@
"email": "nep360i@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/riskybot.riskymh.json b/domains/riskybot.riskymh.json
deleted file mode 100644
index 59ebce7cb..000000000
--- a/domains/riskybot.riskymh.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Discord Bot Website",
- "repo": "https://github.com/RiskyMH/RiskyBOT",
- "owner": {
- "username": "RiskyMH",
- "discord": "RiskyMH#0182",
- "email": ""
- },
- "record": {
- "URL": "https://riskymh.github.io/RiskyBOT"
- }
-}
diff --git a/domains/riviox.json b/domains/riviox.json
index 6b323db18..043628e7f 100644
--- a/domains/riviox.json
+++ b/domains/riviox.json
@@ -1,11 +1,12 @@
{
+ "description": "riviox's website",
+ "repo": "https://github.com/riviox/riviox.github.io",
"owner": {
- "username": "RivioxGaming",
- "email": "rivioxyt@hotmail.com"
+ "username": "riviox",
+ "email": "rivioxyt@hotmail.com",
+ "twitter": "riviox40451"
},
"record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
- "MX": ["hosts.is-a.dev"]
+ "CNAME": "riviox.github.io"
}
-}
+}
diff --git a/domains/rize.json b/domains/rize.json
deleted file mode 100644
index 4d0a9db37..000000000
--- a/domains/rize.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "l1gm4b4lls",
- "email": "mejmayfoof@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/rizvan.json b/domains/rizvan.json
new file mode 100644
index 000000000..6dd41af68
--- /dev/null
+++ b/domains/rizvan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MRizvank",
+ "email": "rizvankurungattil@gmail.com"
+ },
+ "record": {
+ "CNAME": "Mrizvank.github.io"
+ }
+}
diff --git a/domains/rmd.json b/domains/rmd.json
new file mode 100644
index 000000000..16180ac45
--- /dev/null
+++ b/domains/rmd.json
@@ -0,0 +1,11 @@
+{
+ "description": "This subdomain is for my personal website.",
+ "repo": "https://github.com/danknessdra/danknessdra.github.io",
+ "owner": {
+ "username": "danknessdra",
+ "email": "danknessdra@gmail.com"
+ },
+ "record": {
+ "CNAME": "danknessdra.github.io"
+ }
+}
diff --git a/domains/rnv.json b/domains/rnv.json
index 1a8810506..6a130d687 100644
--- a/domains/rnv.json
+++ b/domains/rnv.json
@@ -4,7 +4,7 @@
"email": "arnavp651@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/robert.json b/domains/robert.json
deleted file mode 100644
index d8b314658..000000000
--- a/domains/robert.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Robert's portfolio",
- "repo": "https://github.com/treboryx",
- "owner": {
- "username": "treboryx",
- "email": "treboryx@gmail.com"
- },
- "record": {
- "CNAME": "roberto.gr"
- }
-}
diff --git a/domains/robin.json b/domains/robin.json
deleted file mode 100644
index 230c013f6..000000000
--- a/domains/robin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "RobinDev03",
- "email": "robin@robin-it.de"
- },
-
- "record": {
- "CNAME": "robin-w.de"
- }
-}
diff --git a/domains/robskan.json b/domains/robskan.json
index a32859b2f..1b22913ff 100644
--- a/domains/robskan.json
+++ b/domains/robskan.json
@@ -4,7 +4,7 @@
"email": "rrsnijder@yahoo.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rockstarbuddies.json b/domains/rockstarbuddies.json
index 851091c22..ce5f1098a 100644
--- a/domains/rockstarbuddies.json
+++ b/domains/rockstarbuddies.json
@@ -4,7 +4,7 @@
"email": "yourrockingbuddy@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rocky.json b/domains/rocky.json
new file mode 100644
index 000000000..7947a57a7
--- /dev/null
+++ b/domains/rocky.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PRODEFIX",
+ "email": "prodefix.ytb@gmail.com"
+ },
+ "record": {
+ "CNAME": "rockybots.betteruptime.com"
+ }
+}
diff --git a/domains/rollwaifu.json b/domains/rollwaifu.json
index fdf264901..e3a354207 100644
--- a/domains/rollwaifu.json
+++ b/domains/rollwaifu.json
@@ -4,6 +4,8 @@
"email": "buivanluong0204@gmail.com"
},
"record": {
- "CNAME": "97ef85ed-35a2-46e1-85b7-69335aa9a655.id.repl.co"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/romeodev.json b/domains/romeodev.json
new file mode 100644
index 000000000..c7b3ebaff
--- /dev/null
+++ b/domains/romeodev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "meomeo1220",
+ "email": "meomeo1220@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rosset-nocpes.json b/domains/rosset-nocpes.json
new file mode 100644
index 000000000..8dcfdfb65
--- /dev/null
+++ b/domains/rosset-nocpes.json
@@ -0,0 +1,13 @@
+{
+ "description": "rosset-nocpes.is-a.dev",
+ "repo": "https://github.com/rosset-nocpes/rosset-nocpes.github.io",
+ "owner": {
+ "username": "rosset-nocpes",
+ "email": "rosset.nocpes@skiff.com",
+ "twitter": "CoderPY4",
+ "discord": "rosset.nocpes"
+ },
+ "record": {
+ "CNAME": "rosset-nocpes.github.io"
+ }
+}
diff --git a/domains/roudges.json b/domains/roudges.json
deleted file mode 100644
index f0154a298..000000000
--- a/domains/roudges.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Roudges Personal Website",
- "owner": {
- "username": "roudges2",
- "email": "roudges2@gmail.com"
- },
- "record": {
- "CNAME": "roudges.ga"
- }
-}
diff --git a/domains/royalahmed.json b/domains/royalahmed.json
index b006ea4f7..d4558f78d 100644
--- a/domains/royalahmed.json
+++ b/domains/royalahmed.json
@@ -4,7 +4,7 @@
"email": "bahiahmed347@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/tv.rpi.crazy-max.json b/domains/rpi.crazymax.json
similarity index 68%
rename from domains/tv.rpi.crazy-max.json
rename to domains/rpi.crazymax.json
index 36a8f1643..48c7b5849 100644
--- a/domains/tv.rpi.crazy-max.json
+++ b/domains/rpi.crazymax.json
@@ -4,6 +4,6 @@
"email": "Crazy-Max-2011@yandex.ru"
},
"record": {
- "URL": "https://crazy-max-blog.github.io/rpi-tvbox"
+ "URL": "http://crazymax.is-a.dev/rpi"
}
}
diff --git a/domains/rsgarxia.json b/domains/rsgarxia.json
deleted file mode 100644
index 7e7b35f99..000000000
--- a/domains/rsgarxia.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Ruben Garcia's personal website",
- "repo": "https://github.com/sigfriedCub1990/personal-site",
- "owner": {
- "username": "sigfriedcub1990",
- "email": "rssanjuan2704@gmail.com",
- "twitter": "sigfriedcub1990"
- },
- "record": {
- "A": ["142.93.27.109"]
- }
-}
diff --git a/domains/rtxeon.json b/domains/rtxeon.json
index 18ffbd525..e34a027dc 100644
--- a/domains/rtxeon.json
+++ b/domains/rtxeon.json
@@ -4,6 +4,15 @@
"email": "AdityaSuthar13@outlook.com"
},
"record": {
- "CNAME": "rtxeon-portfolio-isadev.onrender.com"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.111.153",
+ "185.199.110.153"
+ ],
+ "MX": [
+ "mail.is-a.dev"
+ ],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/rubiin.json b/domains/rubiin.json
deleted file mode 100644
index 4be5a80da..000000000
--- a/domains/rubiin.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Rubin's Website",
- "owner": {
- "username": "rubiin",
- "email": "roobin.bhandari@gmail.com"
- },
- "record": {
- "CNAME": "rubiin.pages.dev"
- }
-}
diff --git a/domains/rubyscans.json b/domains/rubyscans.json
new file mode 100644
index 000000000..1e65be7d4
--- /dev/null
+++ b/domains/rubyscans.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Solar-Geaux",
+ "email": "dgbroyt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rudransh.json b/domains/rudransh.json
deleted file mode 100644
index 380dd0e4c..000000000
--- a/domains/rudransh.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "owner": {
- "username": "rudransh-shrivastava",
- "email": "rudransh.shr@gmail.com",
- "discord": "rudransh.bf",
- "twitter": "rudranshstwt"
- },
- "description": "Domain for my personal portfolio written w/ Html, CSS and JavaScript",
- "repo": "https://github.com/rudransh-shrivastava/rudransh-shrivastava.github.io/",
- "record": {
- "A": ["140.238.251.183"]
- }
-}
diff --git a/domains/rushil-patel.json b/domains/rushil-patel.json
new file mode 100644
index 000000000..1b307ca1b
--- /dev/null
+++ b/domains/rushil-patel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rushilp1",
+ "email": "rushil.p1@ahduni.edu.in"
+ },
+ "record": {
+ "URL": "https://rushilp1.github.io/"
+ }
+}
diff --git a/domains/rushil.json b/domains/rushil.json
new file mode 100644
index 000000000..8a83a7367
--- /dev/null
+++ b/domains/rushil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rushilp1",
+ "email": "rushil.p1@ahduni.edu.in"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ryameeloveme.json b/domains/ryameeloveme.json
deleted file mode 100644
index 6393d6e75..000000000
--- a/domains/ryameeloveme.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "dusiadudusia",
- "email": "ds4667861@gmaiL.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/ryangamin.json b/domains/ryangamin.json
new file mode 100644
index 000000000..48f53a60f
--- /dev/null
+++ b/domains/ryangamin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Ryan-Gamin",
+ "email": "ryangaminmc@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ryder.json b/domains/ryder.json
new file mode 100644
index 000000000..1ce4df91b
--- /dev/null
+++ b/domains/ryder.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "RyderCragie",
+ "email": "69316364+RyderCragie@users.noreply.github.com",
+ "discord": "713201205488254976"
+ },
+
+ "record": {
+ "CNAME": "ghs.googlehosted.com"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/rylie.json b/domains/rylie.json
new file mode 100644
index 000000000..92127e69f
--- /dev/null
+++ b/domains/rylie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "j1nxie",
+ "email": "rylieeeeexd@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ryo.json b/domains/ryo.json
index 345c40265..9c3d6d741 100644
--- a/domains/ryo.json
+++ b/domains/ryo.json
@@ -4,7 +4,7 @@
"email": "yo1sefooop@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ryun.json b/domains/ryun.json
deleted file mode 100644
index 1bfae5a46..000000000
--- a/domains/ryun.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ryun",
- "email": "humtech@gmail.com"
- },
- "record": {
- "CNAME": "humboldtweb.com"
- }
-}
diff --git a/domains/ryuuzu.json b/domains/ryuuzu.json
deleted file mode 100644
index 2ff0fb85b..000000000
--- a/domains/ryuuzu.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ryuuzu",
- "email": "me@ryuuzu.xyz"
- },
-
- "record": {
- "CNAME": "ryuuzu.xyz"
- }
-}
diff --git a/domains/s4il.json b/domains/s4il.json
deleted file mode 100644
index 0c72d59e3..000000000
--- a/domains/s4il.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "S4IL's Website",
- "owner": {
- "username": "Ositosail",
- "email": "s4il.teacher.scratch@gmail.com"
- },
- "record": {
- "CNAME": "a765d103-b175-43ba-b8ef-8c541cb7d0b3.id.repl.co"
- }
-}
diff --git a/domains/s7nx.json b/domains/s7nx.json
new file mode 100644
index 000000000..e34773a52
--- /dev/null
+++ b/domains/s7nx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "S7NX",
+ "email": "synx.lynx69@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sadiz.json b/domains/sadiz.json
index 9943a93fa..a86b305fc 100644
--- a/domains/sadiz.json
+++ b/domains/sadiz.json
@@ -4,7 +4,7 @@
"email": "hellosadish@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sadmananik.json b/domains/sadmananik.json
deleted file mode 100644
index ef57fca92..000000000
--- a/domains/sadmananik.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Sadman-11",
- "email": "sadmananik8986@gmail.com"
- },
- "record": {
- "CNAME": "sadman.misfitsdev.xyz"
- }
-}
diff --git a/domains/denismnoger.json b/domains/sagun.json
similarity index 59%
rename from domains/denismnoger.json
rename to domains/sagun.json
index 2e9b98169..2dda674d7 100644
--- a/domains/denismnoger.json
+++ b/domains/sagun.json
@@ -1,10 +1,11 @@
{
"owner": {
- "username": "arabtalent",
- "email": "lolhdselect@gmail.com"
+ "username": "xagun",
+ "email": "xagun.shrestha@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
+ "AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sai-mehar.json b/domains/sai-mehar.json
index c5af18fac..7bf3ba607 100644
--- a/domains/sai-mehar.json
+++ b/domains/sai-mehar.json
@@ -4,7 +4,7 @@
"email": "saimehar2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/saifrahman.json b/domains/saifrahman.json
deleted file mode 100644
index a2d73093a..000000000
--- a/domains/saifrahman.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Personal Blog",
- "repo": "https://github.com/saifrahmn/portfolio",
- "owner": {
- "username": "saifrahmn",
- "email": "saifrahmn78@gmail.com",
- "twitter": "saif_rahmn"
- },
- "record": {
- "CNAME": "saifrahmn.github.io"
- }
-}
diff --git a/domains/saiganeshganoju.json b/domains/saiganeshganoju.json
index 4d73b2aa7..2b2a31108 100644
--- a/domains/saiganeshganoju.json
+++ b/domains/saiganeshganoju.json
@@ -4,7 +4,7 @@
"email": "saiganeshganoju@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/saikat.json b/domains/saikat.json
deleted file mode 100644
index 77709d152..000000000
--- a/domains/saikat.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "mirzasaikatahmmed",
- "email": "contact@saikat.com.bd"
- },
-
- "record": {
- "CNAME": "saikat.com.bd"
- }
-}
diff --git a/domains/sajan.json b/domains/sajan.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/sajan.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/salsa.json b/domains/salsa.json
new file mode 100644
index 000000000..fe85ebf2e
--- /dev/null
+++ b/domains/salsa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "salsabilaananditaputri",
+ "email": "salsabilaananditaputri.5@gmail.com"
+ },
+ "record": {
+ "CNAME": "salsabilaananditaputri.github.io"
+ }
+}
diff --git a/domains/sama.json b/domains/sama.json
new file mode 100644
index 000000000..81f66b424
--- /dev/null
+++ b/domains/sama.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sama-004",
+ "email": "samanyuroy@gmail.com"
+ },
+ "record": {
+ "URL": "https://Sama-004.github.io"
+ }
+}
diff --git a/domains/samara.json b/domains/samara.json
new file mode 100644
index 000000000..cad54ab6a
--- /dev/null
+++ b/domains/samara.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ssalggnikool",
+ "email": "sam4r16@gmail.com"
+ },
+ "record": {
+ "CNAME": "ssalggnikool.github.io"
+ }
+}
diff --git a/domains/sameer.json b/domains/sameer.json
index 000fd7678..264047dee 100644
--- a/domains/sameer.json
+++ b/domains/sameer.json
@@ -4,7 +4,7 @@
"email": "jasitis@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sameerk.json b/domains/sameerk.json
new file mode 100644
index 000000000..362af19db
--- /dev/null
+++ b/domains/sameerk.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "sameer0022",
+ "email": "sameermalikst6@gmail.com",
+ "discord": "937701712293163118"
+ },
+
+ "record": {
+ "A": ["185.199.108.153","185.199.109.153","185.199.110.153","185.199.111.153"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/sami.json b/domains/sami.json
index f7bcef69b..e0d6d2c92 100644
--- a/domains/sami.json
+++ b/domains/sami.json
@@ -4,7 +4,7 @@
"email": "scamstur@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/samlim.json b/domains/samlim.json
new file mode 100644
index 000000000..67f6015a8
--- /dev/null
+++ b/domains/samlim.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "samuelylim",
+ "email": "samuelylim04@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/samsul.json b/domains/samsul.json
new file mode 100644
index 000000000..da03eab85
--- /dev/null
+++ b/domains/samsul.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HayBael",
+ "email": "rakhakhairydarka801@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sandi.json b/domains/sandi.json
new file mode 100644
index 000000000..4506e5a03
--- /dev/null
+++ b/domains/sandi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sandiskyy",
+ "email": "sandimixyz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sanidhya.json b/domains/sanidhya.json
deleted file mode 100644
index 212ea4550..000000000
--- a/domains/sanidhya.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "This is my personal Website of portfolio",
- "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io",
- "owner": {
- "username": "CoderSoNet",
- "email": "sonetspprt@gmail.com",
- "twitter": "ShanuUniyal_On",
- "discord": "781127625263415326"
- },
- "record": {
- "CNAME": "3303bc99-e9eb-489a-96c3-138398c9dae5.id.repl.co"
- }
-}
diff --git a/domains/sanityless.json b/domains/sanityless.json
new file mode 100644
index 000000000..bfa0623b9
--- /dev/null
+++ b/domains/sanityless.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EurekaMathSkillIssue",
+ "email": "ataharmolla@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/santito.json b/domains/santito.json
index be58bf2b6..5ca69d176 100644
--- a/domains/santito.json
+++ b/domains/santito.json
@@ -1,11 +1,11 @@
{
"description": "Santito's Personal Site",
- "repo": "https://github.com/DevSantito/devsantito.github.io",
+ "repo": "https://github.com/San-tito/san-tito.github.io",
"owner": {
- "username": "DevSantito",
+ "username": "San-tito",
"email": "devsantito@gmail.com"
},
"record": {
- "CNAME": "devsantito.github.io"
+ "CNAME": "san-tito.github.io"
}
}
diff --git a/domains/saptarshi.json b/domains/saptarshi.json
new file mode 100644
index 000000000..8bdad1157
--- /dev/null
+++ b/domains/saptarshi.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "saptarshihalder",
+ "email": "saptarshihalder69@gmail.com",
+ "discord": "747718545307336797"
+ },
+
+ "record": {
+ "CNAME": "saptarshihalder.github.io"
+ }
+ }
+
diff --git a/domains/saqlainbrawl.json b/domains/saqlainbrawl.json
index ec50cc74e..d7e5ae7d5 100644
--- a/domains/saqlainbrawl.json
+++ b/domains/saqlainbrawl.json
@@ -4,7 +4,7 @@
"email": "saqlainbrawl@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/saschamonteiro.json b/domains/saschamonteiro.json
deleted file mode 100644
index 35ac3e582..000000000
--- a/domains/saschamonteiro.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Sascha Monteiro's personal dev website",
- "repo": "https://github.com/saschamonteiro",
- "owner": {
- "username": "saschamonteiro",
- "email": "info@purejs.com"
- },
- "record": {
- "CNAME": "www.purejs.com"
- }
-}
diff --git a/domains/sasha.json b/domains/sasha.json
deleted file mode 100644
index 06c644703..000000000
--- a/domains/sasha.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio site",
- "repo": "https://github.com/Nero-X/PalletPal-web",
- "owner": {
- "username": "SashaJCV",
- "email": "sashajcv@gmail.com"
- },
- "record": {
- "A": ["116.203.239.117"]
- }
-}
diff --git a/domains/satr14.json b/domains/satr14.json
new file mode 100644
index 000000000..0db17892e
--- /dev/null
+++ b/domains/satr14.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "SX-9",
+ "email": "satriakrach@gmail.com",
+ "discord": "882595027132493864"
+ },
+
+ "record": {
+ "CNAME": "sx-9.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/saturn-net.json b/domains/saturn-net.json
index 61e34301a..55518e2b0 100644
--- a/domains/saturn-net.json
+++ b/domains/saturn-net.json
@@ -4,7 +4,7 @@
"email": "TheCatatomic@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/satya.json b/domains/satya.json
deleted file mode 100644
index 8998daf00..000000000
--- a/domains/satya.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "satyaidk",
- "email": "nikadisatyanarayana@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/saumon.json b/domains/saumon.json
index 2040d27f0..6aa55c00b 100644
--- a/domains/saumon.json
+++ b/domains/saumon.json
@@ -4,7 +4,7 @@
"email": "viala38000@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/saunear.json b/domains/saunear.json
new file mode 100644
index 000000000..6ae344576
--- /dev/null
+++ b/domains/saunear.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "toastmakingmachine",
+ "email": "bcefsart@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saurabh-kirve.json b/domains/saurabh-kirve.json
index afd47a19a..2040678f9 100644
--- a/domains/saurabh-kirve.json
+++ b/domains/saurabh-kirve.json
@@ -4,7 +4,7 @@
"email": "saurabhkirve@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/saurabhnemade.json b/domains/saurabhnemade.json
new file mode 100644
index 000000000..d242be87e
--- /dev/null
+++ b/domains/saurabhnemade.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "saurabhnemade",
+ "email": "harsh0707051mail@gmail.com"
+ },
+ "record": {
+ "CNAME": "d1uwx91euvkosf.cloudfront.net"
+ }
+}
diff --git a/domains/savar.json b/domains/savar.json
new file mode 100644
index 000000000..b95924094
--- /dev/null
+++ b/domains/savar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "savar95x",
+ "email": "skaar513@gmail.com"
+ },
+ "record": {
+ "CNAME": "savar95x.github.io"
+ }
+}
diff --git a/domains/saxon-totally.json b/domains/saxon-totally.json
new file mode 100644
index 000000000..679044a79
--- /dev/null
+++ b/domains/saxon-totally.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "tensura-is-good",
+ "email": "sands.is.undertable@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sayantan.json b/domains/sayantan.json
index 138802c0b..2515f6338 100644
--- a/domains/sayantan.json
+++ b/domains/sayantan.json
@@ -4,7 +4,7 @@
"email": "legendsayantanpaul@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sayolight.json b/domains/sayolight.json
new file mode 100644
index 000000000..3a3bbb4f8
--- /dev/null
+++ b/domains/sayolight.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sayolight",
+ "email": "kagerouls016@gmail.com"
+ },
+ "record": {
+ "CNAME": "sayolight.github.io"
+ }
+}
diff --git a/domains/scarvite.json b/domains/scarvite.json
deleted file mode 100644
index 7c629f5fc..000000000
--- a/domains/scarvite.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My Portfolio",
- "repo": "https://github.com/ScarVite/scarvite.de",
- "owner": {
- "username": "ScarVite",
- "email": "admin@ScarVite.de",
- "twitter": "ScarVite"
- },
- "record": {
- "CNAME": "scarvite.de"
- }
-}
diff --git a/domains/scfp.json b/domains/scfp.json
index e87d18a2f..f64a2fc5c 100644
--- a/domains/scfp.json
+++ b/domains/scfp.json
@@ -3,7 +3,7 @@
"owner": {
"username": "cfpwastaken",
"email": "",
- "discord": "cfp"
+ "discord": "cfp (318394797822050315)"
},
"record": {
"CNAME": "cfp.gotdns.ch"
diff --git a/domains/schematic.json b/domains/schematic.json
deleted file mode 100644
index 9fd504c8a..000000000
--- a/domains/schematic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "alenpaul2001",
- "email": "alenpaul2001@pm.me"
- },
- "record": {
- "A": ["152.67.160.188"]
- }
-}
diff --git a/domains/school.json b/domains/school.json
index 5fe751c74..77ad463dd 100644
--- a/domains/school.json
+++ b/domains/school.json
@@ -4,7 +4,7 @@
"email": "jacob.blits@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/school.semant.json b/domains/school.semant.json
deleted file mode 100644
index b8dd128a1..000000000
--- a/domains/school.semant.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A little show-off project for my school",
- "owner": {
- "username": "bad-boy-codes",
- "email": "contact@mail.badboy.is-a.dev",
- "discord": "445073800850046977",
- "twitter": "BadBoyGoesBrr"
- },
- "record": {
- "CNAME": "4941ff85-bc0d-4af7-b112-bc556c694343.id.repl.co"
- }
-}
diff --git a/domains/schummler.json b/domains/schummler.json
index 9878220b1..a34b57095 100644
--- a/domains/schummler.json
+++ b/domains/schummler.json
@@ -4,7 +4,7 @@
"email": "markwilkens102@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/scott.json b/domains/scott.json
index 426cc7e7f..30f9f973c 100644
--- a/domains/scott.json
+++ b/domains/scott.json
@@ -4,6 +4,6 @@
"email": "cakepbm@gmail.com"
},
"record": {
- "A": ["128.22.136.213"]
+ "A": ["150.230.97.210"]
}
}
diff --git a/domains/scr.json b/domains/scr.json
deleted file mode 100644
index a68c0827b..000000000
--- a/domains/scr.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Scriptyyy's site",
- "owner": {
- "username": "Scriptyyy",
- "email": "mr.stikman209@gmail.com",
- "discord": "Scriptyyy#2152"
- },
- "record": {
- "A": ["75.2.69.226"]
- }
-}
diff --git a/domains/script-server.json b/domains/script-server.json
deleted file mode 100644
index aec6ecd4e..000000000
--- a/domains/script-server.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "gengyj16",
- "email": "819514379m@gmail.com"
- },
- "record": {
- "CNAME": "a7cce212-0dd4-4961-881e-3bebf2d1ce31.id.repl.co"
- }
-}
diff --git a/domains/scronite.json b/domains/scronite.json
deleted file mode 100644
index 576375a16..000000000
--- a/domains/scronite.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Subdomain of is-a.dev for my profile card.",
- "repo": "https://github.com/Scronite/profile",
- "owner": {
- "username": "Scronite",
- "email": "scronite@gmail.com"
- },
- "record": {
- "A": ["164.132.74.251"]
- }
-}
diff --git a/domains/scythemedia.json b/domains/scythemedia.json
new file mode 100644
index 000000000..62dd9bdc8
--- /dev/null
+++ b/domains/scythemedia.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ScytheMed1a",
+ "email": "tbswartz10@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sdp.json b/domains/sdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/sdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/seanconroy.json b/domains/seanconroy.json
new file mode 100644
index 000000000..2ee2cab41
--- /dev/null
+++ b/domains/seanconroy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "seanconroy2021",
+ "email": "github@seanconroy.link"
+ },
+ "record": {
+ "URL": "https://seanconroy.link"
+ }
+}
diff --git a/domains/search.thomasc.json b/domains/search.thomasc.json
deleted file mode 100644
index fc7b46a39..000000000
--- a/domains/search.thomasc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Hopefully Thomas Croft's is-a.dev Whoogle instance",
- "repo": "https://replit.com/@thomascf/whoogle",
- "owner": {
- "username": "thomascf",
- "email": "thomas.croft@pm.me"
- },
- "record": {
- "CNAME": "7c73f282-d33b-4a1d-b36e-bf6da5155d55.id.repl.co"
- }
-}
diff --git a/domains/sedat.json b/domains/sedat.json
index 07c775c62..42d002698 100644
--- a/domains/sedat.json
+++ b/domains/sedat.json
@@ -4,7 +4,7 @@
"email": "sedat342042@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sedat3344.json b/domains/sedat3344.json
index 07c775c62..42d002698 100644
--- a/domains/sedat3344.json
+++ b/domains/sedat3344.json
@@ -4,7 +4,7 @@
"email": "sedat342042@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/seizedforge.json b/domains/seizedforge.json
index faaff9bd3..4a4be8287 100644
--- a/domains/seizedforge.json
+++ b/domains/seizedforge.json
@@ -4,7 +4,7 @@
"email": "gamebringerdev@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/selenite.json b/domains/selenite.json
index 1943cc900..c7debf284 100644
--- a/domains/selenite.json
+++ b/domains/selenite.json
@@ -4,6 +4,6 @@
"email": "skysth3limit@pm.me"
},
"record": {
- "CNAME": "selenite.pages.dev"
+ "A": ["5.161.118.69"]
}
}
diff --git a/domains/sematary.json b/domains/sematary.json
deleted file mode 100644
index dc3f098bc..000000000
--- a/domains/sematary.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "h3artcrushz",
- "email": "egokillerthusky@gmail.com"
- },
- "record": {
- "CNAME": "b7297ef8-036a-4483-a5b3-bbfa441ba7fc.id.repl.co"
- }
-}
diff --git a/domains/senix.json b/domains/senix.json
new file mode 100644
index 000000000..8e7058300
--- /dev/null
+++ b/domains/senix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cjolivier15",
+ "email": "oliviercj195@yahoo.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sephrost.json b/domains/sephrost.json
index 3139d0568..67fa8778a 100644
--- a/domains/sephrost.json
+++ b/domains/sephrost.json
@@ -4,7 +4,7 @@
"email": "lorenzato.fabi13@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/seraphic.json b/domains/seraphic.json
new file mode 100644
index 000000000..00bf90f52
--- /dev/null
+++ b/domains/seraphic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SeraphicDev",
+ "email": "AidhaniDev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sercan.json b/domains/sercan.json
new file mode 100644
index 000000000..91c6b6456
--- /dev/null
+++ b/domains/sercan.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "sxrcan",
+ "email": "sercwnxd@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/seriuos.json b/domains/seriuos.json
index b0cec730c..6054e6339 100644
--- a/domains/seriuos.json
+++ b/domains/seriuos.json
@@ -4,7 +4,7 @@
"email": "trexi82.82@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/snxx.json b/domains/serjan-nasredin.json
similarity index 63%
rename from domains/snxx.json
rename to domains/serjan-nasredin.json
index 30f100c61..3a869c097 100644
--- a/domains/snxx.json
+++ b/domains/serjan-nasredin.json
@@ -1,10 +1,10 @@
{
"description": "Personal page of Serzhan Nasredin",
"owner": {
- "username": "snxx-lppxx",
+ "username": "serjan-nasredin",
"email": "snxx.lppxx@gmail.com"
},
"record": {
- "CNAME": "snxx-lppxx.github.io"
+ "CNAME": "serjan-nasredin.github.io"
}
}
diff --git a/domains/server.stefdp.json b/domains/server.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/server.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/server.sx9.json b/domains/server.sx9.json
deleted file mode 100644
index b7938125c..000000000
--- a/domains/server.sx9.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "SX-9",
- "email": "satriakrach@gmail.com"
- },
- "record": {
- "A": ["159.89.214.31"],
- "TXT": "authkeyfp=SHA256:71tAcZSCVkBU0hFT/HYO4jt/ZWwSa7/br0nvvf3ustY"
- }
-}
diff --git a/domains/sex.json b/domains/sex.json
new file mode 100644
index 000000000..8c52380bf
--- /dev/null
+++ b/domains/sex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "khagdev",
+ "email": "nguyendaikhang2000@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sgm-uptime.json b/domains/sgm-uptime.json
deleted file mode 100644
index b9ff04d4a..000000000
--- a/domains/sgm-uptime.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ShadowGaming100",
- "email": "workspace.shadowgaming@gmail.com"
- },
- "record": {
- "CNAME": "f5cbbab2-d3bb-4468-8513-976647809749.id.repl.co"
- }
-}
diff --git a/domains/sgogov.json b/domains/sgogov.json
index 376ab1606..dff4c995d 100644
--- a/domains/sgogov.json
+++ b/domains/sgogov.json
@@ -4,7 +4,7 @@
"email": "stefangogov@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sgyt.json b/domains/sgyt.json
index 0cd64dc0c..25e2bdf4b 100644
--- a/domains/sgyt.json
+++ b/domains/sgyt.json
@@ -4,7 +4,7 @@
"email": "cshaily38@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sh-crm.json b/domains/sh-crm.json
new file mode 100644
index 000000000..9dc9857e6
--- /dev/null
+++ b/domains/sh-crm.json
@@ -0,0 +1,11 @@
+{
+ "owner":{
+ "username":"ruben-as",
+ "email":"ruben.aja.85@gmail.com"
+ },
+ "record":{
+ "A":[
+ "212.227.32.105"
+ ]
+ }
+}
diff --git a/domains/sh.cdn.alpha.json b/domains/sh.cdn.alpha.json
deleted file mode 100644
index 6a2ab48e2..000000000
--- a/domains/sh.cdn.alpha.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "YouFoundAlpha",
- "email": "sweepalf@gmail.com"
- },
- "record": {
- "CNAME": "cdn-45f.pages.dev"
- }
-}
diff --git a/domains/sh1nyhunt3r27.json b/domains/sh1nyhunt3r27.json
index a13decd1f..7295c2323 100644
--- a/domains/sh1nyhunt3r27.json
+++ b/domains/sh1nyhunt3r27.json
@@ -4,7 +4,7 @@
"email": "Jom834827@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shabnam.json b/domains/shabnam.json
index 9c5b61bd1..edfc2aad1 100644
--- a/domains/shabnam.json
+++ b/domains/shabnam.json
@@ -4,7 +4,7 @@
"email": "cycloneaddon@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shad.json b/domains/shad.json
index 0ae7bfeee..f60d4041c 100644
--- a/domains/shad.json
+++ b/domains/shad.json
@@ -4,7 +4,7 @@
"email": "saksham.access@yahoo.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shadow.json b/domains/shadow.json
deleted file mode 100644
index 75ddb74cd..000000000
--- a/domains/shadow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DoxrGitHub",
- "email": "redforcearmy@outlook.com"
- },
- "description": "Official shadowv2 team page",
- "record": {
- "A": ["34.132.134.162"]
- }
-}
diff --git a/domains/shahriyar.json b/domains/shahriyar.json
deleted file mode 100644
index 5344ad8ca..000000000
--- a/domains/shahriyar.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "shahriyardx",
- "email": "mdshahriyaralam552@gmail.com"
- },
- "record": {
- "CNAME": "shahriyar.dev"
- }
-}
diff --git a/domains/shamshitty.json b/domains/shamshitty.json
index 905f9d8bc..d785d340c 100644
--- a/domains/shamshitty.json
+++ b/domains/shamshitty.json
@@ -7,7 +7,7 @@
},
"description": "shamshitty is indeed a dev (kinda)",
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shaquib.json b/domains/shaquib.json
index c3595cf3f..2ad8e0d9d 100644
--- a/domains/shaquib.json
+++ b/domains/shaquib.json
@@ -4,7 +4,7 @@
"email": "mdshaaaquib@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sharan.json b/domains/sharan.json
index a987bb6e0..4a31675c2 100644
--- a/domains/sharan.json
+++ b/domains/sharan.json
@@ -4,7 +4,7 @@
"email": "yenugulasharan8019@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/rick-astley.json b/domains/sharex.phoenix.json
similarity index 98%
rename from domains/rick-astley.json
rename to domains/sharex.phoenix.json
index 83400e519..189cb852b 100644
--- a/domains/rick-astley.json
+++ b/domains/sharex.phoenix.json
@@ -6,4 +6,4 @@
"record": {
"A": ["130.162.166.134"]
}
-}
\ No newline at end of file
+}
diff --git a/domains/shashank.json b/domains/shashank.json
index b185be65b..8e6bc1f1e 100644
--- a/domains/shashank.json
+++ b/domains/shashank.json
@@ -1,9 +1,12 @@
{
+ "description": "Shashank's Github Page",
+ "repo": "https://github.com/ss-29/ss-29.github.io",
"owner": {
- "username": "shashankktiwariii",
- "email": "development.shashank@gmail.com"
+ "username": "ss-29",
+ "email": "shekhar2906@outlook.com",
+ "twitter": "shashankxdev"
},
"record": {
- "A": ["144.24.102.80"]
+ "CNAME": "ss-29.github.io"
}
-}
+}
diff --git a/domains/shashankk.json b/domains/shashankk.json
deleted file mode 100644
index b185be65b..000000000
--- a/domains/shashankk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "shashankktiwariii",
- "email": "development.shashank@gmail.com"
- },
- "record": {
- "A": ["144.24.102.80"]
- }
-}
diff --git a/domains/shaunfurtado.json b/domains/shaunfurtado.json
index e8a223781..052a8089d 100644
--- a/domains/shaunfurtado.json
+++ b/domains/shaunfurtado.json
@@ -1,11 +1,11 @@
{
+ "description": "My Personal Portfolio Website",
+ "repo": "https://github.com/Shaunfurtado/Shaunfurtado.github.io",
"owner": {
"username": "Shaunfurtado",
"email": "shaunf1801@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "CNAME": "shaunfurtado.github.io"
}
}
\ No newline at end of file
diff --git a/domains/shawty.json b/domains/shawty.json
index 8b0cdace2..d6c07c42f 100644
--- a/domains/shawty.json
+++ b/domains/shawty.json
@@ -4,7 +4,7 @@
"email": "stanasarts@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shell.json b/domains/shell.json
index d9c24741a..f2b3a9ba4 100644
--- a/domains/shell.json
+++ b/domains/shell.json
@@ -4,7 +4,7 @@
"email": "shll@tuta.io"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shep.json b/domains/shep.json
deleted file mode 100644
index 16bb0fc75..000000000
--- a/domains/shep.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "TamShep's personal developer website",
- "owner": {
- "username": "TamShep",
- "email": "rocco@caseymediallc.com",
- "twitter": "Tammy_GShepherd",
- "discord": "sol_999"
- },
- "record": {
- "A": ["192.254.73.156"]
- }
-}
diff --git a/domains/shept.json b/domains/shept.json
index 179abe5fb..2025a6ccb 100644
--- a/domains/shept.json
+++ b/domains/shept.json
@@ -9,11 +9,6 @@
"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/shiba.json b/domains/shiba.json
index cc9d2f0cc..e16e859ba 100644
--- a/domains/shiba.json
+++ b/domains/shiba.json
@@ -4,7 +4,7 @@
"email": "hurvzee+partizao@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shilab.json b/domains/shilab.json
new file mode 100644
index 000000000..73ef23e8f
--- /dev/null
+++ b/domains/shilab.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Shilab66",
+ "email": "aan176972@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shinchan.json b/domains/shinchan.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/shinchan.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/shing.json b/domains/shing.json
index d2a324827..9f55651ab 100644
--- a/domains/shing.json
+++ b/domains/shing.json
@@ -4,7 +4,7 @@
"email": "Shing.XD.0602@gmail.com"
},
"record": {
- "A": ["129.80.190.178"],
- "AAAA": ["2603:c020:400d:3e89:2d5a:b8a3:1999:49f"]
+ "A": ["150.136.219.245"],
+ "AAAA": ["2603:c020:400d:3e89:1d29:bb65:78be:e8fa"]
}
}
diff --git a/domains/shivanshu814.json b/domains/shivanshu814.json
deleted file mode 100644
index fc05fde78..000000000
--- a/domains/shivanshu814.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Projects by Shivanshu Pathak",
- "repo": "https://github.com/shivanshu814/kliquestart",
- "owner": {
- "username": "shivanshu814",
- "email": "shivanshu814pathak@gmail.com",
- "linkedin": "https://www.linkedin.com/in/shivanshu-pathak-6611b5228"
- },
- "record": {
- "CNAME": "Kliquestart.com"
- }
-}
diff --git a/domains/shivathmika.json b/domains/shivathmika.json
index 5be4f12a2..0e5333188 100644
--- a/domains/shivathmika.json
+++ b/domains/shivathmika.json
@@ -4,7 +4,7 @@
"email": "yelurishivathmika@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shizotechie.json b/domains/shizotechie.json
new file mode 100644
index 000000000..68966decc
--- /dev/null
+++ b/domains/shizotechie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "shizothetechie",
+ "email": "yugeshsingh27@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shlok.json b/domains/shlok.json
deleted file mode 100644
index 249a95c38..000000000
--- a/domains/shlok.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Portfolio Website",
- "owner": {
- "username": "PlaceInSpace",
- "email": "shlokmadhekar88@gmail.com"
- },
- "record": {
- "CNAME": "d5c36b7d-4d85-449f-bd4d-0bbbc88fb781.id.repl.co"
- }
-}
diff --git a/domains/shmeeseeks.json b/domains/shmeeseeks.json
new file mode 100644
index 000000000..5fe892f76
--- /dev/null
+++ b/domains/shmeeseeks.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "fromNoWhere",
+ "email": "lyaacoubi.othmane8@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shobhit9945.json b/domains/shobhit9945.json
new file mode 100644
index 000000000..575c7fa89
--- /dev/null
+++ b/domains/shobhit9945.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Shobhit9945",
+ "email": "shobhitbaijal5@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shobhitb.json b/domains/shobhitb.json
new file mode 100644
index 000000000..c0ac98fb9
--- /dev/null
+++ b/domains/shobhitb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Shobhit9945",
+ "email": "shobhitbaijal5@gmail.com"
+ },
+ "record": {
+ "CNAME": "shobhit9945.github.io"
+ }
+}
diff --git a/domains/shock.json b/domains/shock.json
new file mode 100644
index 000000000..4f99137c2
--- /dev/null
+++ b/domains/shock.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "shockbs",
+ "email": "apipherng@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shockbs.json b/domains/shockbs.json
new file mode 100644
index 000000000..90d1fbd6e
--- /dev/null
+++ b/domains/shockbs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shockbs",
+ "email": "apipherng@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/short.json b/domains/short.json
deleted file mode 100644
index 746f3d7ae..000000000
--- a/domains/short.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "an api for my bot",
- "repo": "https://github.com/w3cy/w3cy",
- "owner": {
- "username": "w3cy",
- "email": "keyv.cec@outlook.com"
- },
- "record": {
- "CNAME": "8b9c08e0-a9c2-4fc1-8e17-aca4fb93ae71.id.repl.co"
- }
-}
diff --git a/domains/shrek.json b/domains/shrek.json
index f45ff53a9..d844f253d 100644
--- a/domains/shrek.json
+++ b/domains/shrek.json
@@ -4,7 +4,7 @@
"email": "callumcardy7@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shreya.json b/domains/shreya.json
new file mode 100644
index 000000000..f60d4041c
--- /dev/null
+++ b/domains/shreya.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Maverick00001",
+ "email": "saksham.access@yahoo.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shubhamkumar.json b/domains/shubhamkumar.json
index d17b7727e..6a8edd934 100644
--- a/domains/shubhamkumar.json
+++ b/domains/shubhamkumar.json
@@ -4,7 +4,7 @@
"email": "shubham04122004@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json
index 0875cd397..6a6c632e1 100644
--- a/domains/shubhamverma.json
+++ b/domains/shubhamverma.json
@@ -4,7 +4,7 @@
"email": "shubhamverma6351@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/shuriken.json b/domains/shuriken.json
index e761f35de..b3f9c2a4a 100644
--- a/domains/shuriken.json
+++ b/domains/shuriken.json
@@ -4,7 +4,7 @@
"email": "005sunnysingh@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/sia.json b/domains/sia.json
index 377c9e4a5..8e962f1b2 100644
--- a/domains/sia.json
+++ b/domains/sia.json
@@ -4,7 +4,7 @@
"email": "work@sujandeb.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/siddhant.json b/domains/siddhant.json
index 8f704162e..e4890fd6c 100644
--- a/domains/siddhant.json
+++ b/domains/siddhant.json
@@ -6,6 +6,6 @@
"email": "pandeysiddhant21@gmail.com"
},
"record": {
- "URL": "https://siddhantt.netlify.app"
+ "URL": "https://siddhantt.vercel.app/"
}
}
diff --git a/domains/siddharthtewari.json b/domains/siddharthtewari.json
index fe5dbf434..59c386d97 100644
--- a/domains/siddharthtewari.json
+++ b/domains/siddharthtewari.json
@@ -4,7 +4,7 @@
"email": "siddharthtewari14@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sigmassimo.json b/domains/sigmassimo.json
index 6b64a90db..dbb4f9e08 100644
--- a/domains/sigmassimo.json
+++ b/domains/sigmassimo.json
@@ -4,7 +4,7 @@
"email": "maximilian-schreiber271@t-online.de"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/silksp.json b/domains/silksp.json
new file mode 100644
index 000000000..8acc3b23f
--- /dev/null
+++ b/domains/silksp.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SilkSP",
+ "email": "seba.perezo@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/simonknowsstuff.json b/domains/simonknowsstuff.json
index a493e154a..844c8fc34 100644
--- a/domains/simonknowsstuff.json
+++ b/domains/simonknowsstuff.json
@@ -1,12 +1,10 @@
{
- "description": "simonknowsstuff's website!",
- "repo": "https://github.com/github-username/github-username.github.io",
"owner": {
"username": "simonknowsstuff",
"email": "simonknowsstuff@gmail.com",
"twitter": "simonknowsstuff"
},
"record": {
- "CNAME": "simonknowsstuff.github.io"
+ "CNAME": "blog-7vq.pages.dev"
}
-}
+}
diff --git a/domains/simple.json b/domains/simple.json
deleted file mode 100644
index 83310c7ba..000000000
--- a/domains/simple.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "reecebenson",
- "email": "me@reecebenson.me",
- "discord": "166705872473423872"
- },
-
- "record": {
- "CNAME": "simple.gdn"
- }
-}
diff --git a/domains/simplebank.json b/domains/simplebank.json
deleted file mode 100644
index 023e8fe85..000000000
--- a/domains/simplebank.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jotabf",
- "email": "jotabe.150@gmail.com"
- },
- "record": {
- "CNAME": "a53880df71ece4c268070f082ce00d37-1008813240.sa-east-1.elb.amazonaws.com"
- }
-}
diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json
new file mode 100644
index 000000000..b1f7b7c1e
--- /dev/null
+++ b/domains/sincererflame71.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DarkNightcore8",
+ "email": "DarkNightcore8@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sirens.json b/domains/sirens.json
index 706aa2b1f..ee8bb4814 100644
--- a/domains/sirens.json
+++ b/domains/sirens.json
@@ -4,7 +4,7 @@
"email": "collinsdawns184@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sjcdn.json b/domains/sjcdn.json
deleted file mode 100644
index 76af86d08..000000000
--- a/domains/sjcdn.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "CoolCoderSJ",
- "email": "CoolCoderSJ@gmail.com"
- },
- "description": "My CDN",
- "record": {
- "CNAME": "09d836a5-eaca-4299-bfec-44ca0dfc6d0d.repl.co"
- }
-}
diff --git a/domains/sjlptpsnh.json b/domains/sjlptpsnh.json
index 5436915e6..5edc708fb 100644
--- a/domains/sjlptpsnh.json
+++ b/domains/sjlptpsnh.json
@@ -4,7 +4,7 @@
"email": "sujalpratapsingh70@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/skar.json b/domains/skar.json
new file mode 100644
index 000000000..0d225d17b
--- /dev/null
+++ b/domains/skar.json
@@ -0,0 +1,17 @@
+{
+ "description": "for protfolio",
+ "repo": "https://github.com/sameer0022/protfolio",
+ "owner": {
+ "username": "sameer0022",
+ "email": "samirkarki504@gmail.com",
+ "discord": "_sameermalik"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/skifli.json b/domains/skifli.json
deleted file mode 100644
index 287419601..000000000
--- a/domains/skifli.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Portfolio Website",
- "repo": "https://github.com/skifli/skifli.github.io",
- "owner": {
- "username": "skifli",
- "email": "",
- "discord": "skifli"
- },
- "record": {
- "CNAME": "skifli.pages.dev"
- }
-}
diff --git a/domains/skillz.json b/domains/skillz.json
index 5fe751c74..77ad463dd 100644
--- a/domains/skillz.json
+++ b/domains/skillz.json
@@ -4,7 +4,7 @@
"email": "jacob.blits@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/skydiver-web.json b/domains/skydiver-web.json
index 85039945e..14dec9b68 100644
--- a/domains/skydiver-web.json
+++ b/domains/skydiver-web.json
@@ -4,7 +4,7 @@
"email": "reeseb1660@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/skyopg.json b/domains/skyopg.json
index 345c40265..9c3d6d741 100644
--- a/domains/skyopg.json
+++ b/domains/skyopg.json
@@ -4,7 +4,7 @@
"email": "yo1sefooop@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/slashed.json b/domains/slashed.json
index 070ccdc7f..e4ed58877 100644
--- a/domains/slashed.json
+++ b/domains/slashed.json
@@ -4,7 +4,7 @@
"email": "alexfeed1990real@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/slyc.the.catboy.json b/domains/slyc.the.catboy.json
new file mode 100644
index 000000000..3349e502e
--- /dev/null
+++ b/domains/slyc.the.catboy.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "SlycIsACatboy",
+ "email": "noahhz942@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/smartfridge.json b/domains/smartfridge.json
deleted file mode 100644
index 3f9caf1f7..000000000
--- a/domains/smartfridge.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "smartfridge personal website",
- "repo": "https://github.com/smartfridge-alt/smartfridge-alt.github.io",
- "owner": {
- "username": "smartfrigde",
- "email": "smartfrigde@gmail.com"
- },
- "record": {
- "CNAME": "smartfridge-alt.github.io"
- }
-}
diff --git a/domains/smartlinuxcoder.json b/domains/smartlinuxcoder.json
new file mode 100644
index 000000000..798737b53
--- /dev/null
+++ b/domains/smartlinuxcoder.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Smartlinuxcoder",
+ "email": "smartcoder@linuxmail.org"
+ },
+ "record": {
+ "CNAME": "smartlinuxcoder.github.io"
+ }
+}
diff --git a/domains/smoke-etecsa.yoelvd.json b/domains/smoke-etecsa.yoelvd.json
deleted file mode 100644
index e11c44946..000000000
--- a/domains/smoke-etecsa.yoelvd.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "yoelvd",
- "email": "magodeoz.virtual@gmail.com"
- },
- "record": {
- "CNAME": "srv40118-206152.vps.etecsa.cu"
- }
-}
diff --git a/domains/snail.json b/domains/snail.json
deleted file mode 100644
index 431c233ed..000000000
--- a/domains/snail.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Snail's Site",
- "repo": "https://github.com/snaildos/snail.is.dev",
- "owner": {
- "username": "snaildos",
- "email": "snaildos@snaildos.com"
- },
- "record": {
- "CNAME": "snaildos.com"
- }
-}
diff --git a/domains/snaildos.json b/domains/snaildos.json
deleted file mode 100644
index c34a4dd91..000000000
--- a/domains/snaildos.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Site",
- "repo": "https://github.com/snaildos",
- "owner": {
- "username": "snaildos",
- "email": ""
- },
- "record": {
- "CNAME": "snaildos.tk"
- }
-}
diff --git a/domains/snake.json b/domains/snake.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/snake.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/sneax.json b/domains/sneax.json
new file mode 100644
index 000000000..dbec35764
--- /dev/null
+++ b/domains/sneax.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "0SneaX0",
+ "email": "illuminater3000@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/snip.json b/domains/snip.json
new file mode 100644
index 000000000..a5a207f28
--- /dev/null
+++ b/domains/snip.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "realsnipc",
+ "email": "snipc.mail@proton.me"
+ },
+ "record": {
+ "URL": "https://snipc.me"
+ }
+}
diff --git a/domains/snipc.json b/domains/snipc.json
index 3c7284b59..091381c65 100644
--- a/domains/snipc.json
+++ b/domains/snipc.json
@@ -4,7 +4,7 @@
"email": "snipc.mail@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/snippyivan.json b/domains/snippyivan.json
index dbbb3907a..aaa4cd040 100644
--- a/domains/snippyivan.json
+++ b/domains/snippyivan.json
@@ -4,7 +4,7 @@
"email": "ivanmasinde@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/snippytech.json b/domains/snippytech.json
index dbbb3907a..aaa4cd040 100644
--- a/domains/snippytech.json
+++ b/domains/snippytech.json
@@ -4,7 +4,7 @@
"email": "ivanmasinde@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/snow.json b/domains/snow.json
new file mode 100644
index 000000000..da03eab85
--- /dev/null
+++ b/domains/snow.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HayBael",
+ "email": "rakhakhairydarka801@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/snowcat.json b/domains/snowcat.json
deleted file mode 100644
index a11f37c40..000000000
--- a/domains/snowcat.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chocovannii",
- "email": "eldar.fire.tv@gmail.com"
- },
- "record": {
- "A": ["79.165.121.142"]
- }
-}
diff --git a/domains/snowservice.json b/domains/snowservice.json
new file mode 100644
index 000000000..da03eab85
--- /dev/null
+++ b/domains/snowservice.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HayBael",
+ "email": "rakhakhairydarka801@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/snox.json b/domains/snox.json
deleted file mode 100644
index 5894116fb..000000000
--- a/domains/snox.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "snox.codes",
- "repo": "https://snox.codes",
- "owner": {
- "username": "SimplySnox",
- "email": "root@snox.codes",
- "discord": "snox#0143"
- },
- "record": {
- "CNAME": "snox.codes"
- }
-}
diff --git a/domains/snwsrv.json b/domains/snwsrv.json
new file mode 100644
index 000000000..da03eab85
--- /dev/null
+++ b/domains/snwsrv.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HayBael",
+ "email": "rakhakhairydarka801@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/socials.m1dnight.json b/domains/socials.m1dnight.json
deleted file mode 100644
index 2c4f29a7a..000000000
--- a/domains/socials.m1dnight.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Socials menu in m1dnight's art portfolio",
- "repo": "https://m1dnight.is-a.dev/art/3D-Menu-Art/index-3Dmenu.html",
- "owner": {
- "username": "m1dnight-ofcl",
- "email": "m1dnightgmrofficial@gmail.com"
- },
- "record": {
- "CNAME": "m1dnight.is-a.dev"
- }
-}
diff --git a/domains/soeren.json b/domains/soeren.json
deleted file mode 100644
index 099e1cece..000000000
--- a/domains/soeren.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "HSoeren",
- "email": "soeren.helms1@gmail.com"
- },
- "record": {
- "CNAME": "soeren-helms.de"
- }
-}
diff --git a/domains/sof009.json b/domains/sof009.json
index 06087f1ab..ba70e909c 100644
--- a/domains/sof009.json
+++ b/domains/sof009.json
@@ -4,7 +4,7 @@
"email": "SOF.009@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sohamkansodaria.json b/domains/sohamkansodaria.json
new file mode 100644
index 000000000..d81051004
--- /dev/null
+++ b/domains/sohamkansodaria.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "UltraHopeful",
+ "email": "sohupatel8828@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sohamlol.json b/domains/sohamlol.json
deleted file mode 100644
index 061cf5911..000000000
--- a/domains/sohamlol.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "TecHCodez",
- "email": "soham.mohapatra65@gmail.com"
- },
-
- "record": {
- "A": ["34.122.153.22"]
- }
-}
diff --git a/domains/someshsrichandan.json b/domains/someshsrichandan.json
index caad7c3de..1aca9c790 100644
--- a/domains/someshsrichandan.json
+++ b/domains/someshsrichandan.json
@@ -4,7 +4,7 @@
"email": "someshsrichandan@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sonet.json b/domains/sonet.json
deleted file mode 100644
index 195d7c8c0..000000000
--- a/domains/sonet.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "This is my personal Website of portfolio",
- "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io",
- "owner": {
- "username": "CoderSoNet",
- "email": "support@sonet.is-a.dev",
- "twitter": "ShanuUniyal_On",
- "discord": "781127625263415326"
- },
- "record": {
- "A": ["34.149.204.188"],
- "TXT": "v=spf1 a mx include:_spf.elasticemail.com ~all"
- }
-}
diff --git a/domains/song.json b/domains/song.json
new file mode 100644
index 000000000..e4ab69778
--- /dev/null
+++ b/domains/song.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "A": ["20.197.9.167"]
+ }
+}
diff --git a/domains/soni-ashish.json b/domains/soni-ashish.json
deleted file mode 100644
index 9a91581a4..000000000
--- a/domains/soni-ashish.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My new website",
- "repo": "https://github.com/soni-ashish/soni-ashish.github.io",
- "owner": {
- "username": "soni-ashish",
- "email": ""
- },
- "record": {
- "CNAME": "soni-ashish.github.io"
- }
-}
diff --git a/domains/sonicx180.json b/domains/sonicx180.json
deleted file mode 100644
index 21fa0dbba..000000000
--- a/domains/sonicx180.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/sonicx180/website",
- "owner": {
- "username": "sonicx180",
- "email": "chetanzeogu410@gmail.com"
- },
- "record": {
- "CNAME": "0146e66a-6183-424c-85bd-b240bea14f14.id.repl.co"
- }
-}
diff --git a/domains/sotoyer.json b/domains/sotoyer.json
new file mode 100644
index 000000000..e0cd92e1b
--- /dev/null
+++ b/domains/sotoyer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "carlos-perez-16003",
+ "email": "cvalle2soto@gmail.com"
+ },
+ "record": {
+ "URL": "https://sotoyer.dcms.site/"
+ }
+}
diff --git a/domains/soup.json b/domains/soup.json
index bea0a34c9..153425e93 100644
--- a/domains/soup.json
+++ b/domains/soup.json
@@ -4,7 +4,7 @@
"email": "slxtty.bxtchlol@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sourabh.json b/domains/sourabh.json
new file mode 100644
index 000000000..6798d751c
--- /dev/null
+++ b/domains/sourabh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "6ixline",
+ "email": "sourabhsingh01998@gmail.com"
+ },
+ "record": {
+ "A": ["198.54.113.40"]
+ }
+}
diff --git a/domains/sourav.json b/domains/sourav.json
new file mode 100644
index 000000000..d55e38eee
--- /dev/null
+++ b/domains/sourav.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LegendOP1041",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/sowmik.json b/domains/sowmik.json
index 235607b91..2072afa9c 100644
--- a/domains/sowmik.json
+++ b/domains/sowmik.json
@@ -4,6 +4,6 @@
"email": "Xowmik@gmail.com"
},
"record": {
- "URL": "https://sowmiksudo.github.io/"
+ "CNAME": "sowmiksudo.github.io"
}
}
diff --git a/domains/spa.json b/domains/spa.json
index 958a47c75..830cce23d 100644
--- a/domains/spa.json
+++ b/domains/spa.json
@@ -4,7 +4,7 @@
"email": "stefano.persanoadorno@liceopertini.edu.it"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/spaace.json b/domains/spaace.json
index 452ae9bc1..0a2ee0fec 100644
--- a/domains/spaace.json
+++ b/domains/spaace.json
@@ -4,7 +4,7 @@
"email": "coelhoaiden@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/space.json b/domains/space.json
deleted file mode 100644
index 5ac110d08..000000000
--- a/domains/space.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "My site",
- "owner": {
- "username": "StalkerMeyr",
- "email": "andchit223@gmail.com"
- },
- "record": {
- "A": ["148.251.26.247"]
- }
-}
diff --git a/domains/spark.json b/domains/spark.json
deleted file mode 100644
index 61b866f72..000000000
--- a/domains/spark.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "realspark808",
- "email": "burnedspark69@gmail.com"
- },
-
- "record": {
- "CNAME": "55ce10ef-805d-4f67-a702-435d39062da6.id.repl.co"
- }
-}
diff --git a/domains/sparkfire298.json b/domains/sparkfire298.json
index 34bdd11bd..649fe9104 100644
--- a/domains/sparkfire298.json
+++ b/domains/sparkfire298.json
@@ -4,7 +4,7 @@
"email": "sparkfire298@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sparkle.json b/domains/sparkle.json
new file mode 100644
index 000000000..efa2ddce3
--- /dev/null
+++ b/domains/sparkle.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sparkledevs",
+ "email": "sparkleop921@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/spd.json b/domains/spd.json
index 6793003bb..87680c9da 100644
--- a/domains/spd.json
+++ b/domains/spd.json
@@ -4,7 +4,7 @@
"email": "aspdoctor@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/spicy.json b/domains/spicy.json
new file mode 100644
index 000000000..60487950d
--- /dev/null
+++ b/domains/spicy.json
@@ -0,0 +1,19 @@
+{
+ "owner": {
+ "username": "oyepriyansh",
+ "email": "oyepriyansh@hotmail.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/spidey.json b/domains/spidey.json
new file mode 100644
index 000000000..925c2fccd
--- /dev/null
+++ b/domains/spidey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zepip",
+ "email": "zigzaglm13@proton.me"
+ },
+ "record": {
+ "CNAME": "zepip.github.io"
+ }
+}
diff --git a/domains/spike.json b/domains/spike.json
index 26c77f48c..8c6b630ad 100644
--- a/domains/spike.json
+++ b/domains/spike.json
@@ -4,7 +4,7 @@
"email": "spikevinz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/spill.json b/domains/spill.json
index 9635dcb67..f86679f21 100644
--- a/domains/spill.json
+++ b/domains/spill.json
@@ -4,7 +4,7 @@
"email": "playerwictor@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/splashy.json b/domains/splashy.json
index ae347f452..4e6a7710f 100644
--- a/domains/splashy.json
+++ b/domains/splashy.json
@@ -4,7 +4,7 @@
"email": "clicpowytb@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sppidy.json b/domains/sppidy.json
new file mode 100644
index 000000000..5f2562ed7
--- /dev/null
+++ b/domains/sppidy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sppidy",
+ "email": "ramshourieshr@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "sppidy.github.io"
+ }
+}
diff --git a/domains/spydea.json b/domains/spydea.json
new file mode 100644
index 000000000..7b812dd05
--- /dev/null
+++ b/domains/spydea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "spydea",
+ "email": "ymkose5534@gmail.com"
+ },
+ "record": {
+ "URL": "https://spydea.blogspot.com"
+ }
+}
diff --git a/domains/spyminer.json b/domains/spyminer.json
index 315e83bb2..7cf9fbe34 100644
--- a/domains/spyminer.json
+++ b/domains/spyminer.json
@@ -4,7 +4,7 @@
"email": "vince@engelbrecht.pro"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/spynet.json b/domains/spynet.json
new file mode 100644
index 000000000..439fac51d
--- /dev/null
+++ b/domains/spynet.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Modesto888",
+ "email": "modestojr886@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sqlmerr.json b/domains/sqlmerr.json
new file mode 100644
index 000000000..dfae2ba28
--- /dev/null
+++ b/domains/sqlmerr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sqlmerr",
+ "email": "sqlmerr@ya.ru"
+ },
+ "record": {
+ "URL": "https://sqlmerr.vercel.app"
+ }
+}
diff --git a/domains/squaresmp.json b/domains/squaresmp.json
index 93efbb43e..ff5b01645 100644
--- a/domains/squaresmp.json
+++ b/domains/squaresmp.json
@@ -4,7 +4,7 @@
"email": "squaresmp@asia.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sreevikram.json b/domains/sreevikram.json
index 241355d9d..45942d26e 100644
--- a/domains/sreevikram.json
+++ b/domains/sreevikram.json
@@ -5,7 +5,7 @@
"email": "sreevikram.r@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/sreevikramr.json b/domains/sreevikramr.json
deleted file mode 100644
index b56747c05..000000000
--- a/domains/sreevikramr.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "SreevikramR",
- "email": "sreevikram.r@gmail.com",
- "discord": "therealviki"
- },
- "record": {
- "CNAME": "nextjs-production-a65b.up.railway.app"
- }
-}
diff --git a/domains/srujangajul.json b/domains/srujangajul.json
new file mode 100644
index 000000000..1274f9124
--- /dev/null
+++ b/domains/srujangajul.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "SrujanGajul",
+ "email": "Srujan.gajul@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ss.cutedog5695.json b/domains/ss.cutedog5695.json
new file mode 100644
index 000000000..82aeb36e7
--- /dev/null
+++ b/domains/ss.cutedog5695.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CuteDog5695",
+ "email": "cutedog5695@gmail.com",
+ "discord": "cutedog5695",
+ "twitter": "cutedog5695"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/ss.kleb.json b/domains/ss.kleb.json
new file mode 100644
index 000000000..d60c33257
--- /dev/null
+++ b/domains/ss.kleb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KrazyKleb",
+ "email": "krazykleb@outlook.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/ss.stefdp.json b/domains/ss.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/ss.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/sser.json b/domains/sser.json
index 7fc2eb17b..399c62889 100644
--- a/domains/sser.json
+++ b/domains/sser.json
@@ -4,7 +4,7 @@
"email": "nuffimail33@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sshdgjeienjdje.json b/domains/sshdgjeienjdje.json
index 9c5b61bd1..edfc2aad1 100644
--- a/domains/sshdgjeienjdje.json
+++ b/domains/sshdgjeienjdje.json
@@ -4,7 +4,7 @@
"email": "cycloneaddon@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ssmidge.json b/domains/ssmidge.json
deleted file mode 100644
index df620aecf..000000000
--- a/domains/ssmidge.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Ssmidge",
- "repo": "https://github.com/Ssmidge/register",
- "owner": {
- "username": "Ssmidge",
- "email": "Ssmidgemc@gmail.com"
- },
- "record": {
- "CNAME": "ssmidge.xyz"
- }
-}
diff --git a/domains/sso.nqdev.json b/domains/sso.nqdev.json
index 2cbbfef3d..b305e2dee 100644
--- a/domains/sso.nqdev.json
+++ b/domains/sso.nqdev.json
@@ -4,7 +4,7 @@
"email": "nguyenquy.1096@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sta1us.json b/domains/sta1us.json
deleted file mode 100644
index 4d5bdec11..000000000
--- a/domains/sta1us.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "status-dev",
- "email": "startic.email@gmail.com"
- },
-
- "record": {
- "CNAME": "2b5e8113-5d4f-4c1e-862e-6d780db560cb.id.repl.co"
- }
-}
diff --git a/domains/stamina.json b/domains/stamina.json
index a52bcf209..ff662646a 100644
--- a/domains/stamina.json
+++ b/domains/stamina.json
@@ -4,7 +4,7 @@
"email": "ivankyosev21@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/stanasx.json b/domains/stanasx.json
index 8b0cdace2..d6c07c42f 100644
--- a/domains/stanasx.json
+++ b/domains/stanasx.json
@@ -4,7 +4,7 @@
"email": "stanasarts@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/static.roadblocked.json b/domains/static.roadblocked.json
deleted file mode 100644
index 6ab316063..000000000
--- a/domains/static.roadblocked.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "roadblockeddev",
- "email": "roadblockeddevcontact@skiff.com"
- },
- "record": {
- "CNAME": "static-dju.pages.dev"
- }
-}
diff --git a/domains/status.astra.json b/domains/status.astra.json
new file mode 100644
index 000000000..ccdd07006
--- /dev/null
+++ b/domains/status.astra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LilyMusic",
+ "email": "Lilymusicdiscord@gmail.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/_github-pages-challenge-stef-00012.stefdp.json b/domains/status.gattinhosbot.json
similarity index 77%
rename from domains/_github-pages-challenge-stef-00012.stefdp.json
rename to domains/status.gattinhosbot.json
index c621262de..7d127f33a 100644
--- a/domains/_github-pages-challenge-stef-00012.stefdp.json
+++ b/domains/status.gattinhosbot.json
@@ -5,6 +5,6 @@
"discord": "694986201739952229"
},
"record": {
- "TXT": "27c2dc9cd3e8a0a37947e82ab6f637"
+ "CNAME": "uptime.stefdp.is-a.dev"
}
}
diff --git a/domains/status.json b/domains/status.json
index 9bdeca7ca..73451fc78 100644
--- a/domains/status.json
+++ b/domains/status.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
+ "username": "wdhdev",
+ "email": "william@williamharrison.dev"
},
"record": {
"CNAME": "wdhdns.com"
diff --git a/domains/status.stefdp.json b/domains/status.stefdp.json
new file mode 100644
index 000000000..7d127f33a
--- /dev/null
+++ b/domains/status.stefdp.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "CNAME": "uptime.stefdp.is-a.dev"
+ }
+}
diff --git a/domains/steam.niemiets.json b/domains/steam.niemiets.json
deleted file mode 100644
index 0aa8e803f..000000000
--- a/domains/steam.niemiets.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Niemiets",
- "email": "niemiec123123123@gmail.com"
- },
- "record": {
- "URL": "https://steamcommunity.com/id/niemiets/"
- }
-}
diff --git a/domains/stefan.json b/domains/stefan.json
new file mode 100644
index 000000000..63953e825
--- /dev/null
+++ b/domains/stefan.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "DynoW",
+ "email": "naffets0@gmail.com",
+ "discord": "455608238335983617"
+ },
+ "record": {
+ "URL": "https://dyno.is-a.dev",
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": ["forward-email=naffets0@gmail.com", "v=spf1 a mx include:spf.forwardemail.net include:_spf.google.com -all"]
+ }
+}
diff --git a/domains/stefdp.json b/domains/stefdp.json
index 62b2bcf6e..2882eface 100644
--- a/domains/stefdp.json
+++ b/domains/stefdp.json
@@ -9,12 +9,10 @@
"217.174.245.249"
],
"MX": [
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
+ "mail.is-a.dev"
],
"TXT": [
- "forward-email=admin:admin.main@mail.stefdp.is-a.dev",
- "forward-email=/^(?!admin$).*/:main@mail.stefdp.is-a.dev"
+ "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all"
]
}
}
diff --git a/domains/stellar.json b/domains/stellar.json
index 6c986115d..4941e43a1 100644
--- a/domains/stellar.json
+++ b/domains/stellar.json
@@ -4,7 +4,7 @@
"email": "pollardjackson@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/stellaros.json b/domains/stellaros.json
index 6c986115d..4941e43a1 100644
--- a/domains/stellaros.json
+++ b/domains/stellaros.json
@@ -4,7 +4,7 @@
"email": "pollardjackson@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/stiforr.json b/domains/stiforr.json
deleted file mode 100644
index 8d8dba535..000000000
--- a/domains/stiforr.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "stiforr",
- "email": "norwood.sean@gmail.com"
- },
- "record": {
- "CNAME": "stiforr.com"
- }
-}
diff --git a/domains/stodja.json b/domains/stodja.json
new file mode 100644
index 000000000..ccd976ce6
--- /dev/null
+++ b/domains/stodja.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stodja",
+ "email": "alexvelichko51@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stoneleaf-bt.json b/domains/stoneleaf-bt.json
deleted file mode 100644
index 2f491a71a..000000000
--- a/domains/stoneleaf-bt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NazerMohamed",
- "email": "NazerMohamed@gmail.com"
- },
- "record": {
- "A": ["51.89.94.232"]
- }
-}
diff --git a/domains/stoneleaf-pp.json b/domains/stoneleaf-pp.json
deleted file mode 100644
index 2f491a71a..000000000
--- a/domains/stoneleaf-pp.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "NazerMohamed",
- "email": "NazerMohamed@gmail.com"
- },
- "record": {
- "A": ["51.89.94.232"]
- }
-}
diff --git a/domains/storm.json b/domains/storm.json
new file mode 100644
index 000000000..a46510fa6
--- /dev/null
+++ b/domains/storm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hxntaish",
+ "email": "juliettepoisson3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/str1ke.json b/domains/str1ke.json
deleted file mode 100644
index a733755cc..000000000
--- a/domains/str1ke.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "RealStr1ke",
- "email": "tmenelas@outlook.com"
- },
-
- "record": {
- "CNAME": "str1ke.codes"
- }
-}
diff --git a/domains/strider-studios.json b/domains/strider-studios.json
new file mode 100644
index 000000000..19c14f855
--- /dev/null
+++ b/domains/strider-studios.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TheRealStrider",
+ "email": "starwars3805@gmail.com"
+ },
+ "record": {
+ "CNAME": "therealstrider.github.io"
+ }
+}
diff --git a/domains/strtsnm.json b/domains/strtsnm.json
index 583239e1a..3e03815e2 100644
--- a/domains/strtsnm.json
+++ b/domains/strtsnm.json
@@ -4,7 +4,7 @@
"email": "STRTSNM12@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/struc.api.badboy.json b/domains/struc.api.badboy.json
deleted file mode 100644
index 52b220670..000000000
--- a/domains/struc.api.badboy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "https://badboy.is-a.dev/ redirector",
- "owner": {
- "username": "bad-boy-codes",
- "email": "contact@mail.badboy.is-a.dev"
- },
- "record": {
- "CNAME": "1c1cdaeb-374d-4273-bd14-b7e96b091f72.id.repl.co"
- }
-}
diff --git a/domains/studythyme.json b/domains/studythyme.json
new file mode 100644
index 000000000..52f0cf706
--- /dev/null
+++ b/domains/studythyme.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BreadGhoti1",
+ "email": "breadghoti@gmail.com"
+ },
+ "record": {
+ "CNAME": "sitev2-cvm.pages.dev"
+ }
+}
diff --git a/domains/stuffmaker.json b/domains/stuffmaker.json
new file mode 100644
index 000000000..57ae2d155
--- /dev/null
+++ b/domains/stuffmaker.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MrStuffmaker",
+ "email": "acapello6666@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stupidjane.json b/domains/stupidjane.json
new file mode 100644
index 000000000..687e587b7
--- /dev/null
+++ b/domains/stupidjane.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "stupidjohanna",
+ "email": "stupidjane@tutanota.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stx.json b/domains/stx.json
index 8b0cdace2..d6c07c42f 100644
--- a/domains/stx.json
+++ b/domains/stx.json
@@ -4,7 +4,7 @@
"email": "stanasarts@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sty.json b/domains/sty.json
new file mode 100644
index 000000000..c76127b34
--- /dev/null
+++ b/domains/sty.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "Sty928",
+ "email": "satyam99jha@gmail.com"
+ },
+
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/styy.json b/domains/styy.json
new file mode 100644
index 000000000..616762b26
--- /dev/null
+++ b/domains/styy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Sty928",
+ "email": "satyam99jha@gmail.com"
+ },
+
+ "record": {
+ "A": ["161.97.137.17"]
+ }
+}
diff --git a/domains/su.json b/domains/su.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/su.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/subham.json b/domains/subham.json
new file mode 100644
index 000000000..44e9c8229
--- /dev/null
+++ b/domains/subham.json
@@ -0,0 +1,11 @@
+{
+ "description": "Will be using the subdomain to host my portfolio using is a dev",
+ "repo": "https://github.com/skuma251/skuma251.github.io",
+ "owner": {
+ "username": "skuma251",
+ "email": "skuma251@asu.edu"
+ },
+ "record": {
+ "CNAME": "skuma251.github.io"
+ }
+}
diff --git a/domains/sudi.json b/domains/sudi.json
new file mode 100644
index 000000000..2db3cbe9a
--- /dev/null
+++ b/domains/sudi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ahsanu123",
+ "email": "caasperahsanuamala5@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sudo.json b/domains/sudo.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/sudo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sudosu.json b/domains/sudosu.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/sudosu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/suhailahmed.json b/domains/suhailahmed.json
new file mode 100644
index 000000000..62c72045d
--- /dev/null
+++ b/domains/suhailahmed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SuhailAhmed2627",
+ "email": "suhailahmed2001sam@gmail.com"
+ },
+ "record": {
+ "URL": "https://suhailahmed2627.vercel.app/"
+ }
+}
diff --git a/domains/suhailahmed2627.json b/domains/suhailahmed2627.json
new file mode 100644
index 000000000..8387529bf
--- /dev/null
+++ b/domains/suhailahmed2627.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SuhailAhmed2627",
+ "email": "suhailahmed2001sam@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sujan.json b/domains/sujan.json
index 377c9e4a5..8e962f1b2 100644
--- a/domains/sujan.json
+++ b/domains/sujan.json
@@ -4,7 +4,7 @@
"email": "work@sujandeb.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sujandeb.json b/domains/sujandeb.json
index 377c9e4a5..8e962f1b2 100644
--- a/domains/sujandeb.json
+++ b/domains/sujandeb.json
@@ -4,7 +4,7 @@
"email": "work@sujandeb.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sujeeth.json b/domains/sujeeth.json
deleted file mode 100644
index 1fcc19059..000000000
--- a/domains/sujeeth.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "sujeethk",
- "email": "sujeethkv@yahoo.com"
- },
- "record": {
- "A": ["74.59.143.202"]
- }
-}
diff --git a/domains/suki.json b/domains/suki.json
index 1299ab5a7..f2887c077 100644
--- a/domains/suki.json
+++ b/domains/suki.json
@@ -4,8 +4,8 @@
"email": "sukimayoo@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
- "TXT": "v=spf1 a mx include:spf.improvmx.com ~all",
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "TXT": "v=spf1 a mx include:mail.is-a.dev ~all",
+ "MX": ["mail.is-a.dev"]
}
}
diff --git a/domains/suleymanduzgun.json b/domains/suleymanduzgun.json
index 1bfe2135f..ba897b9b6 100644
--- a/domains/suleymanduzgun.json
+++ b/domains/suleymanduzgun.json
@@ -4,7 +4,7 @@
"email": "suleymanduzgun@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sumit.json b/domains/sumit.json
new file mode 100644
index 000000000..b2f308f31
--- /dev/null
+++ b/domains/sumit.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "isumitjha",
+ "email": "7sumitjha@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "isumitjha.github.io"
+ }
+}
diff --git a/domains/sunny.json b/domains/sunny.json
new file mode 100644
index 000000000..cca5a871d
--- /dev/null
+++ b/domains/sunny.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sunny-unik",
+ "email": "sunnygandhwani027@gmail.com"
+ },
+ "record": {
+ "CNAME": "Sunny-unik.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/supusr.json b/domains/supusr.json
new file mode 100644
index 000000000..fbd218162
--- /dev/null
+++ b/domains/supusr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hemal80",
+ "email": "hemalfnmondal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/suq3r.json b/domains/suq3r.json
new file mode 100644
index 000000000..65c25c5b0
--- /dev/null
+++ b/domains/suq3r.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EnterausernameUwU",
+ "email": "soundingcool100@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/swanny.json b/domains/swanny.json
deleted file mode 100644
index 7136c35ad..000000000
--- a/domains/swanny.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Swanny is a Dev",
- "repo": "https://github.com/swanny246/swannyIsADev",
- "owner": {
- "username": "swanny246",
- "email": "github@andrewswan.net"
- },
- "record": {
- "CNAME": "swannyisadev.andrewswan.net"
- }
-}
diff --git a/domains/sxe.json b/domains/sxe.json
index 8b0cdace2..d6c07c42f 100644
--- a/domains/sxe.json
+++ b/domains/sxe.json
@@ -4,7 +4,7 @@
"email": "stanasarts@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/sxurxbh.json b/domains/sxurxbh.json
new file mode 100644
index 000000000..0f9937444
--- /dev/null
+++ b/domains/sxurxbh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sxurabh",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "CNAME": "sxurabh.github.io"
+ }
+}
diff --git a/domains/syedomershah.json b/domains/syedomershah.json
index 9131a9b74..cf626f7f9 100644
--- a/domains/syedomershah.json
+++ b/domains/syedomershah.json
@@ -4,7 +4,7 @@
"email": "syedomershah99@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/syntz.json b/domains/syntz.json
new file mode 100644
index 000000000..00ecd0d3d
--- /dev/null
+++ b/domains/syntz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "syntz-dev",
+ "email": "rafaelbraun5@hotmail.com"
+ },
+ "repo": "https://github.com/syntz-dev/syntz-dev.github.io",
+ "record": {
+ "CNAME": "syntz-dev.github.io"
+ }
+}
diff --git a/domains/systemm32.json b/domains/systemm32.json
index 3705b668d..6e893f3a7 100644
--- a/domains/systemm32.json
+++ b/domains/systemm32.json
@@ -4,7 +4,7 @@
"email": "didunoxd@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tabanopro.json b/domains/tabanopro.json
new file mode 100644
index 000000000..aa6ebd16e
--- /dev/null
+++ b/domains/tabanopro.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tabanopro",
+ "email": "glim4045@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tahaadnan.json b/domains/tahaadnan.json
new file mode 100644
index 000000000..317bf98cd
--- /dev/null
+++ b/domains/tahaadnan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LRxDarkDevil",
+ "email": "tahaadnanawan@gmail.com"
+ },
+ "record": {
+ "CNAME": "lrxdarkdevil.github.io"
+ }
+}
diff --git a/domains/takeshi.json b/domains/takeshi.json
new file mode 100644
index 000000000..1d22496e3
--- /dev/null
+++ b/domains/takeshi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "takeshi7502",
+ "email": "takeshi.gi75@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/takudzwachiutaalenga.json b/domains/takudzwachiutaalenga.json
new file mode 100644
index 000000000..0a683c0c8
--- /dev/null
+++ b/domains/takudzwachiutaalenga.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TakudzwaChiutaalenga",
+ "email": "takudzwachiutaalenga@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tamim.json b/domains/tamim.json
new file mode 100644
index 000000000..a6605dda5
--- /dev/null
+++ b/domains/tamim.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio website",
+ "repo": "https://github.com/dev7amim/dev7amim.github.io",
+ "owner": {
+ "username": "dev7amim",
+ "email": "dev7amim@yahoo.com"
+ },
+ "record": {
+ "CNAME": "dev7amim.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/tanio.json b/domains/tanio.json
deleted file mode 100644
index b4bc5f56c..000000000
--- a/domains/tanio.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Hello World",
- "owner": {
- "username": "tanmyid",
- "email": "tanmyid1337@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/tanmayjaiswal.json b/domains/tanmayjaiswal.json
index 932b897ec..b7b822b8a 100644
--- a/domains/tanmayjaiswal.json
+++ b/domains/tanmayjaiswal.json
@@ -4,7 +4,7 @@
"email": "tanmayjaiswal31102002@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tanu.json b/domains/tanu.json
deleted file mode 100644
index c4b784514..000000000
--- a/domains/tanu.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Tanu's Website",
- "repo": "https://github.com/desktopdotini/websitev3",
- "owner": {
- "username": "desktopdotini",
- "email": "cloneyinnit@gmail.com",
- "twitter": "tanumakescode"
- },
- "record": {
- "CNAME": "websitev3.pages.dev"
- }
-}
diff --git a/domains/tar1k.json b/domains/tar1k.json
new file mode 100644
index 000000000..80a198fc6
--- /dev/null
+++ b/domains/tar1k.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ythknn",
+ "email": "ythknn@gmail.com"
+ },
+
+ "record": {
+ "A": ["193.223.105.188"]
+ }
+}
diff --git a/domains/tariqul.json b/domains/tariqul.json
index 862f71aa6..2664fc05f 100644
--- a/domains/tariqul.json
+++ b/domains/tariqul.json
@@ -4,6 +4,8 @@
"email": "2201081175@UTTARAUNIVERSITY.EDU.BD"
},
"record": {
- "URL": "https://sites.google.com/view/tariqultais/home"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/tartej.json b/domains/tartej.json
new file mode 100644
index 000000000..3ad7a6db3
--- /dev/null
+++ b/domains/tartej.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Site",
+ "repo": "https://github.com/TartejBrothers/Tarloic",
+ "owner": {
+ "username": "tartejbrothers",
+ "email": "taranjeetsinghbedi2@gmail.com"
+ },
+ "record": {
+ "CNAME": "tarloic.web.app"
+ }
+}
diff --git a/domains/tas33n.json b/domains/tas33n.json
new file mode 100644
index 000000000..06c4097a6
--- /dev/null
+++ b/domains/tas33n.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio for my works..",
+ "repo": "https://github.com/tas33n/tas33n.github.io",
+ "owner": {
+ "username": "tas33n",
+ "email": "tasu.legend@gmail.com",
+ "twitter": ""
+ },
+ "record": {
+ "CNAME": "tas33n.github.io"
+ }
+}
diff --git a/domains/tashvik.json b/domains/tashvik.json
new file mode 100644
index 000000000..0d60c888e
--- /dev/null
+++ b/domains/tashvik.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tashviks",
+ "email": "tashvik.12112279@lpu.in"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/taufikmaulidi.json b/domains/taufikmaulidi.json
index 1ad7b9af4..06202c492 100644
--- a/domains/taufikmaulidi.json
+++ b/domains/taufikmaulidi.json
@@ -4,7 +4,7 @@
"email": "taufikmaulidi123@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tazmyan.json b/domains/tazmyan.json
index b654817b3..7257cd85d 100644
--- a/domains/tazmyan.json
+++ b/domains/tazmyan.json
@@ -4,7 +4,7 @@
"email": "tikpatka@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tbhgodpro.json b/domains/tbhgodpro.json
index 1b636cab3..4ba824e4e 100644
--- a/domains/tbhgodpro.json
+++ b/domains/tbhgodpro.json
@@ -4,7 +4,7 @@
"email": "tarun.bhaskar@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/td.json b/domains/td.json
new file mode 100644
index 000000000..1567c0b9f
--- /dev/null
+++ b/domains/td.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hima-Pro",
+ "email": "pnpop01027066161@gmail.com"
+ },
+ "record": {
+ "CNAME": "hima-pro.github.io"
+ }
+}
diff --git a/domains/tdkchat.json b/domains/tdkchat.json
deleted file mode 100644
index c8badb6a1..000000000
--- a/domains/tdkchat.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MattTheTekie",
- "email": "Mattmason2211@gmail.com"
- },
- "record": {
- "CNAME": "test72.eu.org"
- }
-}
diff --git a/domains/tea.json b/domains/tea.json
deleted file mode 100644
index a5fd3444f..000000000
--- a/domains/tea.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "TheTeaCup",
- "email": "",
- "discord": "Tea Cup#9999"
- },
- "record": {
- "CNAME": "dedicated.theteacup.dev"
- }
-}
diff --git a/domains/teamcodearc.json b/domains/teamcodearc.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/teamcodearc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/tech-is-god.json b/domains/tech-is-god.json
new file mode 100644
index 000000000..c18c33303
--- /dev/null
+++ b/domains/tech-is-god.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GamerKid67289",
+ "email": "zprice720@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/techctg24.json b/domains/techctg24.json
deleted file mode 100644
index c8d4ba0c8..000000000
--- a/domains/techctg24.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "rakibctg",
- "email": "eunus527@gmail.com"
- },
-
- "record": {
- "URL": "https://techctg24.dev"
- }
-}
diff --git a/domains/techhjork.json b/domains/techhjork.json
new file mode 100644
index 000000000..18d53e5da
--- /dev/null
+++ b/domains/techhjork.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "techhjork",
+ "email": "techhjork@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/techke.json b/domains/techke.json
index 25fe10783..174a7a941 100644
--- a/domains/techke.json
+++ b/domains/techke.json
@@ -4,7 +4,7 @@
"email": "techpunditke@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/techout.json b/domains/techout.json
deleted file mode 100644
index 994ea666b..000000000
--- a/domains/techout.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Mainly used to upload images to but also for a small home-page.",
- "repo": "https://github.com/Techout592",
- "owner": {
- "username": "Techout592",
- "email": "root@techout.tech"
- },
- "record": {
- "CNAME": "dns.techout.tech"
- }
-}
diff --git a/domains/techpundit.json b/domains/techpundit.json
index 25fe10783..174a7a941 100644
--- a/domains/techpundit.json
+++ b/domains/techpundit.json
@@ -4,7 +4,7 @@
"email": "techpunditke@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/techpunditke.json b/domains/techpunditke.json
index 25fe10783..174a7a941 100644
--- a/domains/techpunditke.json
+++ b/domains/techpunditke.json
@@ -4,7 +4,7 @@
"email": "techpunditke@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/techside.json b/domains/techside.json
new file mode 100644
index 000000000..723ecc8d0
--- /dev/null
+++ b/domains/techside.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "techsideofficial",
+ "email": "wienerwolf77@gmail.com"
+ },
+ "record": {
+ "CNAME": "joysteem.web.app"
+ }
+}
diff --git a/domains/tehpig.json b/domains/tehpig.json
index 7c10f8c09..1ac0fb64c 100644
--- a/domains/tehpig.json
+++ b/domains/tehpig.json
@@ -4,7 +4,7 @@
"email": "aggelosdellas@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/teknoday.json b/domains/teknoday.json
new file mode 100644
index 000000000..bd7815130
--- /dev/null
+++ b/domains/teknoday.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "teknoku32",
+ "email": "tajam24news@gmail.com"
+ },
+ "record": {
+ "URL": "https://bidayy.com"
+ }
+}
diff --git a/domains/teletvbis.json b/domains/teletvbis.json
deleted file mode 100644
index c78d6cd98..000000000
--- a/domains/teletvbis.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Necesku",
- "email": "105011954+Necesku@users.noreply.github.com",
- "discord": "702682685713416222"
- },
-
- "record": {
- "A": ["185.117.0.194"]
- }
-}
diff --git a/domains/temp.stefdp.json b/domains/temp.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/temp.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/teriko.json b/domains/teriko.json
deleted file mode 100644
index c3f6722ec..000000000
--- a/domains/teriko.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "exelenuwu",
- "email": "",
- "twitter": "terikopog",
- "discord": "teriko."
- },
- "record": {
- "A": ["45.8.22.34"]
- }
-}
diff --git a/domains/terraegg.json b/domains/terraegg.json
index 9b04706fb..84e78e300 100644
--- a/domains/terraegg.json
+++ b/domains/terraegg.json
@@ -4,7 +4,7 @@
"email": "oliver.young4@student.education.wa.edu.au"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/tesla.json b/domains/tesla.json
deleted file mode 100644
index 3c454e9bb..000000000
--- a/domains/tesla.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "tesla's personal website",
- "repo": "https://github.com/hapi-dev",
- "owner": {
- "username": "tesla",
- "email": "stream.hapi@gmail.com"
- },
- "record": {
- "CNAME": "arindev.tech"
- }
-}
diff --git a/domains/test2214.json b/domains/test2214.json
index 57306063d..3b03fdb96 100644
--- a/domains/test2214.json
+++ b/domains/test2214.json
@@ -4,7 +4,7 @@
"email": "005sunnysingh@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/test373.json b/domains/test373.json
index a8dbaa99a..6187042fc 100644
--- a/domains/test373.json
+++ b/domains/test373.json
@@ -4,7 +4,7 @@
"email": "is-a-dev@win11react.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/test849205.json b/domains/test849205.json
index 93efbb43e..ff5b01645 100644
--- a/domains/test849205.json
+++ b/domains/test849205.json
@@ -4,7 +4,7 @@
"email": "squaresmp@asia.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tetris.vi0leta.json b/domains/tetris.vi0leta.json
index 97299bd43..ea691c545 100644
--- a/domains/tetris.vi0leta.json
+++ b/domains/tetris.vi0leta.json
@@ -4,6 +4,6 @@
"email": "vi0leta@riseup.net"
},
"record": {
- "A": ["158.101.199.231"]
+ "A": ["37.27.4.76"]
}
}
diff --git a/domains/textures1245.json b/domains/textures1245.json
index 3f13c37c3..7f501bdeb 100644
--- a/domains/textures1245.json
+++ b/domains/textures1245.json
@@ -4,7 +4,7 @@
"email": "sirprak1245@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tgt.json b/domains/tgt.json
deleted file mode 100644
index 66a8ed709..000000000
--- a/domains/tgt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "IncognitoTGT",
- "email": "mashoor539@gmail.com"
- },
- "record": {
- "URL": "https://mashoortest.tk"
- }
-}
diff --git a/domains/thabanii.json b/domains/thabanii.json
new file mode 100644
index 000000000..fb2c4e8d4
--- /dev/null
+++ b/domains/thabanii.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Z3R0SEC",
+ "email": "famkeed11@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thai.json b/domains/thai.json
new file mode 100644
index 000000000..dc16256d5
--- /dev/null
+++ b/domains/thai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CallMeIAmTDF",
+ "email": "thai0203966@nuce.edu.vn"
+ },
+ "record": {
+ "CNAME": "4mhcau20.up.railway.app"
+ }
+}
diff --git a/domains/thaidang.json b/domains/thaidang.json
new file mode 100644
index 000000000..b89ff73d0
--- /dev/null
+++ b/domains/thaidang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CallMeIAmTDF",
+ "email": "thai0203966@nuce.edu.vn"
+ },
+ "record": {
+ "CNAME": "pridysay.up.railway.app"
+ }
+}
diff --git a/domains/thanawat.json b/domains/thanawat.json
new file mode 100644
index 000000000..22df0c55d
--- /dev/null
+++ b/domains/thanawat.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Thanawatttt",
+ "email": "tanawattawillha@gmail.com",
+ "discord": "803249368533696512"
+ },
+
+ "record": {
+ "CNAME": "thanawatttt.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/that.json b/domains/that.json
new file mode 100644
index 000000000..4a3a18d93
--- /dev/null
+++ b/domains/that.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lsy1998",
+ "email": "1945934866@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thatbigderp.json b/domains/thatbigderp.json
index 0e4d3663f..bdd114408 100644
--- a/domains/thatbigderp.json
+++ b/domains/thatbigderp.json
@@ -4,7 +4,7 @@
"email": "darkhacker8604@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/the.catboy.json b/domains/the.catboy.json
new file mode 100644
index 000000000..2e1941329
--- /dev/null
+++ b/domains/the.catboy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SlycIsACatboy",
+ "email": "noahhz942@gmail.com"
+ },
+ "record": {
+ "A": ["137.184.119.127"]
+ }
+}
diff --git a/domains/thebestdeveloper.json b/domains/thebestdeveloper.json
index 532e99f20..36725c211 100644
--- a/domains/thebestdeveloper.json
+++ b/domains/thebestdeveloper.json
@@ -4,7 +4,7 @@
"email": "thebestdeveloper@outlook.fr"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/thebidouilleur.json b/domains/thebidouilleur.json
deleted file mode 100644
index c09f64f9f..000000000
--- a/domains/thebidouilleur.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "QJoly",
- "email": "quentinjoly@thoughtless.eu"
- },
-
- "record": {
- "A": ["5.39.75.213"]
- }
-}
diff --git a/domains/thedeveloper03.json b/domains/thedeveloper03.json
new file mode 100644
index 000000000..918d4b3f5
--- /dev/null
+++ b/domains/thedeveloper03.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thedeveloper03",
+ "email": "trishtrix01@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/thedivided.json b/domains/thedivided.json
index 3d59d5654..4c2608f70 100644
--- a/domains/thedivided.json
+++ b/domains/thedivided.json
@@ -4,7 +4,7 @@
"email": "logannorman2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/thedt.json b/domains/thedt.json
index b60cdeccf..5177079fc 100644
--- a/domains/thedt.json
+++ b/domains/thedt.json
@@ -4,6 +4,8 @@
"email": "duongtuan30306@gmail.com"
},
"record": {
- "URL": "https://many.link/dt"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/theekshana.json b/domains/theekshana.json
deleted file mode 100644
index 173664392..000000000
--- a/domains/theekshana.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "TheekshanaSL",
- "email": "theekshana@technologist.com"
- },
-
- "record": {
- "CNAME": "hashnode.network"
- }
-}
diff --git a/domains/theh2so4.json b/domains/theh2so4.json
deleted file mode 100644
index b485aa5db..000000000
--- a/domains/theh2so4.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "theh2so4",
- "email": "theh2so4@protonmail.com"
- },
-
- "record": {
- "A": ["185.27.134.148"]
- }
-}
diff --git a/domains/thehuytong.json b/domains/thehuytong.json
new file mode 100644
index 000000000..1d617a615
--- /dev/null
+++ b/domains/thehuytong.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thehuytong",
+ "email": "tongnguyen.hahuy@gmail.com"
+ },
+ "record": {
+ "CNAME": "thehuytong.github.io"
+ }
+}
diff --git a/domains/thelocalgodd.json b/domains/thelocalgodd.json
deleted file mode 100644
index 9c6287813..000000000
--- a/domains/thelocalgodd.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "thelocalgodd",
- "email": "vkkpemlie@st.knust.edu.gh"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/thepatik.json b/domains/thepatik.json
deleted file mode 100644
index 3b9f15351..000000000
--- a/domains/thepatik.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "patik123",
- "email": "patik.developer@outlook.com"
- },
- "record": {
- "CNAME": "www.thepatik.com"
- }
-}
diff --git a/domains/thepersonalsite.json b/domains/thepersonalsite.json
new file mode 100644
index 000000000..94dde6b07
--- /dev/null
+++ b/domains/thepersonalsite.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JesseHoekema",
+ "email": "jessehoekema@icloud.com"
+ },
+ "record": {
+ "CNAME": "jessehoekema.github.io"
+ }
+}
diff --git a/domains/therealviki.json b/domains/therealviki.json
deleted file mode 100644
index f712290a9..000000000
--- a/domains/therealviki.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "SreevikramR",
- "email": "sreevikram.r@gmail.com"
- },
-
- "record": {
- "CNAME": "nextjs-production-a65b.up.railway.app"
- }
-}
diff --git a/domains/theschoology.json b/domains/theschoology.json
new file mode 100644
index 000000000..85d9aa22c
--- /dev/null
+++ b/domains/theschoology.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ShriniGenie",
+ "email": "shrini23@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thetechguy.json b/domains/thetechguy.json
index 9635dcb67..f86679f21 100644
--- a/domains/thetechguy.json
+++ b/domains/thetechguy.json
@@ -4,7 +4,7 @@
"email": "playerwictor@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/thisarasd.json b/domains/thisarasd.json
new file mode 100644
index 000000000..c15ba9e3b
--- /dev/null
+++ b/domains/thisarasd.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ThisaraS97",
+ "email": "wgt.shaminda@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thisqoutedoesntexist.json b/domains/thisqoutedoesntexist.json
new file mode 100644
index 000000000..a7d7f03da
--- /dev/null
+++ b/domains/thisqoutedoesntexist.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zirmith",
+ "email": "f2v74yt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thomasfrost.json b/domains/thomasfrost.json
deleted file mode 100644
index 90e516295..000000000
--- a/domains/thomasfrost.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "frosttho",
- "email": "thomas@ksg-media.de"
- },
- "record": {
- "A": ["167.71.34.179"]
- }
-}
diff --git a/domains/thordevs.json b/domains/thordevs.json
index 51c54fde5..88b2f462d 100644
--- a/domains/thordevs.json
+++ b/domains/thordevs.json
@@ -4,7 +4,7 @@
"email": "samzagamer4@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/thunder.json b/domains/thunder.json
new file mode 100644
index 000000000..927842784
--- /dev/null
+++ b/domains/thunder.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thunderarch",
+ "email": "thunderarch77@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tibor.json b/domains/tibor.json
new file mode 100644
index 000000000..d07b958a5
--- /dev/null
+++ b/domains/tibor.json
@@ -0,0 +1,11 @@
+{
+ "description": "Something for my profile page",
+ "repo": "https://github.com/tibor309/tibor309.github.io",
+ "owner": {
+ "username": "tibor309",
+ "email": "haxite@proton.me"
+ },
+ "record": {
+ "CNAME": "tibor309.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/tien.json b/domains/tien.json
index 3ef6c7248..f0cfc7687 100644
--- a/domains/tien.json
+++ b/domains/tien.json
@@ -4,7 +4,7 @@
"email": "tien2309n@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tiger15cub.json b/domains/tiger15cub.json
new file mode 100644
index 000000000..d155e02e7
--- /dev/null
+++ b/domains/tiger15cub.json
@@ -0,0 +1,10 @@
+{
+ "description": "Tiger15cub.is-a.dev",
+ "owner": {
+ "username": "katopiler",
+ "email": "peterderbyshire11@gmail.com"
+ },
+ "record": {
+ "CNAME": "strxfhcpoliykgujnhfrdthcgv0pkiyhugjh5rtf.duckdns.org"
+ }
+}
diff --git a/domains/tikter.json b/domains/tikter.json
deleted file mode 100644
index 374a24c6f..000000000
--- a/domains/tikter.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "njanemmu",
- "email": "aneenababu71901@gmail.com"
- },
- "record": {
- "CNAME": "c14c2346-1c5a-4bf0-b9dc-d47fc8263e86.id.repl.co"
- }
-}
diff --git a/domains/tim-q.json b/domains/tim-q.json
deleted file mode 100644
index 73c8fd2a4..000000000
--- a/domains/tim-q.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My personal portfolio",
- "owner": {
- "username": "tim-it-ger",
- "email": "contact@tim-q.de",
- "discord": "Vatic#0920"
- },
- "record": {
- "CNAME": "tim-q.de"
- }
-}
diff --git a/domains/time.json b/domains/time.json
index b3eec57b5..f268a50e5 100644
--- a/domains/time.json
+++ b/domains/time.json
@@ -4,7 +4,7 @@
"email": "tangkeehee2002@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/timka.json b/domains/timka.json
deleted file mode 100644
index 758922f27..000000000
--- a/domains/timka.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "timka.space",
- "repo": "https://github.com/timka-123/timka-123.github.io",
- "owner": {
- "username": "Timur",
- "email": "vakzn@yandex.ru"
- },
- "record": {
- "CNAME": "timka.space"
- }
-}
diff --git a/domains/tin.json b/domains/tin.json
index 4c7ec4cee..9a82e27e8 100644
--- a/domains/tin.json
+++ b/domains/tin.json
@@ -4,7 +4,7 @@
"email": "marmeladenjunge+2nd@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tinergy.json b/domains/tinergy.json
index 547ad6a68..eecce6108 100644
--- a/domains/tinergy.json
+++ b/domains/tinergy.json
@@ -4,7 +4,7 @@
"email": "goh_z@live.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tinny.json b/domains/tinny.json
new file mode 100644
index 000000000..9543b6a02
--- /dev/null
+++ b/domains/tinny.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TinnyTerr",
+ "email": "lewis.j.mcdonald@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tisch.json b/domains/tisch.json
deleted file mode 100644
index 729de9526..000000000
--- a/domains/tisch.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Small-talking",
- "email": "schreiber.robin@icloud.com"
- },
- "record": {
- "CNAME": "isadev.pages.dev"
- }
-}
diff --git a/domains/tito.json b/domains/tito.json
deleted file mode 100644
index 0e0b10f9a..000000000
--- a/domains/tito.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "MyNameIsTito",
- "email": "tito@kzg.gg"
- },
- "record": {
- "CNAME": "isadev.mynameistito.com"
- }
-}
diff --git a/domains/tiuri.json b/domains/tiuri.json
deleted file mode 100644
index 5879ab145..000000000
--- a/domains/tiuri.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "because im an dev",
- "repo": "https://github.com/ituir",
- "owner": {
- "username": "ituir",
- "email": "tiuri@server.tiuri.be"
- },
- "record": {
- "A": ["212.227.129.140"]
- }
-}
diff --git a/domains/tk.json b/domains/tk.json
deleted file mode 100644
index 04e1c7299..000000000
--- a/domains/tk.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "thaddeuskkr",
- "email": "thaddeuskkr@gmail.com"
- },
-
- "record": {
- "A": ["138.2.69.79"]
- }
-}
diff --git a/domains/tm-incognito.json b/domains/tm-incognito.json
index 1532b27df..92e3e60bb 100644
--- a/domains/tm-incognito.json
+++ b/domains/tm-incognito.json
@@ -4,7 +4,7 @@
"email": "jumbokalied@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
diff --git a/domains/toan.json b/domains/toan.json
index 154345f91..ae1e98664 100644
--- a/domains/toan.json
+++ b/domains/toan.json
@@ -1,10 +1,9 @@
{
- "description": "Hashnode Blog",
- "repo": "https://github.com/ductoanvo",
"owner": {
- "username": "ductoanvo",
- "email": "toan@duck.com"
+ "username": "toanducvo",
+ "email": "toan.ducvo@icloud.com"
},
+
"record": {
"CNAME": "hashnode.network"
}
diff --git a/domains/toasta.json b/domains/toasta.json
index 9643baad3..9713c6420 100644
--- a/domains/toasta.json
+++ b/domains/toasta.json
@@ -4,7 +4,7 @@
"email": "nolanp678@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/toasted.json b/domains/toasted.json
index 7e62e0afb..ddf8e8eb1 100644
--- a/domains/toasted.json
+++ b/domains/toasted.json
@@ -1,13 +1,13 @@
{
"description": "official website of toastedtoast",
- "repo": "https://github.com/ToastedDev/toastify.tk-v2",
+ "repo": "https://github.com/ToastedDev/toasted.dev",
"owner": {
- "username": "ToastifyDev",
- "email": "hey@toastify.tk",
+ "username": "ToastedDev",
+ "email": "hey@toasted.dev",
"twitter": "toasteddev",
- "discord": "plasticaxolotl"
+ "discord": "nottca"
},
"record": {
- "CNAME": "toasted.pages.dev"
+ "URL": "https://toasted.dev"
}
}
diff --git a/domains/toastersticks.json b/domains/toastersticks.json
deleted file mode 100644
index 35f67fb89..000000000
--- a/domains/toastersticks.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ToasterSticks",
- "email": "matt.zhao.18@gmail.com"
- },
-
- "record": {
- "CNAME": "border.hop.io"
- }
-}
diff --git a/domains/tobey.json b/domains/tobey.json
deleted file mode 100644
index 12354712f..000000000
--- a/domains/tobey.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Tobey is a dev",
- "repo": "https://github.com/yebot",
- "owner": {
- "username": "yebot",
- "email": "tobeyforsman@gmail.com"
- },
- "record": {
- "URL": "https://twitter.com/TobeyForsman"
- }
-}
diff --git a/domains/todo.json b/domains/todo.json
deleted file mode 100644
index 08dd37752..000000000
--- a/domains/todo.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "api for my bot",
- "repo": "https://github.com/brawlie/todo",
- "owner": {
- "username": "brawlie",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "ea156b14-963b-49f8-9d6e-f3fff240029c.repl.co"
- }
-}
diff --git a/domains/tokiakasu.json b/domains/tokiakasu.json
deleted file mode 100644
index e6d665872..000000000
--- a/domains/tokiakasu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tokiakasu",
- "email": "crxpp@protonmail.com"
- },
- "record": {
- "A": ["95.163.12.169"]
- }
-}
diff --git a/domains/tokisaki.json b/domains/tokisaki.json
deleted file mode 100644
index cf8601fee..000000000
--- a/domains/tokisaki.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Enterprise ID Website",
- "repo": "https://github.com/Enterprise-ID",
- "owner": {
- "username": "enterpriseid",
- "email": "enterprise.id13@gmail.com"
- },
- "record": {
- "CNAME": "tokisaki.xyz"
- }
-}
diff --git a/domains/tolis.json b/domains/tolis.json
deleted file mode 100644
index d88401ff1..000000000
--- a/domains/tolis.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "TolisDev Blog",
- "owner": {
- "username": "tolisdev",
- "email": "apostolos@tolisuwu.xyz"
- },
- "record": {
- "A": ["167.235.239.76"]
- }
-}
diff --git a/domains/tomdavid.json b/domains/tomdavid.json
deleted file mode 100644
index 321ee0d95..000000000
--- a/domains/tomdavid.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tomasdav9",
- "email": "tomasdav9@gmail.com"
- },
- "record": {
- "CNAME": "gatsbyportfolio23972.gatsbyjs.io"
- }
-}
diff --git a/domains/tomgxz.json b/domains/tomgxz.json
index 07e8dcdea..36a879fcf 100644
--- a/domains/tomgxz.json
+++ b/domains/tomgxz.json
@@ -4,6 +4,6 @@
"email": "tomgxz138@gmail.com"
},
"record": {
- "URL": "https://tomgxz.repl.co"
+ "CNAME": "cv3cgzx7.up.railway.app"
}
}
diff --git a/domains/tomokat.json b/domains/tomokat.json
new file mode 100644
index 000000000..3b94da13b
--- /dev/null
+++ b/domains/tomokat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tomokat",
+ "email": "wataru2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "tomokat.github.io"
+ }
+}
diff --git a/domains/tonycolston.json b/domains/tonycolston.json
deleted file mode 100644
index 43cee1708..000000000
--- a/domains/tonycolston.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Tony Colston's site",
- "repo": "https://github.com/tonetheman",
- "owner": {
- "username": "tonetheman",
- "email": "tonetheman@gmail.com"
- },
- "record": {
- "CNAME": "tonycolston.com"
- }
-}
diff --git a/domains/tools.json b/domains/tools.json
new file mode 100644
index 000000000..271cae80e
--- /dev/null
+++ b/domains/tools.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asma019",
+ "email": "asmaparvin019@gmail.com"
+ },
+ "record": {
+ "CNAME": "asma019.github.io"
+ }
+}
diff --git a/domains/topher.json b/domains/topher.json
index f25285564..59e3a9d24 100644
--- a/domains/topher.json
+++ b/domains/topher.json
@@ -4,7 +4,7 @@
"email": "christopherwk210@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tosh.json b/domains/tosh.json
new file mode 100644
index 000000000..8d03715b1
--- /dev/null
+++ b/domains/tosh.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "description": "Portifolio Website",
+ "repo": "https://github.com/shellcodegroup/antony_bahati_portfolio",
+ "username": "shellcodegroup",
+ "email": "shellcodegroup@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/tovade.json b/domains/tovade.json
deleted file mode 100644
index d4299693d..000000000
--- a/domains/tovade.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My personal portfolio",
- "repo": "https://github.com/tovade",
- "owner": {
- "username": "tovade",
- "email": "support@tovade.ml"
- },
- "record": {
- "CNAME": "tovade.ml"
- }
-}
diff --git a/domains/tpglitch.json b/domains/tpglitch.json
index 0364bc2ca..c00ed4f67 100644
--- a/domains/tpglitch.json
+++ b/domains/tpglitch.json
@@ -4,7 +4,7 @@
"email": "tylerkinney50@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tpke.json b/domains/tpke.json
index 202061ec1..a3ef4ebbe 100644
--- a/domains/tpke.json
+++ b/domains/tpke.json
@@ -4,7 +4,7 @@
"email": "zeroratedtm@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/tr1x.json b/domains/tr1x.json
new file mode 100644
index 000000000..25f622268
--- /dev/null
+++ b/domains/tr1x.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tr1xem",
+ "email": "kmtechnical2006@gmail.com"
+ },
+ "record": {
+ "CNAME": "lawliet.tk"
+ }
+}
diff --git a/domains/tr1xem.json b/domains/tr1xem.json
new file mode 100644
index 000000000..b7a0c8ce8
--- /dev/null
+++ b/domains/tr1xem.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "tr1xem",
+ "email": "kmtechnical2006@gmail.com",
+ "discord": "885063317079592961"
+ },
+
+ "record": {
+ "CNAME": "lawliet.tk"
+ }
+ }
+
diff --git a/domains/tracker-brawley.json b/domains/tracker-brawley.json
deleted file mode 100644
index abd5f57a8..000000000
--- a/domains/tracker-brawley.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "a website for my biotapi",
- "repo": "https://github.com/brawlie/todo",
- "owner": {
- "username": "brawlie",
- "email": "tojoeleeofficial@gmail.com"
- },
- "record": {
- "CNAME": "aa1b3bae-e49b-4efd-8c55-28719da5f58c.repl.co"
- }
-}
diff --git a/domains/trailblazertech.json b/domains/trailblazertech.json
index 21aa904de..deff46931 100644
--- a/domains/trailblazertech.json
+++ b/domains/trailblazertech.json
@@ -4,7 +4,7 @@
"email": "trailblazire@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/trapdev.json b/domains/trapdev.json
deleted file mode 100644
index c0419b598..000000000
--- a/domains/trapdev.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Add some description",
- "repo": "https://github.com/voidx999/trapdevweb",
- "owner": {
- "username": "voidx999",
- "email": "vodlsreal@gmail.com"
- },
- "record": {
- "CNAME": "451189ea-5d97-4b3c-9ff1-874973386ae1.id.repl.co"
- }
-}
diff --git a/domains/trasadiyasmeet.json b/domains/trasadiyasmeet.json
index afbd109a8..a0acc45e8 100644
--- a/domains/trasadiyasmeet.json
+++ b/domains/trasadiyasmeet.json
@@ -4,7 +4,7 @@
"email": "21bph115@nirmauni.ac.in"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/trivee.json b/domains/trivee.json
deleted file mode 100644
index be84994d2..000000000
--- a/domains/trivee.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TrivCodez",
- "email": "Jayeshpoudel+ha@outlook.com"
- },
- "record": {
- "CNAME": "5c99ec37-6759-4d76-94ab-dec4af0be7cc.id.repl.co"
- }
-}
diff --git a/domains/trueuser.json b/domains/trueuser.json
index f46933019..8d49812d5 100644
--- a/domains/trueuser.json
+++ b/domains/trueuser.json
@@ -4,6 +4,6 @@
"email": "thisistrueemail@gmail.com"
},
"record": {
- "CNAME": "trueuser.up.railway.app"
+ "CNAME": "proxy.private.danbot.host"
}
}
diff --git a/domains/trung.json b/domains/trung.json
new file mode 100644
index 000000000..fd93ed512
--- /dev/null
+++ b/domains/trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-website-emr.pages.dev"
+ }
+}
diff --git a/domains/trvs.json b/domains/trvs.json
new file mode 100644
index 000000000..d1cdd9b8b
--- /dev/null
+++ b/domains/trvs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "traviebb",
+ "email": "trvsmusicofficial@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/trvsmusic.json b/domains/trvsmusic.json
new file mode 100644
index 000000000..d1cdd9b8b
--- /dev/null
+++ b/domains/trvsmusic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "traviebb",
+ "email": "trvsmusicofficial@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/trypt.json b/domains/trypt.json
new file mode 100644
index 000000000..c4ed967de
--- /dev/null
+++ b/domains/trypt.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FractalH",
+ "email": "tryptamine@privacyrequired.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tsic404.json b/domains/tsic404.json
deleted file mode 100644
index 48bb5a267..000000000
--- a/domains/tsic404.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "tsic404 personal website",
- "repo": "https://github.com/tsic404/blog",
- "owner": {
- "username": "tsic404",
- "email": "tsicliu@foxmail.com"
- },
- "record": {
- "CNAME": "tsic.top"
- }
-}
diff --git a/domains/tts.deva.json b/domains/tts.deva.json
deleted file mode 100644
index 5194aa0a1..000000000
--- a/domains/tts.deva.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "turbomaster95",
- "email": "devamidhun.3c.kmbvm@gmail.com"
- },
-
- "record": {
- "CNAME": "48c10554-32ea-4bc5-98f8-5f062b511ad1.id.repl.co"
- }
-}
diff --git a/domains/tube.json b/domains/tube.json
deleted file mode 100644
index 80c9601a0..000000000
--- a/domains/tube.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "t-ub3",
- "email": "martini@tubee.dev"
- },
- "record": {
- "URL": "https://tub3.uk"
- }
-}
diff --git a/domains/tw.json b/domains/tw.json
new file mode 100644
index 000000000..681643fd1
--- /dev/null
+++ b/domains/tw.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tw31122007",
+ "email": "tw31122007@googlemail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/twisted.json b/domains/twisted.json
new file mode 100644
index 000000000..93cad3dd5
--- /dev/null
+++ b/domains/twisted.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TwistVibed",
+ "email": "gamerdragon971@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/twitter.json b/domains/twitter.json
deleted file mode 100644
index 583ce9bc8..000000000
--- a/domains/twitter.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "j0code",
- "discord": "j0code",
- "email": ""
- },
- "record": {
- "CNAME": "cohalejoja.selfhost.eu"
- }
-}
diff --git a/domains/tyler.json b/domains/tyler.json
index f67068490..033fcccd4 100644
--- a/domains/tyler.json
+++ b/domains/tyler.json
@@ -1,11 +1,14 @@
{
- "description": "Tyler McCarthy is a Developer!",
- "repo": "https://github.com/tmccarthyj",
"owner": {
- "username": "tmccarthyj",
- "email": "tyler@tjm.dev"
+ "username": "G2C-DC",
+ "email": "tylercalumacker@gmail.com"
},
"record": {
- "CNAME": "tjm.dev"
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/tylermw.json b/domains/tylermw.json
deleted file mode 100644
index 51ede12fd..000000000
--- a/domains/tylermw.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TylerMWise",
- "email": "tylermwise.tm@gmail.com"
- },
- "record": {
- "CNAME": "r.forwarddomain.net"
- }
-}
diff --git a/domains/tyman.json b/domains/tyman.json
deleted file mode 100644
index 08c0a3dbe..000000000
--- a/domains/tyman.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Tyman's personal developer website",
- "repo": "https://github.com/TymanWasTaken/tyman.tech",
- "owner": {
- "username": "TymanWasTaken",
- "email": "",
- "discord": "Tyman#7318"
- },
- "record": {
- "CNAME": "tyman.tech"
- }
-}
diff --git a/domains/typeling1578.json b/domains/typeling1578.json
new file mode 100644
index 000000000..c71a007b9
--- /dev/null
+++ b/domains/typeling1578.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "typeling1578",
+ "email": "pub@typeling1578.dev"
+ },
+ "record": {
+ "URL": "https://typeling1578.dev"
+ }
+}
diff --git a/domains/typicalne.json b/domains/typicalne.json
deleted file mode 100644
index b2fe731b0..000000000
--- a/domains/typicalne.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "TypicalShavonne",
- "email": "tranhuonghp1972@gmail.com"
- },
-
- "record": {
- "A": ["66.118.234.244"]
- }
-}
diff --git a/domains/tzvika.json b/domains/tzvika.json
index c0f4851b4..bac8f8d45 100644
--- a/domains/tzvika.json
+++ b/domains/tzvika.json
@@ -4,7 +4,7 @@
"email": "tzvika.ofek@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ukirio.json b/domains/ukirio.json
index 68422ca70..84fa55566 100644
--- a/domains/ukirio.json
+++ b/domains/ukirio.json
@@ -4,7 +4,7 @@
"email": "u8k50850@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/ukrio.json b/domains/ukrio.json
index 68422ca70..92431fb1c 100644
--- a/domains/ukrio.json
+++ b/domains/ukrio.json
@@ -1,11 +1,27 @@
{
"owner": {
"username": "ukrioo",
- "email": "u8k50850@gmail.com"
+ "email": "u8k50850@gmail.com",
+ "discord": "ukrio",
+ "twitter": "@ukrio"
},
"record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all",
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ]
}
}
diff --git a/domains/ultrix.json b/domains/ultrix.json
index 6c986115d..4941e43a1 100644
--- a/domains/ultrix.json
+++ b/domains/ultrix.json
@@ -4,7 +4,7 @@
"email": "pollardjackson@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/umar.json b/domains/umar.json
new file mode 100644
index 000000000..70f8f8740
--- /dev/null
+++ b/domains/umar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Croosh",
+ "email": "mineeaamir@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/unchained.json b/domains/unchained.json
index 6b9f7870b..3a64984b4 100644
--- a/domains/unchained.json
+++ b/domains/unchained.json
@@ -4,7 +4,7 @@
"email": "yusuf_in@outlook.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/uniclicker2.m1dnight.json b/domains/uniclicker2.m1dnight.json
deleted file mode 100644
index 3e04b8dd0..000000000
--- a/domains/uniclicker2.m1dnight.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "UniClicker2 Based in JS",
- "repo": "https://UniClicker-2-Webveiw-Edition.m1dnightdev.repl.co",
- "owner": {
- "username": "M1dnight",
- "email": "m1dnightgmrofficial@gmail.com"
- },
- "record": {
- "CNAME": "2b82bbc0-2fa0-40ac-89fe-530e73b20c0b.id.repl.co"
- }
-}
diff --git a/domains/unixtz.json b/domains/unixtz.json
index dda3ac1a1..6580dddf2 100644
--- a/domains/unixtz.json
+++ b/domains/unixtz.json
@@ -4,7 +4,7 @@
"email": "abdulhaulerashid@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/unknown-user2.json b/domains/unknown-user2.json
deleted file mode 100644
index 54a3eb5a9..000000000
--- a/domains/unknown-user2.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My website",
- "repo": "https://github.com/Unknown-User2/Unknown-User2.github.io",
- "owner": {
- "username": "Unknown-User2",
- "email": "unknown.us3r222@gmail.com"
- },
- "record": {
- "CNAME": "Unknown-User2.github.io"
- }
-}
diff --git a/domains/unknowncheats.json b/domains/unknowncheats.json
index afa1025f7..0db9311ef 100644
--- a/domains/unknowncheats.json
+++ b/domains/unknowncheats.json
@@ -4,7 +4,7 @@
"email": "opkinshuk09@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/uptime.stefdp.json b/domains/uptime.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/uptime.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/uptime.trung.json b/domains/uptime.trung.json
new file mode 100644
index 000000000..d2832a9c2
--- /dev/null
+++ b/domains/uptime.trung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vuthanhtrung2010",
+ "email": "vuthanhtrungsuper@gmail.com"
+ },
+ "record": {
+ "CNAME": "manage.uptime.trung.is-a.dev"
+ }
+}
diff --git a/domains/urgent.afcu.json b/domains/urgent.afcu.json
new file mode 100644
index 000000000..14438577e
--- /dev/null
+++ b/domains/urgent.afcu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "afcunotify",
+ "email": "rockkahan12@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/urgent.afcubanking.json b/domains/urgent.afcubanking.json
new file mode 100644
index 000000000..14438577e
--- /dev/null
+++ b/domains/urgent.afcubanking.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "afcunotify",
+ "email": "rockkahan12@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/usakhil.json b/domains/usakhil.json
new file mode 100644
index 000000000..b98d275e9
--- /dev/null
+++ b/domains/usakhil.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "usakhil121",
+ "email": "usakhil121@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "usakhil121.github.io"
+ }
+}
diff --git a/domains/useflame.json b/domains/useflame.json
new file mode 100644
index 000000000..7dd69f8e5
--- /dev/null
+++ b/domains/useflame.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "useflameclient",
+ "email": "aimloqrtamar@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/useless.json b/domains/useless.json
deleted file mode 100644
index aa9cacbfc..000000000
--- a/domains/useless.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ItzAfroBoy",
- "email": "me.caramackid@gmail.com"
- },
- "record": {
- "A": ["209.250.230.249"]
- }
-}
diff --git a/domains/user.nqdev.json b/domains/user.nqdev.json
index 2cbbfef3d..b305e2dee 100644
--- a/domains/user.nqdev.json
+++ b/domains/user.nqdev.json
@@ -4,7 +4,7 @@
"email": "nguyenquy.1096@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/username.json b/domains/username.json
deleted file mode 100644
index 2c24fc84c..000000000
--- a/domains/username.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A custom portfolio website for me",
- "repo": "https://replit.com/@DragonRoyale/personalA",
- "owner": {
- "username": "DragonRoyal",
- "email": "aarav.singhania50@gmail.com"
- },
- "record": {
- "CNAME": "c7054742-05bd-453b-b5fd-d3ed47ee0215.id.repl.co"
- }
-}
diff --git a/domains/usman.json b/domains/usman.json
deleted file mode 100644
index 67bffaa86..000000000
--- a/domains/usman.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Usman's personal developer website",
- "repo": "https://github.com/umahmood21",
- "owner": {
- "username": "umahmood21",
- "email": "umahmood214@gmail.com"
- },
- "record": {
- "CNAME": "umahmood.me"
- }
-}
diff --git a/domains/utility.icevixen.json b/domains/utility.icevixen.json
index 11ce7ceb0..a7d7f03da 100644
--- a/domains/utility.icevixen.json
+++ b/domains/utility.icevixen.json
@@ -4,7 +4,7 @@
"email": "f2v74yt@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/utkn.json b/domains/utkn.json
new file mode 100644
index 000000000..ad1758064
--- /dev/null
+++ b/domains/utkn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "utkn",
+ "email": "39ph4f87a@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/utsavsingh.json b/domains/utsavsingh.json
index 9492c5289..ab45fbd72 100644
--- a/domains/utsavsingh.json
+++ b/domains/utsavsingh.json
@@ -4,7 +4,7 @@
"email": "singhutsavofficial@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/v0.json b/domains/v0.json
new file mode 100644
index 000000000..f8783b001
--- /dev/null
+++ b/domains/v0.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "YoruAkio",
+ "email": "yoruakio@proton.me"
+ },
+ "record": {
+ "CNAME": "vo-kio.pages.dev"
+ }
+}
diff --git a/domains/v2ray.vi0leta.json b/domains/v2ray.vi0leta.json
index 97299bd43..ea691c545 100644
--- a/domains/v2ray.vi0leta.json
+++ b/domains/v2ray.vi0leta.json
@@ -4,6 +4,6 @@
"email": "vi0leta@riseup.net"
},
"record": {
- "A": ["158.101.199.231"]
+ "A": ["37.27.4.76"]
}
}
diff --git a/domains/va1dee.json b/domains/va1dee.json
index 54e96c903..332618686 100644
--- a/domains/va1dee.json
+++ b/domains/va1dee.json
@@ -4,7 +4,7 @@
"email": "vldslv.prydatko@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vacer.json b/domains/vacer.json
new file mode 100644
index 000000000..b04df1eb1
--- /dev/null
+++ b/domains/vacer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Strongboost",
+ "email": "gigantenjaeger.junior@gmail.com"
+ },
+ "record": {
+ "A": ["5.253.246.227"]
+ }
+}
diff --git a/domains/vachanmn.json b/domains/vachanmn.json
index 114845c5e..90196c860 100644
--- a/domains/vachanmn.json
+++ b/domains/vachanmn.json
@@ -5,6 +5,6 @@
},
"record": {
- "A": ["185.199.108.153"]
+ "URL": "https://vachanmn.tech"
}
}
diff --git a/domains/vadimhl.json b/domains/vadimhl.json
deleted file mode 100644
index bb179f069..000000000
--- a/domains/vadimhl.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "My site",
- "owner": {
- "username": "vadimhl",
- "email": "vadimhl@gmail.com"
- },
- "record": {
- "A": ["130.61.49.110"]
- }
-}
diff --git a/domains/ayvanov.json b/domains/vaginessa.json
similarity index 54%
rename from domains/ayvanov.json
rename to domains/vaginessa.json
index 1d8e7bb5f..0d48f08d8 100644
--- a/domains/ayvanov.json
+++ b/domains/vaginessa.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "ayvanov",
- "email": "xanderinho@gmail.com"
+ "username": "vaginessa",
+ "email": "vanni@f5.si"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vaibhv.json b/domains/vaibhv.json
deleted file mode 100644
index 4a01fe844..000000000
--- a/domains/vaibhv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "vaibhavharsoda",
- "email": "vaibhavharsoda77@gmail.com"
- },
- "record": {
- "CNAME": "vaibhavharsoda.github.io"
- }
-}
diff --git a/domains/valswap.json b/domains/valswap.json
deleted file mode 100644
index 0ee2c1a72..000000000
--- a/domains/valswap.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "daflixy",
- "email": "andy.gilbert.uk99@gmail.com"
- },
-
- "record": {
- "CNAME": "50064ad8-eb2d-4d8d-8e1c-62d0bd99b448.id.repl.co"
- }
-}
diff --git a/domains/vamsi.json b/domains/vamsi.json
deleted file mode 100644
index 7a9882f10..000000000
--- a/domains/vamsi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "vamsieth",
- "email": "svamsi.tech@gmail.com"
- },
- "record": {
- "CNAME": "240d43d7-5eea-4fdd-a568-efa5978f8d80.id.repl.co"
- }
-}
diff --git a/domains/var.json b/domains/var.json
index 901d5d04d..e4d7af640 100644
--- a/domains/var.json
+++ b/domains/var.json
@@ -4,7 +4,7 @@
"email": "LZT7@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/varexity.json b/domains/varexity.json
new file mode 100644
index 000000000..d150f9b17
--- /dev/null
+++ b/domains/varexity.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "varexity",
+ "email": "varexity@gmail.com"
+ },
+ "record": {
+ "CNAME": "varexity.github.io"
+ }
+}
diff --git a/domains/varun.json b/domains/varun.json
new file mode 100644
index 000000000..a841e16cd
--- /dev/null
+++ b/domains/varun.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "varun-chaudhary",
+ "email": "varunc105@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/varunhere.json b/domains/varunhere.json
new file mode 100644
index 000000000..279fa9028
--- /dev/null
+++ b/domains/varunhere.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "drzanon",
+ "email": "varunc105j@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vasilismylonas.json b/domains/vasilismylonas.json
deleted file mode 100644
index bfe2ccc69..000000000
--- a/domains/vasilismylonas.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "VasilisMylonas",
- "email": "vasilismylonas@protonmail.com"
- },
-
- "record": {
- "CNAME": "vasilismylonas.github.io"
- }
-}
diff --git a/domains/veer.json b/domains/veer.json
index 8b720e5f5..2439a6ff7 100644
--- a/domains/veer.json
+++ b/domains/veer.json
@@ -1,9 +1,11 @@
{
"owner": {
- "username": "TheVeerRana",
- "email": "hello@veer.codes"
+ "username": "vpt-dev",
+ "email": "veerhp@gmail.com"
},
"record": {
- "CNAME": "veer.codes"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/venkateshpagdikar.json b/domains/venkateshpagdikar.json
index 2e779acdd..bab7dfa73 100644
--- a/domains/venkateshpagdikar.json
+++ b/domains/venkateshpagdikar.json
@@ -4,7 +4,7 @@
"email": "venkateshpagdikar8@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/venox.json b/domains/venox.json
new file mode 100644
index 000000000..e92356fac
--- /dev/null
+++ b/domains/venox.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "V-E-N-O-X",
+ "email": "akd.bd880@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/verse.json b/domains/verse.json
new file mode 100644
index 000000000..4e6a7710f
--- /dev/null
+++ b/domains/verse.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ClicpoW",
+ "email": "clicpowytb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/versions.johna.json b/domains/versions.johna.json
new file mode 100644
index 000000000..1c3d6aa1e
--- /dev/null
+++ b/domains/versions.johna.json
@@ -0,0 +1,11 @@
+{
+ "description": "A list of previous designs for my website",
+ "repo": "https://github.com/Johna-123/site-versions",
+ "owner": {
+ "username": "Johna-123",
+ "email": "j-verstraaten@hotmail.com"
+ },
+ "record": {
+ "CNAME": "version-johna.pages.dev"
+ }
+}
diff --git a/domains/verstandlxs.json b/domains/verstandlxs.json
new file mode 100644
index 000000000..d81eae974
--- /dev/null
+++ b/domains/verstandlxs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "byKeksYT",
+ "email": "community@verstandlxs.de"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vertex.json b/domains/vertex.json
new file mode 100644
index 000000000..57135ae77
--- /dev/null
+++ b/domains/vertex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ltong4867",
+ "email": "ltong4867@inst.hcpss.org"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vhd.json b/domains/vhd.json
index a3fa82d7a..c523b7e5b 100644
--- a/domains/vhd.json
+++ b/domains/vhd.json
@@ -4,7 +4,7 @@
"email": "dotrealvhd@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vi0leta.json b/domains/vi0leta.json
index bbcd415dd..784e44261 100644
--- a/domains/vi0leta.json
+++ b/domains/vi0leta.json
@@ -5,6 +5,6 @@
},
"record": {
- "A": ["158.101.199.231"]
+ "A": ["37.27.4.76"]
}
}
diff --git a/domains/vian.json b/domains/vian.json
index 89eaff968..9afebc9db 100644
--- a/domains/vian.json
+++ b/domains/vian.json
@@ -4,7 +4,7 @@
"email": "erel.ersahin@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vibez.json b/domains/vibez.json
new file mode 100644
index 000000000..7093d6f62
--- /dev/null
+++ b/domains/vibez.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PayDash",
+ "email": "Theoneand200@gmail.com"
+ },
+ "record": {
+ "CNAME": "paydash.github.io"
+ }
+}
diff --git a/domains/victoris.json b/domains/victoris.json
new file mode 100644
index 000000000..dfdb91c79
--- /dev/null
+++ b/domains/victoris.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "victorgeel",
+ "email": "freevpn537@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/victorisgeek.json b/domains/victorisgeek.json
new file mode 100644
index 000000000..dfdb91c79
--- /dev/null
+++ b/domains/victorisgeek.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "victorgeel",
+ "email": "freevpn537@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/victormenezes.json b/domains/victormenezes.json
deleted file mode 100644
index 5d71da6f5..000000000
--- a/domains/victormenezes.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Victor Menezes Personal Website",
- "repo": "https://github.com/teixeiravictor/my-blog",
- "owner": {
- "username": "teixeiravictor",
- "email": "victormenezes8990@gmail.com"
- },
- "record": {
- "A": ["168.220.95.204"]
- }
-}
diff --git a/domains/viggu.json b/domains/viggu.json
deleted file mode 100644
index 2a48b2dfd..000000000
--- a/domains/viggu.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "VIGGU-7",
- "email": "vigneshofficialyt@gmail.com",
- "twitter": "VIGGU_8"
- },
- "record": {
- "CNAME": "0177c904-af82-4e29-a07f-f5b89af06586.id.repl.co"
- }
-}
diff --git a/domains/vigo.json b/domains/vigo.json
deleted file mode 100644
index ea7dc3370..000000000
--- a/domains/vigo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "thanphong19",
- "email": "thanphong19@gmail.com"
- },
- "record": {
- "A": ["168.138.167.184"]
- }
-}
diff --git a/domains/vikas-mahi.json b/domains/vikas-mahi.json
new file mode 100644
index 000000000..20b6ec5dc
--- /dev/null
+++ b/domains/vikas-mahi.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "vikas-mahi",
+ "email": "1vikasmahi@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vikkubaliga.json b/domains/vikkubaliga.json
new file mode 100644
index 000000000..92706f8b4
--- /dev/null
+++ b/domains/vikkubaliga.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vikkubaligas",
+ "email": "vikkubaligatmp@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/villagerbrine.json b/domains/villagerbrine.json
new file mode 100644
index 000000000..f75df9179
--- /dev/null
+++ b/domains/villagerbrine.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "villagerBrine",
+ "email": "villagerBrine@gmail.com"
+ },
+ "record": {
+ "A": ["129.146.140.85"]
+ }
+}
diff --git a/domains/vin-decoder.json b/domains/vin-decoder.json
new file mode 100644
index 000000000..04fc6d572
--- /dev/null
+++ b/domains/vin-decoder.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "IvanAshikhin",
+ "email": "ashikhinivan18@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vincent-cly.json b/domains/vincent-cly.json
index beda63ece..24b7003a1 100644
--- a/domains/vincent-cly.json
+++ b/domains/vincent-cly.json
@@ -4,7 +4,7 @@
"email": "vchku413@connect.hku.hk"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vineet-khemnani.json b/domains/vineet-khemnani.json
index ee41af2b2..827f1263c 100644
--- a/domains/vineet-khemnani.json
+++ b/domains/vineet-khemnani.json
@@ -4,7 +4,7 @@
"email": "vineetkhemnani09@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/viniciusmanoel.json b/domains/viniciusmanoel.json
deleted file mode 100644
index e16a8c31a..000000000
--- a/domains/viniciusmanoel.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "vncsmnl",
- "email": "viniciusmanoel07@hotmail.com"
- },
-
- "record": {
- "CNAME": "viniciusmanoel.ml"
- }
-}
diff --git a/domains/viraj.json b/domains/viraj.json
index 5099b81fd..2397070b5 100644
--- a/domains/viraj.json
+++ b/domains/viraj.json
@@ -1,11 +1,11 @@
{
"owner": {
"username": "Viraj2722",
- "email": "virajwalavalkar90982@gmail.com",
- "twitter": "WalavalkarViraj"
+ "email": "virajwalavalkar90982@gmail.com"
},
- "description": "my website",
"record": {
- "CNAME": "viraj2722.github.io"
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/vishok.json b/domains/vishok.json
index 410168790..15316ef6a 100644
--- a/domains/vishok.json
+++ b/domains/vishok.json
@@ -4,7 +4,7 @@
"email": "mvishok2005@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vishwa.json b/domains/vishwa.json
index 34a40edc1..cc296ef66 100644
--- a/domains/vishwa.json
+++ b/domains/vishwa.json
@@ -4,7 +4,7 @@
"email": "vprabhath937@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/visionavtr.json b/domains/visionavtr.json
index b817b2fed..e07ba26eb 100644
--- a/domains/visionavtr.json
+++ b/domains/visionavtr.json
@@ -4,7 +4,7 @@
"email": "lada_862@mail.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vivek.2k.json b/domains/vivek.2k.json
new file mode 100644
index 000000000..67466d604
--- /dev/null
+++ b/domains/vivek.2k.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vi2k6",
+ "email": "Vivektvp1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vixcord.json b/domains/vixcord.json
new file mode 100644
index 000000000..946dbe7a9
--- /dev/null
+++ b/domains/vixcord.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AbsolutelyNothingAndNoOne",
+ "email": "tinakiss2234@gmail.com"
+ },
+ "record": {
+ "URL": "https://defensiveunluckystate.mkds.repl.co/"
+ }
+}
diff --git a/domains/vlab.json b/domains/vlab.json
deleted file mode 100644
index e1f5ebcc5..000000000
--- a/domains/vlab.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal Website",
- "repo": "https://github.com/natura4917",
- "owner": {
- "username": "natura4917",
- "email": "natura4917@gmail.com"
- },
- "record": {
- "A": ["152.67.216.65"]
- }
-}
diff --git a/domains/vleov.json b/domains/vleov.json
index af154117a..965db554d 100644
--- a/domains/vleov.json
+++ b/domains/vleov.json
@@ -4,7 +4,7 @@
"email": "leo.goetz2008@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vo.json b/domains/vo.json
new file mode 100644
index 000000000..f8783b001
--- /dev/null
+++ b/domains/vo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "YoruAkio",
+ "email": "yoruakio@proton.me"
+ },
+ "record": {
+ "CNAME": "vo-kio.pages.dev"
+ }
+}
diff --git a/domains/void6670.json b/domains/void6670.json
deleted file mode 100644
index 3ed67ade2..000000000
--- a/domains/void6670.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "void6670",
- "email": "kevik744@gmail.com"
- },
- "record": {
- "CNAME": "3faecb26-e13c-4b63-8790-68bd9c21cc6b.id.repl.co"
- }
-}
diff --git a/domains/voidlesh.json b/domains/voidlesh.json
new file mode 100644
index 000000000..d1bd3dce2
--- /dev/null
+++ b/domains/voidlesh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Voidlesh",
+ "email": "levi.maiwald@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/voldemort.json b/domains/voldemort.json
index bb5000598..f85a91db5 100644
--- a/domains/voldemort.json
+++ b/domains/voldemort.json
@@ -4,7 +4,7 @@
"email": "vertesivv@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/voltic.json b/domains/voltic.json
new file mode 100644
index 000000000..6ecc00cd1
--- /dev/null
+++ b/domains/voltic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HarpyLMAO",
+ "email": "harpymclol@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/voonyuan.json b/domains/voonyuan.json
index 61e408cf6..ecec34106 100644
--- a/domains/voonyuan.json
+++ b/domains/voonyuan.json
@@ -4,7 +4,7 @@
"email": "voonyuan11@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/vsc.stefdp.json b/domains/vsc.stefdp.json
new file mode 100644
index 000000000..7a920dce5
--- /dev/null
+++ b/domains/vsc.stefdp.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "admin@stefdp.is-a.dev",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "A": [
+ "109.71.252.37"
+ ]
+ }
+}
diff --git a/domains/vt-d.json b/domains/vt-d.json
index 684c1504d..3aeff48e4 100644
--- a/domains/vt-d.json
+++ b/domains/vt-d.json
@@ -4,7 +4,7 @@
"email": "poonipapatv@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wade-cheng.json b/domains/wade-cheng.json
new file mode 100644
index 000000000..757d6d8cf
--- /dev/null
+++ b/domains/wade-cheng.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wade-cheng",
+ "email": "wadecheng3301@gmail.com"
+ },
+ "record": {
+ "CNAME": "wade-cheng.github.io"
+ }
+}
diff --git a/domains/wadeslider.json b/domains/wadeslider.json
deleted file mode 100644
index ea1ffc0b0..000000000
--- a/domains/wadeslider.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "WadeSlider",
- "email": "alexisarturodh@gmail.com"
- },
- "record": {
- "CNAME": "wadeslider.pages.dev"
- }
-}
diff --git a/domains/wallp.json b/domains/wallp.json
deleted file mode 100644
index 2dea4bbdc..000000000
--- a/domains/wallp.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "gregcorp",
- "email": "grogy9202@gmail.com"
- },
-
- "record": {
- "CNAME": "wallpmaster.eu.org"
- }
-}
diff --git a/domains/wang.json b/domains/wang.json
index fd02ae2df..e31dd3760 100644
--- a/domains/wang.json
+++ b/domains/wang.json
@@ -4,7 +4,7 @@
"email": "Real.Shid.999@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wangjoui.json b/domains/wangjoui.json
index 66b9329d2..38484d437 100644
--- a/domains/wangjoui.json
+++ b/domains/wangjoui.json
@@ -4,7 +4,7 @@
"email": "trieuvy5ghz@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wankhede.json b/domains/wankhede.json
index d26b45d0e..747e159da 100644
--- a/domains/wankhede.json
+++ b/domains/wankhede.json
@@ -4,7 +4,7 @@
"email": "abhiwa6@protonmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wansie.json b/domains/wansie.json
deleted file mode 100644
index e6a147a94..000000000
--- a/domains/wansie.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "wansie1",
- "email": "msc2tvdn@duck.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 962788530336178236"
- },
-
- "record": {
- "CNAME": "2cf5a77a-3918-4448-ba3e-e1d73a99155f.id.repl.co"
- }
-}
diff --git a/domains/wap.json b/domains/wap.json
index 92e7cb91e..c2ee58540 100644
--- a/domains/wap.json
+++ b/domains/wap.json
@@ -4,7 +4,7 @@
"email": "hifund@yandex.ru"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/warvan.json b/domains/warvan.json
new file mode 100644
index 000000000..43bd53bf1
--- /dev/null
+++ b/domains/warvan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "node-warvan",
+ "email": "irvaaanfauzi1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wasabi.json b/domains/wasabi.json
deleted file mode 100644
index 0c8dae976..000000000
--- a/domains/wasabi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "WasabiThumb",
- "email": "wasabithumbs@gmail.com"
- },
-
- "record": {
- "CNAME": "wasabicodes.xyz"
- }
-}
diff --git a/domains/weatherly.json b/domains/weatherly.json
deleted file mode 100644
index b451439de..000000000
--- a/domains/weatherly.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "iibeboQ",
- "email": "qqqbeboo@yahoo.com"
- },
-
- "record": {
- "CNAME": "6b592936-765b-4034-8e0e-d2be0efcacff.id.repl.co"
- }
-}
diff --git a/domains/web-design-zone.json b/domains/web-design-zone.json
new file mode 100644
index 000000000..5caa14ab7
--- /dev/null
+++ b/domains/web-design-zone.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sabbir875",
+ "email": "mastermail99999@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/web-sh.sx9.json b/domains/web-sh.sx9.json
deleted file mode 100644
index f7f0e6184..000000000
--- a/domains/web-sh.sx9.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SX-9",
- "email": "hello@mail.sx9.is-a.dev"
- },
- "record": {
- "CNAME": "sx-9.github.io"
- }
-}
diff --git a/domains/webmail.chiragnahata.json b/domains/webmail.chiragnahata.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/webmail.chiragnahata.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/webmail.mrjunkyz.json b/domains/webmail.mrjunkyz.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/webmail.mrjunkyz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/webmail.noteswallah.json b/domains/webmail.noteswallah.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/webmail.noteswallah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/webmail.teamcodearc.json b/domains/webmail.teamcodearc.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/webmail.teamcodearc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/webmail.zerow.json b/domains/webmail.zerow.json
deleted file mode 100644
index 353e7e8a0..000000000
--- a/domains/webmail.zerow.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DevZerow",
- "email": "zerow.pro@protonmail.com"
- },
-
- "record": {
- "A": ["92.118.207.191"]
- }
-}
diff --git a/domains/webmarshalls.json b/domains/webmarshalls.json
new file mode 100644
index 000000000..2efdcb618
--- /dev/null
+++ b/domains/webmarshalls.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "WebMarshalls",
+ "email": "ndirangusteven131@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/wesley.json b/domains/wesley.json
deleted file mode 100644
index c57b76641..000000000
--- a/domains/wesley.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/westhecool/register",
- "owner": {
- "username": "westhecool",
- "email": "wesley@wmail.eu.org"
- },
- "record": {
- "CNAME": "cname-alt-mail-server.sv1.wesdns.cf"
- }
-}
diff --git a/domains/wheels35.json b/domains/wheels35.json
deleted file mode 100644
index a31794be0..000000000
--- a/domains/wheels35.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Wheels35",
- "email": "Wheels35@outlook.com"
- },
- "record": {
- "CNAME": "wheels35.com"
- }
-}
diff --git a/domains/whinny.json b/domains/whinny.json
new file mode 100644
index 000000000..2af9ee419
--- /dev/null
+++ b/domains/whinny.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Razer5624",
+ "email": "hajimesiyyachiyyo@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/whyamilikethis.json b/domains/whyamilikethis.json
deleted file mode 100644
index 92f42020d..000000000
--- a/domains/whyamilikethis.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Hazard2008",
- "email": "rimuru.tempest.4138@outlook.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/wibu.json b/domains/wibu.json
index 84c551334..a978b39c4 100644
--- a/domains/wibu.json
+++ b/domains/wibu.json
@@ -4,7 +4,7 @@
"email": "admin@yukinoshita.web.id"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wibuapi.json b/domains/wibuapi.json
deleted file mode 100644
index ee7ccebcc..000000000
--- a/domains/wibuapi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "zYxDevs",
- "email": "ahmadzaylani001@gmail.com"
- },
- "record": {
- "CNAME": "wibuapi.onrender.com"
- }
-}
diff --git a/domains/william.json b/domains/william.json
index 74ee0d3ed..d7e3070f6 100644
--- a/domains/william.json
+++ b/domains/william.json
@@ -1,10 +1,12 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
+ "username": "wdhdev",
"email": "william@williamharrison.dev"
},
"record": {
- "CNAME": "hosts.is-a.dev"
+ "A": ["51.161.54.161"],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
diff --git a/domains/williamsebastian.json b/domains/williamsebastian.json
index 2c091c5c9..bfcde4110 100644
--- a/domains/williamsebastian.json
+++ b/domains/williamsebastian.json
@@ -4,7 +4,7 @@
"email": "baseparody@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/willothy.json b/domains/willothy.json
deleted file mode 100644
index b117237fd..000000000
--- a/domains/willothy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "willothy",
- "email": "willothyh@gmail.com"
- },
- "record": {
- "URL": "https://willothy.com"
- }
-}
diff --git a/domains/willy.json b/domains/willy.json
deleted file mode 100644
index 51b5b078f..000000000
--- a/domains/willy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "neutrobox",
- "email": "neutrobox@gmail.com"
- },
- "record": {
- "A": ["217.174.245.249"],
- "MX": ["hosts.is-a.dev"],
- "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
- }
-}
\ No newline at end of file
diff --git a/domains/winniepat.json b/domains/winniepat.json
index 573a55433..97023cd6b 100644
--- a/domains/winniepat.json
+++ b/domains/winniepat.json
@@ -4,7 +4,7 @@
"email": "wc92226@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/winter.json b/domains/winter.json
deleted file mode 100644
index 3a385cc2a..000000000
--- a/domains/winter.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "virtualWinter",
- "email": "me@winter-is-a-dev.ml"
- },
- "record": {
- "A": ["45.14.224.83"]
- }
-}
diff --git a/domains/winters.json b/domains/winters.json
new file mode 100644
index 000000000..53c87b753
--- /dev/null
+++ b/domains/winters.json
@@ -0,0 +1,12 @@
+{
+ "description": "This subdomain would be used as my personal portfolio website and also as a blogging website wherein i'll write about web security topics and CTF challenges",
+ "repo": "https://github.com/winters0x64/winters0x64.github.io",
+ "owner": {
+ "username": "winters0x64",
+ "email": "arun0x168codes@gmail.com",
+ "twitter": "ArunKr1shnan"
+ },
+ "record": {
+ "CNAME": "winters0x64.github.io"
+ }
+}
diff --git a/domains/wizard.json b/domains/wizard.json
new file mode 100644
index 000000000..f8ca65bab
--- /dev/null
+++ b/domains/wizard.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Rxflex",
+ "email": "andreysuew@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wizq.json b/domains/wizq.json
index eee2c3cb5..e39ce057b 100644
--- a/domains/wizq.json
+++ b/domains/wizq.json
@@ -1,9 +1,12 @@
{
- "owner": {
- "username": "Wizqdev",
- "email": "prajwal2079@gmail.com"
- },
- "record": {
- "A": ["63.141.249.43"]
+ "owner": {
+ "username": "Wizqdev",
+ "email": "prajwal2079@gmail.com",
+ "discord": "778254181303451658"
+ },
+
+ "record": {
+ "CNAME": "proxy.private.danbot.host"
+ }
}
-}
+
\ No newline at end of file
diff --git a/domains/wm.json b/domains/wm.json
new file mode 100644
index 000000000..7c1c9f373
--- /dev/null
+++ b/domains/wm.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "cmdwm",
+ "email": "will@willm.xyz"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wolflangtw.json b/domains/wolflangtw.json
index 58d976e80..d619083a4 100644
--- a/domains/wolflangtw.json
+++ b/domains/wolflangtw.json
@@ -4,7 +4,7 @@
"email": "wolflang.channel@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wonder.json b/domains/wonder.json
deleted file mode 100644
index af600958b..000000000
--- a/domains/wonder.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "wonderlandpark",
- "email": "wonderlandpark@callisto.team"
- },
- "record": {
- "CNAME": "is-a.wonder.im"
- }
-}
diff --git a/domains/woofer.json b/domains/woofer.json
new file mode 100644
index 000000000..8dcda58b2
--- /dev/null
+++ b/domains/woofer.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "WooferTheWoof",
+ "email": "ivceball@gmail.com",
+ "discord": "wooferthywoof"
+ },
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
+ }
+}
diff --git a/domains/woxdev.json b/domains/woxdev.json
index 39534e75b..013e8514f 100644
--- a/domains/woxdev.json
+++ b/domains/woxdev.json
@@ -4,7 +4,7 @@
"email": "januardhodicky06@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wuspico.json b/domains/wuspico.json
new file mode 100644
index 000000000..f179058a4
--- /dev/null
+++ b/domains/wuspico.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wuspicodev",
+ "email": "wuspico@gmail.com"
+ },
+ "record": {
+ "URL": "https://wus.dragox.id.vn/"
+ }
+}
diff --git a/domains/www.amulyasingh.json b/domains/www.amulyasingh.json
index 397c34f77..e2571d9b8 100644
--- a/domains/www.amulyasingh.json
+++ b/domains/www.amulyasingh.json
@@ -4,7 +4,7 @@
"email": "ytamulya77@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/wzrd.json b/domains/wzrd.json
new file mode 100644
index 000000000..e8000e1fd
--- /dev/null
+++ b/domains/wzrd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rxflex",
+ "email": "andreysuew@gmail.com"
+ },
+ "record": {
+ "CNAME": "russia1.route.pp.ua"
+ }
+}
diff --git a/domains/x3ric.json b/domains/x3ric.json
index 961b4cbc6..0f8780973 100644
--- a/domains/x3ric.json
+++ b/domains/x3ric.json
@@ -4,7 +4,7 @@
"email": "ericxaime@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xabdoat.json b/domains/xabdoat.json
new file mode 100644
index 000000000..6f37ab9c2
--- /dev/null
+++ b/domains/xabdoat.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "xAbdoAT",
+ "email": "ABDO199877@gmail.com",
+ "discord": "943662778433032242"
+ },
+
+ "record": {
+ "CNAME": "xabdoat.github.io"
+ }
+ }
+
diff --git a/domains/xander.json b/domains/xander.json
new file mode 100644
index 000000000..0c711ea8f
--- /dev/null
+++ b/domains/xander.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Xanderxx69",
+ "email": "xanderhogan13@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xcut.json b/domains/xcut.json
new file mode 100644
index 000000000..05beaa829
--- /dev/null
+++ b/domains/xcut.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "IQBooster",
+ "email": "martinskyler829@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xcyth.json b/domains/xcyth.json
deleted file mode 100644
index 4e4e02607..000000000
--- a/domains/xcyth.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Xcyth",
- "email": "xcyth.dev@gmail.com"
- },
- "record": {
- "CNAME": "proxy.kastelapp.com"
- }
-}
diff --git a/domains/xenoxanite.json b/domains/xenoxanite.json
new file mode 100644
index 000000000..54576903e
--- /dev/null
+++ b/domains/xenoxanite.json
@@ -0,0 +1,11 @@
+{
+ "description": "Xenoxanite portfolio",
+ "repo": "https://github.com/xenoxanite/xenoxanite.github.io",
+ "owner": {
+ "username": "xenoxanite",
+ "email": "xenoxanite@gmail.com"
+ },
+ "record": {
+ "CNAME": "xenoxanite.github.io"
+ }
+}
diff --git a/domains/xian.json b/domains/xian.json
index 917ce7eef..dbae5eaa5 100644
--- a/domains/xian.json
+++ b/domains/xian.json
@@ -4,7 +4,7 @@
"email": "xian.docdocil@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xiaozhe.json b/domains/xiaozhe.json
index aa26a5890..56c0f72d4 100644
--- a/domains/xiaozhe.json
+++ b/domains/xiaozhe.json
@@ -4,7 +4,7 @@
"email": "meps105195@go.edu.tw"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xiaozhu2007.json b/domains/xiaozhu2007.json
new file mode 100644
index 000000000..7e0e8f26d
--- /dev/null
+++ b/domains/xiaozhu2007.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "xiaozhu2007",
+ "email": "lz19986912007@163.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xikofornai.json b/domains/xikofornai.json
new file mode 100644
index 000000000..188744106
--- /dev/null
+++ b/domains/xikofornai.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "99ogx",
+ "email": "kr060535@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xinfull.json b/domains/xinfull.json
index 635e90072..72d409779 100644
--- a/domains/xinfull.json
+++ b/domains/xinfull.json
@@ -4,7 +4,7 @@
"email": "robertkitunda89@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xiro.json b/domains/xiro.json
index 91edd91ed..823dcad7f 100644
--- a/domains/xiro.json
+++ b/domains/xiro.json
@@ -1,8 +1,8 @@
{
"owner": {
"username": "XiroXD",
- "email": "creaperhunter531@gmail.com",
- "discord": "Xiro#0001"
+ "email": "xiro@duck.com",
+ "discord": "owofied"
},
"record": {
"CNAME": "personal-page-3ps.pages.dev"
diff --git a/domains/xkotelek.json b/domains/xkotelek.json
new file mode 100644
index 000000000..7e886d9e4
--- /dev/null
+++ b/domains/xkotelek.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "xKotelek",
+ "email": "contact@kotelek.dev"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xndr.json b/domains/xndr.json
deleted file mode 100644
index e33a1bc83..000000000
--- a/domains/xndr.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Xandrrrr's CDN",
- "repo": "https://github.com/Xander1233",
- "owner": {
- "username": "Xander1233",
- "email": "",
- "twitter": "XandrrrrR6"
- },
- "record": {
- "A": ["173.249.30.209"]
- }
-}
diff --git a/domains/xorisx.json b/domains/xorisx.json
index 48a745462..1574a8324 100644
--- a/domains/xorisx.json
+++ b/domains/xorisx.json
@@ -4,7 +4,7 @@
"email": "68936a@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xoronium.json b/domains/xoronium.json
new file mode 100644
index 000000000..2c4adf330
--- /dev/null
+++ b/domains/xoronium.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "xoronium",
+ "email": "theglocksaint1535@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xorro.json b/domains/xorro.json
new file mode 100644
index 000000000..a2a94a22b
--- /dev/null
+++ b/domains/xorro.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "crllect",
+ "email": "crllect@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xos.json b/domains/xos.json
deleted file mode 100644
index 47647b918..000000000
--- a/domains/xos.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jacksoncraft859",
- "email": "pollardjackson@outlook.com"
- },
- "record": {
- "CNAME": "xos.is-cool.dev"
- }
-}
diff --git a/domains/xosjs.json b/domains/xosjs.json
deleted file mode 100644
index 3502d726c..000000000
--- a/domains/xosjs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jacksoncraft859",
- "email": "pollardjackson@outlook.com"
- },
- "record": {
- "CNAME": "acc468f2-4bc9-4dfa-8059-bc9edf2eb513.id.repl.co"
- }
-}
diff --git a/domains/xpplg.json b/domains/xpplg.json
deleted file mode 100644
index 5e6839946..000000000
--- a/domains/xpplg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Jantur-dev",
- "email": "jantur29@gmail.com"
- },
- "record": {
- "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co"
- }
-}
diff --git a/domains/xqwtxon.json b/domains/xqwtxon.json
deleted file mode 100644
index dfc09f59b..000000000
--- a/domains/xqwtxon.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Programmer since 2016, Reverse-Engineer since 2019, I do a lot of Minecraft-related things.",
- "repo": "https;//github.com/xqwtxon/website",
- "owner": {
- "username": "xqwtxon",
- "email": "xqwtxon@hotmail.com",
- "twitter": "xqwtxon",
- "keybase": "xqwtxon"
- },
- "record": {
- "CNAME": "xqwtxon.ml"
- }
-}
diff --git a/domains/xram.json b/domains/xram.json
new file mode 100644
index 000000000..bf17ec0a0
--- /dev/null
+++ b/domains/xram.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "azcraze",
+ "email": "ash.zeit@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xuanwu.json b/domains/xuanwu.json
index 14200571f..9781f7b44 100644
--- a/domains/xuanwu.json
+++ b/domains/xuanwu.json
@@ -4,7 +4,7 @@
"email": "vluxyue@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/xzfrost.json b/domains/xzfrost.json
deleted file mode 100644
index 055d3d0cf..000000000
--- a/domains/xzfrost.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "XzFrosT",
- "email": "mschodeihsan@gmail.com"
- },
- "record": {
- "CNAME": "ihsanhardiansah.me"
- }
-}
diff --git a/domains/xzz.json b/domains/xzz.json
new file mode 100644
index 000000000..585244a4f
--- /dev/null
+++ b/domains/xzz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xzzjs",
+ "email": "andrea.andrea1009olp@gmail.com"
+ },
+ "record": {
+ "A": ["34.111.254.92"]
+ }
+}
diff --git a/domains/yacoreq.json b/domains/yacoreq.json
new file mode 100644
index 000000000..88aa196ac
--- /dev/null
+++ b/domains/yacoreq.json
@@ -0,0 +1,13 @@
+
+{
+ "description": "yacoreq is a dev",
+ "repo": "https://github.com/yacoreq/yacoreq.github.io",
+ "owner": {
+ "username": "yacoreq",
+ "email": "yacoreq@gmail.com",
+ "discord": "685845264417816611"
+ },
+ "record": {
+ "A": ["136.243.156.120"]
+ }
+}
diff --git a/domains/yairmedina.json b/domains/yairmedina.json
index 77c870165..d84d370e3 100644
--- a/domains/yairmedina.json
+++ b/domains/yairmedina.json
@@ -4,7 +4,7 @@
"email": "spam.me.please.do.it@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yakisan.json b/domains/yakisan.json
new file mode 100644
index 000000000..14f859630
--- /dev/null
+++ b/domains/yakisan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "efeyksn",
+ "email": "mefeyakisan@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yash-khattar.json b/domains/yash-khattar.json
index 26520e320..6dec7f9bc 100644
--- a/domains/yash-khattar.json
+++ b/domains/yash-khattar.json
@@ -4,7 +4,7 @@
"email": "yashkhattar73@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yashwardhan.json b/domains/yashwardhan.json
index ee445f4c1..00ea8aed3 100644
--- a/domains/yashwardhan.json
+++ b/domains/yashwardhan.json
@@ -4,7 +4,7 @@
"email": "yashwardhan333666@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yc-gen.json b/domains/yc-gen.json
new file mode 100644
index 000000000..63164b131
--- /dev/null
+++ b/domains/yc-gen.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Marsi591",
+ "email": "marsi591707@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ycyanx.json b/domains/ycyanx.json
deleted file mode 100644
index 96343e997..000000000
--- a/domains/ycyanx.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "yCyanxW's Website for Information!",
- "repo": "https://github.com/yCyanxW/ycyanx.github-io",
- "owner": {
- "username": "yCyanxW",
- "email": "ycyanxandxantham@gmail.com"
- },
- "record": {
- "CNAME": "59a8d912-6eac-4a09-97c0-a319d88b2b50.repl.co"
- }
-}
diff --git a/domains/yef.json b/domains/yef.json
new file mode 100644
index 000000000..c3cf60175
--- /dev/null
+++ b/domains/yef.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "idislikeapples",
+ "email": "jeremyq33@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yes.json b/domains/yes.json
new file mode 100644
index 000000000..dfdb91c79
--- /dev/null
+++ b/domains/yes.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "victorgeel",
+ "email": "freevpn537@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yfa.json b/domains/yfa.json
new file mode 100644
index 000000000..4d6218eb2
--- /dev/null
+++ b/domains/yfa.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha", "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "CNAME": "yfa-cev.pages.dev"
+ }
+}
diff --git a/domains/yfadev.json b/domains/yfadev.json
new file mode 100644
index 000000000..8ee16d3b3
--- /dev/null
+++ b/domains/yfadev.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "URL": "https://github.com/yfadev"
+ }
+}
diff --git a/domains/yieldray.json b/domains/yieldray.json
new file mode 100644
index 000000000..e2a9351cc
--- /dev/null
+++ b/domains/yieldray.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YieldRay",
+ "email": "yieldray@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yigitkerem.json b/domains/yigitkerem.json
deleted file mode 100644
index 7c89496f3..000000000
--- a/domains/yigitkerem.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "yigitkeremoktay",
- "email": "yigitkerem@theskyfallen.com"
- },
-
- "record": {
- "MX": ["novea.skyfallen.org"],
- "A": ["178.62.63.235"]
- }
-}
diff --git a/domains/yiyi.json b/domains/yiyi.json
index 3be8043e0..397b37a1c 100644
--- a/domains/yiyi.json
+++ b/domains/yiyi.json
@@ -4,7 +4,7 @@
"email": "646042371@qq.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yodeput.json b/domains/yodeput.json
new file mode 100644
index 000000000..a8deecf01
--- /dev/null
+++ b/domains/yodeput.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yodeput",
+ "email": "yodeput@gmail.com"
+ },
+ "record": {
+ "A": ["168.138.187.54"]
+ }
+}
diff --git a/domains/yogi.json b/domains/yogi.json
new file mode 100644
index 000000000..a8deecf01
--- /dev/null
+++ b/domains/yogi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yodeput",
+ "email": "yodeput@gmail.com"
+ },
+ "record": {
+ "A": ["168.138.187.54"]
+ }
+}
diff --git a/domains/yogidputra.json b/domains/yogidputra.json
new file mode 100644
index 000000000..a8deecf01
--- /dev/null
+++ b/domains/yogidputra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yodeput",
+ "email": "yodeput@gmail.com"
+ },
+ "record": {
+ "A": ["168.138.187.54"]
+ }
+}
diff --git a/domains/yoitsrt.json b/domains/yoitsrt.json
index 4109556f7..683ae61a9 100644
--- a/domains/yoitsrt.json
+++ b/domains/yoitsrt.json
@@ -4,7 +4,7 @@
"email": "rustytrim11@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/youfoundalpha.json b/domains/youfoundalpha.json
new file mode 100644
index 000000000..2e76caa50
--- /dev/null
+++ b/domains/youfoundalpha.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "alpha@alpha.is-a.dev",
+ "Discord": "661121998830960651",
+ "Twitter": "YouFoundAlpha",
+ "GitHub": "YouFoundAlpha",
+ "GitLab": "YouFoundAlpha",
+ "Mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "URL": "https://alpha.is-a.dev"
+ }
+}
diff --git a/domains/yourfriend.json b/domains/yourfriend.json
deleted file mode 100644
index a1993fc96..000000000
--- a/domains/yourfriend.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Yourfriend's Introduction",
- "repo": "https://github.com/yourfriend",
- "owner": {
- "username": "yourfriend",
- "email": "friend@yourfriend.lv"
- },
- "record": {
- "CNAME": "yourfriend.lv"
- }
-}
diff --git a/domains/yourmom.json b/domains/yourmom.json
index 8a6294146..adb8a3df9 100644
--- a/domains/yourmom.json
+++ b/domains/yourmom.json
@@ -4,7 +4,7 @@
"email": "ojedallopezangel@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/chase.json b/domains/yousefzidan.json
similarity index 54%
rename from domains/chase.json
rename to domains/yousefzidan.json
index 561111d69..33417de64 100644
--- a/domains/chase.json
+++ b/domains/yousefzidan.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "trir44",
- "email": "621969@kernhigh.org"
+ "username": "0x0jx",
+ "email": "0x0jx@proton.me"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/youssef.json b/domains/youssef.json
index ad3bd6dd6..65c2532d1 100644
--- a/domains/youssef.json
+++ b/domains/youssef.json
@@ -4,7 +4,7 @@
"email": "szeropercent@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yozie.json b/domains/yozie.json
new file mode 100644
index 000000000..e674f39d2
--- /dev/null
+++ b/domains/yozie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YozieB",
+ "email": "mrfreeze987@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yozieb.json b/domains/yozieb.json
new file mode 100644
index 000000000..e674f39d2
--- /dev/null
+++ b/domains/yozieb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YozieB",
+ "email": "mrfreeze987@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yozieeee.json b/domains/yozieeee.json
new file mode 100644
index 000000000..e674f39d2
--- /dev/null
+++ b/domains/yozieeee.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YozieB",
+ "email": "mrfreeze987@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yt-dl.json b/domains/yt-dl.json
deleted file mode 100644
index 035c6c584..000000000
--- a/domains/yt-dl.json
+++ /dev/null
@@ -1,12 +0,0 @@
-
- {
- "owner": {
- "username": "Noma4321",
- "email": "noam.malka1yt@gmail.com"
- },
-
- "record": {
- "CNAME": "YoutubeDownloader.noma4321.repl.co"
- }
- }
-
\ No newline at end of file
diff --git a/domains/yt.amulyasingh.json b/domains/yt.amulyasingh.json
new file mode 100644
index 000000000..77aeb7865
--- /dev/null
+++ b/domains/yt.amulyasingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AMULYASing",
+ "email": "amulyasingh370@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ytdl.mrj.json b/domains/ytdl.mrj.json
new file mode 100644
index 000000000..21d629caf
--- /dev/null
+++ b/domains/ytdl.mrj.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MRJ-Badshah",
+ "email": "illegalhacker2.0@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/yuki.json b/domains/yuki.json
index 15820aa00..427dde50c 100644
--- a/domains/yuki.json
+++ b/domains/yuki.json
@@ -4,7 +4,7 @@
"email": "mejmayfoof@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yumi.json b/domains/yumi.json
new file mode 100644
index 000000000..ecee8e7ba
--- /dev/null
+++ b/domains/yumi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yuminanase",
+ "email": "akosifujiph@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yurikawa.json b/domains/yurikawa.json
deleted file mode 100644
index 2c11ee304..000000000
--- a/domains/yurikawa.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "For my Anime Images API",
- "repo": "https://github.com/KASKUSTTV",
- "owner": {
- "username": "KASKUSTTV",
- "email": "kaskus45@protonmail.com"
- },
- "record": {
- "A": ["164.132.74.251", "164.132.75.251", "164.132.76.251", "164.132.77.251"]
- }
-}
diff --git a/domains/yuyu.json b/domains/yuyu.json
index 3395877b8..f3bb3e125 100644
--- a/domains/yuyu.json
+++ b/domains/yuyu.json
@@ -4,7 +4,7 @@
"email": "Jesus71236gaming@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/yyw.json b/domains/yyw.json
index 710e5c0b2..362dad048 100644
--- a/domains/yyw.json
+++ b/domains/yyw.json
@@ -4,7 +4,7 @@
"email": "yyw.981031@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/z4ff.json b/domains/z4ff.json
deleted file mode 100644
index b4c7c644d..000000000
--- a/domains/z4ff.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "my website",
- "owner": {
- "username": "z4ff",
- "email": "z3ffdebunked@gmail.com"
- },
- "record": {
- "CNAME": "0c0ac41f-740d-47d1-b813-f75e5f5a5800.repl.co"
- }
-}
diff --git a/domains/zeazolf.json b/domains/zeazolf.json
new file mode 100644
index 000000000..2397e8492
--- /dev/null
+++ b/domains/zeazolf.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ZeaZolf",
+ "email": "ZeaZolfPc@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zelriano36.json b/domains/zelriano36.json
new file mode 100644
index 000000000..f9d126a70
--- /dev/null
+++ b/domains/zelriano36.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zelriano36",
+ "email": "bastien.salvetat@gmail.com"
+ },
+ "record": {
+ "CNAME": "zelriano36.github.io"
+ }
+}
diff --git a/domains/zemerik.json b/domains/zemerik.json
new file mode 100644
index 000000000..3d8fff8b0
--- /dev/null
+++ b/domains/zemerik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Zemerik",
+ "email": "zemerikY@gmail.com"
+ },
+ "record": {
+ "CNAME": "zemerik.github.io"
+ }
+}
diff --git a/domains/zenjahid.json b/domains/zenjahid.json
new file mode 100644
index 000000000..7ef18a1bb
--- /dev/null
+++ b/domains/zenjahid.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zenjahid",
+ "email": "mdjahidul.haque.7@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zenoxcloud.json b/domains/zenoxcloud.json
deleted file mode 100644
index 3ee47ff7f..000000000
--- a/domains/zenoxcloud.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "coolhighzzz",
- "email": "neuralbyteshost@gmail.com"
- },
- "record": {
- "A": ["188.241.54.112"]
- }
-}
diff --git a/domains/zeor154.json b/domains/zeor154.json
deleted file mode 100644
index 4648786f2..000000000
--- a/domains/zeor154.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Zeor154",
- "email": "driop12bu@gmail.com"
- },
- "record": {
- "A": ["45.130.141.88"]
- }
-}
diff --git a/domains/zephyr.json b/domains/zephyr.json
new file mode 100644
index 000000000..3f8ee46f7
--- /dev/null
+++ b/domains/zephyr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ALVINTAN159",
+ "email": "alvintan159@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zepvil.json b/domains/zepvil.json
index 08cbfca6e..467684947 100644
--- a/domains/zepvil.json
+++ b/domains/zepvil.json
@@ -4,7 +4,7 @@
"email": "thezepvil@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/zer0.json b/domains/zer0.json
new file mode 100644
index 000000000..f38d7fbb3
--- /dev/null
+++ b/domains/zer0.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Zer0Dev-exe",
+ "email": "zero",
+ "discord": "817515739711406140"
+ },
+
+ "record": {
+ "CNAME": "zer0dev-exe.github.io"
+ }
+ }
+
diff --git a/domains/zerobun.json b/domains/zerobun.json
new file mode 100644
index 000000000..4adae4bfb
--- /dev/null
+++ b/domains/zerobun.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "zerobun",
+ "email": "tareku2003@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zeroratedtm.json b/domains/zeroratedtm.json
index 202061ec1..a3ef4ebbe 100644
--- a/domains/zeroratedtm.json
+++ b/domains/zeroratedtm.json
@@ -4,7 +4,7 @@
"email": "zeroratedtm@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/zerowho.json b/domains/zerowho.json
deleted file mode 100644
index c037473d1..000000000
--- a/domains/zerowho.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ZeroDev's personal developer website",
- "repo": "https://github.com/TadashiKazuo",
- "owner": {
- "username": "TadashiKazuo",
- "email": "kudo.andrew.2005@gmail.com"
- },
- "record": {
- "CNAME": "andrewnoob.tk"
- }
-}
diff --git a/domains/zervo.json b/domains/zervo.json
new file mode 100644
index 000000000..6de0d6e47
--- /dev/null
+++ b/domains/zervo.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "DarindaDraX",
+ "email": "123kishanvish@gmail.com"
+ },
+ "record": {
+ "A": [
+ "217.174.245.249",
+ "51.161.54.161"
+ ],
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zffu.json b/domains/zffu.json
deleted file mode 100644
index d616e3eff..000000000
--- a/domains/zffu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Radi0o",
- "email": "radi0o0@outlook.com"
- },
- "record": {
- "CNAME": "zffu.ml"
- }
-}
diff --git a/domains/zh4ck.json b/domains/zh4ck.json
new file mode 100644
index 000000000..a3e185122
--- /dev/null
+++ b/domains/zh4ck.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zh4ck",
+ "email": "zhacxk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zhaiguangpeng.json b/domains/zhaiguangpeng.json
deleted file mode 100644
index dfc79bef5..000000000
--- a/domains/zhaiguangpeng.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "coopercoder",
- "email": "whitetiger0127@163.com"
- },
- "record": {
- "CNAME": "zhaiguangpeng.love"
- }
-}
diff --git a/domains/zhougonglai.json b/domains/zhougonglai.json
index 48663a97c..c4a8c0b77 100644
--- a/domains/zhougonglai.json
+++ b/domains/zhougonglai.json
@@ -4,7 +4,7 @@
"email": "838048635@qq.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/zhxck.json b/domains/zhxck.json
index 391961f23..a3e185122 100644
--- a/domains/zhxck.json
+++ b/domains/zhxck.json
@@ -4,7 +4,7 @@
"email": "zhacxk@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/zhycorp.json b/domains/zhycorp.json
deleted file mode 100644
index 18b542cfa..000000000
--- a/domains/zhycorp.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A simple non-static site for Zhycorp",
- "repo": "https://github.com/zhycorp",
- "owner": {
- "username": "zhycorp",
- "email": "support@zhycorp.xyz"
- },
- "record": {
- "CNAME": "rd73mzgq7jp59yq0.preview.edgeapp.net"
- }
-}
diff --git a/domains/zine.json b/domains/zine.json
deleted file mode 100644
index 1a098ead6..000000000
--- a/domains/zine.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "muandane",
- "email": "zmoualhi@outlook.com"
- },
- "record": {
- "URL": "https://muandane.github.io/portfolio/"
- }
-}
diff --git a/domains/zirconiac.json b/domains/zirconiac.json
new file mode 100644
index 000000000..bbae742ac
--- /dev/null
+++ b/domains/zirconiac.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ZirconiaCubed3v2",
+ "email": "lucian.adzima@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zishan.json b/domains/zishan.json
deleted file mode 100644
index d49be3d94..000000000
--- a/domains/zishan.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "notzishan",
- "discord": "LukeLy#8025",
- "email": "rizwankhan28081979@gmail.com"
- },
- "record": {
- "CNAME": "542e524c-fe94-4ee5-b51a-7ef228234d95.id.repl.co"
- }
-}
diff --git a/domains/ziyad.json b/domains/ziyad.json
new file mode 100644
index 000000000..ffa2413b8
--- /dev/null
+++ b/domains/ziyad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "o-lumix",
+ "email": "lumixofficiel@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "o-lumix.github.io"
+ }
+}
diff --git a/domains/zizibibi.json b/domains/zizibibi.json
new file mode 100644
index 000000000..515e9d62d
--- /dev/null
+++ b/domains/zizibibi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "f4ruk1453decodex",
+ "email": "furk4ncrowley@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zkwinkle.json b/domains/zkwinkle.json
new file mode 100644
index 000000000..e5ce10b0f
--- /dev/null
+++ b/domains/zkwinkle.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zkwinkle",
+ "email": "ignaevc@gmail.com"
+ },
+ "record": {
+ "A": ["198.74.54.85"]
+ }
+}
diff --git a/domains/zly.json b/domains/zly.json
deleted file mode 100644
index 52fd2ce95..000000000
--- a/domains/zly.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "zly",
- "repo": "https://github.com/PythonPlumber/url-shorter",
- "owner": {
- "username": "PythonPlumber",
- "email": "mario.yellow.bea@proton.me"
- },
- "record": {
- "A": ["216.24.57.1"]
- }
-}
diff --git a/domains/zoro.xen.json b/domains/zoro.xen.json
deleted file mode 100644
index 945d57583..000000000
--- a/domains/zoro.xen.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Backend API for t.me/roronoa_zoro_robot",
- "owner": {
- "username": "xenmods",
- "email": "ilumomin04@gmail.com"
- },
- "record": {
- "CNAME": "b6c9cd01-6ea5-4c58-b942-4194bdb11578.cname.koyeb.app"
- }
-}
diff --git a/domains/zoronium.json b/domains/zoronium.json
new file mode 100644
index 000000000..58c9f0545
--- /dev/null
+++ b/domains/zoronium.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thinlayerofice",
+ "email": "zayaanmohammed1535@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zshmeta.json b/domains/zshmeta.json
new file mode 100644
index 000000000..d691e249c
--- /dev/null
+++ b/domains/zshmeta.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zshmeta",
+ "email": "zshmeta@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ztrax.json b/domains/ztrax.json
new file mode 100644
index 000000000..f95b5e6eb
--- /dev/null
+++ b/domains/ztrax.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zTraxDev",
+ "email": "bernardmartinez241@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ztz.json b/domains/ztz.json
deleted file mode 100644
index ba8b643e7..000000000
--- a/domains/ztz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ZTzTopia",
- "email": "zentay36@gmail.com"
- },
-
- "record": {
- "A": ["34.173.97.174"]
- }
-}
diff --git a/domains/ztzt.json b/domains/ztzt.json
new file mode 100644
index 000000000..676909dbe
--- /dev/null
+++ b/domains/ztzt.json
@@ -0,0 +1,12 @@
+{
+ "description": "ztzt.is-a.dev",
+ "repo": "https://github.com/ztztmc/ztztmc.github.io",
+ "owner": {
+ "username": "ztztmc",
+ "email": "2timessharp@gmail.com",
+ "discord": "ztzt"
+ },
+ "record": {
+ "CNAME": "ztztmc.github.io"
+ }
+}
diff --git a/domains/zuntie.json b/domains/zuntie.json
deleted file mode 100644
index 033452dae..000000000
--- a/domains/zuntie.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Zuntie",
- "email": "ZuntieDev@gmail.com"
- },
- "record": {
- "CNAME": "zuntie.github.io"
- }
-}
diff --git a/domains/zwzodo.json b/domains/zwzodo.json
new file mode 100644
index 000000000..b03a2188a
--- /dev/null
+++ b/domains/zwzodo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zwzodo",
+ "email": "zwzodo@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249", "51.161.54.161"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zye.json b/domains/zye.json
index 01b5231c3..636aeb56f 100644
--- a/domains/zye.json
+++ b/domains/zye.json
@@ -4,7 +4,7 @@
"email": "heroxmain@gmail.com"
},
"record": {
- "A": ["217.174.245.249"],
+ "A": ["217.174.245.249", "51.161.54.161"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
diff --git a/domains/zylx.json b/domains/zylx.json
deleted file mode 100644
index 025e5d70d..000000000
--- a/domains/zylx.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Luongzz",
- "email": "buivanluong0204@gmail.com"
- },
- "record": {
- "CNAME": "d60386a4-cb38-44df-b30d-f23ac4a8717a.id.repl.co"
- }
-}
diff --git a/scripts/certbot.sh b/scripts/certbot.sh
index 2ab0447ae..ee84aa6d7 100755
--- a/scripts/certbot.sh
+++ b/scripts/certbot.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-export ENV=production
+export NODE_ENV=production
DRY_RUN=0
if_dry_run() { [[ $DRY_RUN == 1 ]] && echo "$1" || echo "$2"; }
@@ -32,7 +32,7 @@ update_record() {
local name="$3";
local address="$4";
local ttl=${5:-"1"};
- echo "
+ bun -e "
const { domainService } = require('./utils/domain-service');
const { ENV, DOMAIN_DOMAIN } = require('./utils/constants');
const method = '$method';
@@ -57,7 +57,7 @@ update_record() {
}
main().catch(console.error);
- " | node -
+ "
}
update_acme_txt_record() {
@@ -68,6 +68,7 @@ reset_acme() {
sleep 1;
update_record remove TXT '_acme-challenge' '';
update_record remove TXT '_acme-challenge' '';
+ # update_record add CNAME 'www' "is-a-dev.github.io";
}
get_acme() { dig +noall +answer _acme-challenge.is-a.dev TXT | awk '{print $5}'; }
@@ -84,7 +85,6 @@ esac
### STEPS ###
# Run ./scripts/certbot.sh cert
-# Run ./scripts/certbot.sh acme_txt ""
# cp -r /tmp/is-a-dev-whatever /opt/app/code/is-a-dev-cert
# Upload cert.pem and privkey.pem (from config/live/is-a.dev/) contents to SSL > Manage SSL Sites
# Run ./scripts/certbot.sh reset
diff --git a/scripts/migrate.js b/scripts/migrate.js
deleted file mode 100644
index 7ae1c3daa..000000000
--- a/scripts/migrate.js
+++ /dev/null
@@ -1,30 +0,0 @@
-const fs = require('fs');
-const path = require('path');
-const R = require('ramda');
-const { DOMAINS_PATH } = require('../utils/constants');
-
-const migrate = ([file, domain]) => [
- file,
- {
- ...domain,
- record: file !== '@.json' && /\.is-a\.dev$/.test(domain.record.URL || '')
- ? R.dissoc('URL', domain.record)
- : domain.record,
- }
-];
-
-const main = async () => {
- const domains = await fs.promises.readdir(DOMAINS_PATH).then(R.map(async file => [
- file,
- JSON.parse(await fs.promises.readFile(path.join(DOMAINS_PATH, file), 'utf-8')),
- ])).then(ps => Promise.all(ps));
-
- const newDomains = domains.map(migrate);
-
- await Promise.all(newDomains.map(([file, json]) => {
- return fs.promises.writeFile(path.join(DOMAINS_PATH, file), JSON.stringify(json, null, 2));
- }));
-};
-
-main();
-
diff --git a/scripts/register-domains.js b/scripts/register-domains.js
index 370949af6..20670f8af 100644
--- a/scripts/register-domains.js
+++ b/scripts/register-domains.js
@@ -15,7 +15,7 @@ const toHostList = R.chain(data => {
// URL redirection must contain explicit A record
// Wildcard A record breaks when used with MX
// Ref: https://github.com/is-a-dev/register/issues/2365
- if (data.record.URL && data.record.MX) {
+ if ((data.record.URL && data.record.MX) || data.name === '@') {
data.record.A = [ DOMAIN_HOST_IP ]
}
diff --git a/tests/cpanel.test.js b/tests/cpanel.test.js
index d2fbd35a3..162a9a5d3 100644
--- a/tests/cpanel.test.js
+++ b/tests/cpanel.test.js
@@ -12,7 +12,7 @@ describe('Cpanel client', () => {
describe('fetchzonerecords', () => {
it('should make the correct request', async () => {
const fetch = mockFetch((url, request) => {
- expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=a.b&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2');
+ expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=0&domain=a.b&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2');
expect(request).toEqual({
headers: {
Authorization: 'cpanel boy:boybyebye',
@@ -35,7 +35,7 @@ describe('Cpanel client', () => {
it('should make the correct request with query', async () => {
const fetch = mockFetch((url, request) => {
- expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=foobar.boeey&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2');
+ expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=0&domain=foobar.boeey&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2');
expect(request).toEqual({
headers: {
Authorization: 'cpanel boy:boybyebye',
diff --git a/tests/domain-service.test.js b/tests/domain-service.test.js
index 79ea1d1e2..077aa4ea2 100644
--- a/tests/domain-service.test.js
+++ b/tests/domain-service.test.js
@@ -263,8 +263,8 @@ describe('Domain service', () => {
]);
expect(removeZone).toHaveBeenCalledTimes(2);
expect(getRecordCalls(removeZone)).toEqual([
- { line: 2 },
{ line: 3 },
+ { line: 2 },
]);
});
@@ -277,6 +277,9 @@ describe('Domain service', () => {
{ line: 5, name: 'c', type: 'MX', address: 'mx1.hello.com', priority: 20 },
{ line: 6, name: 'c', type: 'MX', address: 'mx2.hello.com', priority: 21 },
{ line: 7, name: 'b', type: 'MX', address: 'foo.bar', priority: 20 },
+ { line: 101, name: 'x', type: 'A', address: '1' },
+ { line: 99, name: 'y', type: 'A', address: '2' },
+ { line: 100, name: 'z', type: 'A', address: '3' },
];
const redirections = [
{ domain: `b.${DOMAIN_DOMAIN}`, destination: 'https://foobar.com' },
@@ -306,8 +309,11 @@ describe('Domain service', () => {
{ name: 'b', type: 'A', address: '3' },
{ name: 'd', type: 'CNAME', address: 'helo.com' },
]);
- expect(removeZone).toHaveBeenCalledTimes(1);
+ expect(removeZone).toHaveBeenCalledTimes(4);
expect(getRecordCalls(removeZone)).toEqual([
+ { line: 101 },
+ { line: 100 },
+ { line: 99 },
{ line: 1 },
]);
@@ -317,8 +323,8 @@ describe('Domain service', () => {
]);
expect(removeEmail).toHaveBeenCalledTimes(2);
expect(getRecordCalls(removeEmail)).toEqual([
- { domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 },
{ domain: 'b.is-a.dev', exchanger: 'foo.bar', priority: 20 },
+ { domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 },
]);
expect(addRedir).toHaveBeenCalledTimes(3);
diff --git a/tests/url-validation.py b/tests/url-validation.py
deleted file mode 100644
index 25d2f7b70..000000000
--- a/tests/url-validation.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import os
-import json
-import requests
-import concurrent.futures
-
-repository_directory = os.getcwd()
-domains_directory = os.path.join(repository_directory, "domains")
-
-def has_url_field(file_path):
- with open(file_path, "r") as file:
- data = json.load(file)
- record = data.get("record")
- if record and "URL" in record:
- return record["URL"]
- return None
-
-def is_url_reachable(url: str):
- try:
- response = requests.head(url, allow_redirects=True)
- return response.status_code // 100 in [1, 2, 3] # Check if status code is in the 1xx or 2xx or 3xx range (success)
- except requests.exceptions.RequestException:
- return False
-
-urls_data = {
- "valid": {},
- "invalid": {},
- "non-http": {}
-}
-
-def handle_url_validation(file_path):
- url: str = has_url_field(file_path)
- if url:
- if url.startswith("http://") or url.startswith("https://"):
- if is_url_reachable(url):
- urls_data["valid"][file_path] = url
- print(f"URL '{url}' in file '{file_path}' is reachable.")
- else:
- urls_data["invalid"][file_path] = url
- print(f"URL '{url}' in file '{file_path}' is not reachable.")
- else:
- urls_data["non-http"][file_path] = url
- print(f"URL '{url}' in file '{file_path}' is neither HTTP nor HTTPS.")
-
-max_threads = 20
-
-with concurrent.futures.ThreadPoolExecutor(max_workers=max_threads) as executor:
- file_paths = []
-
- for root, _, files in os.walk(domains_directory):
- for filename in files:
- file_paths.append(os.path.join(root, filename))
-
- for file_path in file_paths:
- future = executor.submit(handle_url_validation, file_path)
-
-result_file_path = os.path.join(repository_directory, "url-validation-result.json")
-with open(result_file_path, "w") as result_file:
- json.dump(urls_data, result_file, indent=4)
-
-print(f"Results saved to {result_file_path}")
diff --git a/utils/domain-service.js b/utils/domain-service.js
index 81421f7aa..fe75aef04 100644
--- a/utils/domain-service.js
+++ b/utils/domain-service.js
@@ -1,6 +1,6 @@
const R = require('ramda');
const { cpanel } = require('./lib/cpanel');
-const { DOMAIN_DOMAIN } = require('./constants');
+const { DOMAIN_DOMAIN, VALID_RECORD_TYPES } = require('./constants');
const { then, log, print, lazyTask, batchLazyTasks } = require('./helpers');
const BATCH_SIZE = 1;
@@ -23,7 +23,7 @@ const recordToZone = ({ name, type, address, id, priority }) => ({
});
const cleanName = name =>
- name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase();
+ [DOMAIN_DOMAIN, `${DOMAIN_DOMAIN}.`].includes(name) ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase();
const zoneToRecord = ({
name,
@@ -59,12 +59,14 @@ const recordToEmailMx = ({ name, address, priority }) => ({
const getHostKey = host =>
`${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`;
+const isReserved = (domain) =>
+ domain.name.startsWith('*') || !VALID_RECORD_TYPES.includes(domain.type)
+
const diffRecords = (oldRecords, newRecords) => {
const isMatchingRecord = (a, b) => getHostKey(a) === getHostKey(b);
const remove = R.differenceWith(isMatchingRecord, oldRecords, newRecords);
- const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords)
- .filter(r => !['www'].includes(r.name));
+ const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords);
return { add, remove };
};
@@ -86,8 +88,15 @@ const executeBatch = (batches) => batches.reduce((promise, batch, index) => {
}, Promise.resolve());
const getDomainService = ({ cpanel }) => {
- const fetchZoneRecords = R.compose(then(R.map(zoneToRecord)), cpanel.zone.fetch);
- const fetchRedirections = R.compose(then(R.map(redirectionToRecord)), cpanel.redirection.fetch);
+ const fetchZoneRecords = R.compose(
+ then(R.reject(isReserved)),
+ then(R.map(zoneToRecord)),
+ cpanel.zone.fetch
+ );
+ const fetchRedirections = R.compose(
+ then(R.map(redirectionToRecord)),
+ cpanel.redirection.fetch
+ );
const addZoneRecord = lazyTask(R.compose(
R.ifElse(R.propEq('type', 'MX'),
@@ -120,15 +129,19 @@ const getDomainService = ({ cpanel }) => {
const getHosts = () =>
Promise.all([fetchZoneRecords(), fetchRedirections()]).then(R.flatten);
- const addRecords = R.compose(batchLazyTasks(BATCH_SIZE), R.filter(Boolean), R.map(R.cond([
- [R.propEq('name', 'www'), R.always(null)], // Ignore www
- [R.propEq('type', 'URL'), addRedirection],
- [R.T, addZoneRecord],
- ])));
- const removeRecords = R.compose(batchLazyTasks(BATCH_SIZE), R.map(R.cond([
- [R.propEq('type', 'URL'), removeRedirection],
- [R.T, removeZoneRecord],
- ])));
+ const addRecords = R.compose(
+ batchLazyTasks(BATCH_SIZE),
+ R.filter(Boolean),
+ R.map(R.cond([
+ [R.propEq('type', 'URL'), addRedirection],
+ [R.T, addZoneRecord],
+ ])),
+ );
+ const removeRecords = R.compose(
+ batchLazyTasks(BATCH_SIZE),
+ R.map(R.cond([ [ R.propEq('type', 'URL'), removeRedirection ], [ R.T, removeZoneRecord ] ])),
+ R.sort((a, b) => b.id - a.id)
+ );
const updateHosts = async hosts => {
const remoteHostList = await getHosts();
diff --git a/utils/lib/cpanel.js b/utils/lib/cpanel.js
index 5c098f281..e61b15a0f 100644
--- a/utils/lib/cpanel.js
+++ b/utils/lib/cpanel.js
@@ -37,7 +37,7 @@ const CpanelClient = (options) => {
// -> [{ class, ttl, name, line, Line, cname, type, record }]
fetch: R.compose(
p => p.then(R.pathOr([], ['cpanelresult', 'data'])),
- api2('ZoneEdit', 'fetchzone_records', { customonly: 1, domain: options.domain })
+ api2('ZoneEdit', 'fetchzone_records', { customonly: 0, domain: options.domain })
),
// { name, type(A|CNAME), cname, address, ttl }