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/.github/workflows/wildcard.yml b/.github/workflows/wildcard.yml deleted file mode 100644 index b7622fc2d..000000000 --- a/.github/workflows/wildcard.yml +++ /dev/null @@ -1,69 +0,0 @@ -name: Wildcard temp record - -on: - workflow_dispatch: - inputs: - recordcontent: - description: "Record Content" - required: true - default: "warning" - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Generate JSON file - run: | - echo '{ - "owner": { - "username": "is-a-dev", - "email": "hello@maintainers.is-a.dev" - }, - "record": { - "TXT": "${{ github.event.inputs.recordcontent }}" - } - }' > ./domains/_acme-challenge.json - - - name: test - run: cat domains/_acme-challenge.json - - - uses: oven-sh/setup-bun@v1 - with: - bun-version: 1.0.3 - - run: bun install - - - name: Publishing records - env: - CI: 1 - NODE_ENV: production - ENV: production - DOMAIN_USER: ${{ secrets.DOMAIN_USER }} - DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }} - DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }} - DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }} - DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }} - DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }} - run: bun run publish-records - - name: Sleep - run: sleep 10m - shell: bash - - - name: Remove - run: rm domains/_acme-challenge.json - shell: bash - - - name: removing records - env: - CI: 1 - NODE_ENV: production - ENV: production - DOMAIN_USER: ${{ secrets.DOMAIN_USER }} - DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }} - DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }} - DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }} - DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }} - DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }} - run: bun run publish-records 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/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 deleted file mode 100644 index d2301f533..000000000 --- a/domains/1024.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cy920820", - "email": "cuiyang673308817@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/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/21z.json b/domains/21z.json deleted file mode 100644 index 755d4554f..000000000 --- a/domains/21z.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "21Z", - "email": "hamdankalliyil@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/rick-astley.json b/domains/2fa.phoenix.json similarity index 98% rename from domains/rick-astley.json rename to domains/2fa.phoenix.json index 83400e519..189cb852b 100644 --- a/domains/rick-astley.json +++ b/domains/2fa.phoenix.json @@ -6,4 +6,4 @@ "record": { "A": ["130.162.166.134"] } -} \ No newline at end of file +} diff --git a/domains/3kh0.json b/domains/3kh0.json deleted file mode 100644 index 33565c187..000000000 --- a/domains/3kh0.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "3kh0", - "email": "echo-the-coder@tuta.io" - }, - "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/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/70a5.json b/domains/70a5.json deleted file mode 100644 index 613a9726e..000000000 --- a/domains/70a5.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "70A5", - "email": "joas.van.der.eerden@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/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/_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.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.kuba.json b/domains/_discord.kuba.json new file mode 100644 index 000000000..4555aca5e --- /dev/null +++ b/domains/_discord.kuba.json @@ -0,0 +1,15 @@ +{ + "description": "_discord.kuba is a subdomain for verification of Discord's domain ownership system.", + "owner": { + "telegram": "idkuba", + "username": "kbvivi", + "email": "kbvivi.contact@gmail.com", + "discord": "105170831130234880" + }, + "repo": "https://github.com/kbvivi/kuba.lol", + "record": { + "TXT": [ + "dh=4f43d84403713773fa9506963218fe01cfd9b61d" + ] + } +} 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-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-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/notify-api.json b/domains/_github-pages-challenge-is-a-dev.team.json similarity index 71% rename from domains/notify-api.json rename to domains/_github-pages-challenge-is-a-dev.team.json index ef2dd2748..d7e139dbd 100644 --- a/domains/notify-api.json +++ b/domains/_github-pages-challenge-is-a-dev.team.json @@ -5,6 +5,6 @@ }, "record": { - "CNAME": "dns.beadman-network.com" + "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-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/dc.riviox.json b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json similarity index 51% rename from domains/dc.riviox.json rename to domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json index 9874dc6a2..26f89e82a 100644 --- a/domains/dc.riviox.json +++ b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json @@ -1,9 +1,9 @@ { "owner": { - "username": "RivioxGaming", + "username": "riviox", "email": "rivioxyt@hotmail.com" }, "record": { - "URL": "https://discord.gg/wcXRzrbAaX" + "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-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/aadarshksingh.json b/domains/aadarshksingh.json deleted file mode 100644 index 68f8e3a8f..000000000 --- a/domains/aadarshksingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "aadarshKsingh", - "email": "aadarshkumarsingh198@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/aakashcse.json b/domains/aakashcse.json deleted file mode 100644 index 8380c0883..000000000 --- a/domains/aakashcse.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GauravPlxyz", - "email": "polsagyipols6@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/aakrisht.json b/domains/aakrisht.json deleted file mode 100644 index 9712a5ffe..000000000 --- a/domains/aakrisht.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AakrishtSP", - "email": "akrisht62@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/aantarip.json b/domains/aantarip.json deleted file mode 100644 index 6c6f29227..000000000 --- a/domains/aantarip.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "antoripdas", - "email": "aantaripdas@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/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/aaron.json b/domains/aaron.json deleted file mode 100644 index 03a7c8804..000000000 --- a/domains/aaron.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gbgdonttalk", - "email": "d1qtwmsmdga@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/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/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 deleted file mode 100644 index e709988a8..000000000 --- a/domains/abdeljallil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AleaToir3", - "email": "aleatoir3@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/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 deleted file mode 100644 index 9a460c08a..000000000 --- a/domains/abdo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "5enox", - "email": "animikantan@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/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/abhijit.json b/domains/abhijit.json deleted file mode 100644 index d26b45d0e..000000000 --- a/domains/abhijit.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/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 deleted file mode 100644 index 92a55747a..000000000 --- a/domains/abhinav.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "abhinavcool42", - "email": "abhinavcool42@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/abhishekpanda.json b/domains/abhishekpanda.json deleted file mode 100644 index d9f28916f..000000000 --- a/domains/abhishekpanda.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "goesbyabhi", - "email": "abxisxekpanda@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/abhishekpb.json b/domains/abhishekpb.json deleted file mode 100644 index 0cf904664..000000000 --- a/domains/abhishekpb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "abhishek-pb1", - "email": "studentabhishekpb@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/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 deleted file mode 100644 index 7322387dc..000000000 --- a/domains/acto.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "waitwhatActo", - "email": "acton.clever@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/ad1107.json b/domains/ad1107.json deleted file mode 100644 index 06a4456f1..000000000 --- a/domains/ad1107.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ad1107", - "email": "nguyenanhducxmen@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/adarsh-a-inamdar.json b/domains/adarsh-a-inamdar.json deleted file mode 100644 index 72637a9e4..000000000 --- a/domains/adarsh-a-inamdar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Adarsh-Inamdar", - "email": "adarshinamdar2003@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/adarshblog.json b/domains/adarshblog.json new file mode 100644 index 000000000..aec903bc4 --- /dev/null +++ b/domains/adarshblog.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsmeadarsh2008", + "email": "gourabmahalikadarsh@gmail.com" + }, + "record": { + "URL": "https://broughtbyalgorithm.blogspot.com" + } +} diff --git a/domains/adeshsingh.json b/domains/adeshsingh.json deleted file mode 100644 index 6ccd389fb..000000000 --- a/domains/adeshsingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cppqtdev", - "email": "akshworkmail@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/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 deleted file mode 100644 index bb24f59d0..000000000 --- a/domains/adioblu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "adyoblu", - "email": "adyoblu2000@yahoo.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/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 deleted file mode 100644 index ccc0759c1..000000000 --- a/domains/adityabhattacharya.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AdityaBhattacharya1", - "email": "utoprocess@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/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 deleted file mode 100644 index 16614ccc8..000000000 --- a/domains/adityakotha.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "adityakotha2001", - "email": "adityakotha2001@gmail.com" - }, - "record": { - "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/adiy.json b/domains/adiy.json deleted file mode 100644 index 095ab4c57..000000000 --- a/domains/adiy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "adiyadav123", - "email": "ramanandyadav7650@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/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/aeolus.json b/domains/aeolus.json deleted file mode 100644 index 7f7f2630a..000000000 --- a/domains/aeolus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AeolusDev", - "email": "aeolusdeveloper@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/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/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/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 deleted file mode 100644 index 440354659..000000000 --- a/domains/aidan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AidanTheJsDev", - "email": "24aidanwhite@usd266.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/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/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/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 deleted file mode 100644 index f6826b605..000000000 --- a/domains/akas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Akas Portfolio", - "repo": "https://github.com/akasrai/akasrai.github.io", - "owner": { - "username": "akasrai", - "email": "akasky70@gmail.com" - }, - "record": { - "CNAME": "akasrai.github.io" - } -} diff --git a/domains/akash.json b/domains/akash.json deleted file mode 100644 index 93efbb43e..000000000 --- a/domains/akash.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SquareSmp", - "email": "squaresmp@asia.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/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 e58898885..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"], + "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/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 deleted file mode 100644 index 8a125a296..000000000 --- a/domains/akshayashok.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "akshy3", - "email": "akshayashok209@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/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 deleted file mode 100644 index 9b04706fb..000000000 --- a/domains/albuman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AlbumanO", - "email": "oliver.young4@student.education.wa.edu.au" - }, - "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/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/alcyoneus.json b/domains/alcyoneus.json deleted file mode 100644 index 04547dd69..000000000 --- a/domains/alcyoneus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "alcyoneuss", - "email": "datemage+xd1@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index f57bc8cd7..000000000 --- a/domains/alex-s.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Ultra980", - "email": "ultra980@proton.me" - }, - "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/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/alexr.json b/domains/alexr.json deleted file mode 100644 index ca0678a85..000000000 --- a/domains/alexr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "4lexR", - "email": "amelia.R0se@proton.me" - }, - "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/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/aliazhar.json b/domains/aliazhar.json deleted file mode 100644 index e12586e58..000000000 --- a/domains/aliazhar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "aliazhar0", - "email": "aliazhar1906@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/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/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 deleted file mode 100644 index 28747a44d..000000000 --- a/domains/alkadhumi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "alkadhumi", - "email": "alihassan7722@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/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/amazing.devs.json b/domains/amazing.devs.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazing.devs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amazing.json b/domains/amazing.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazing.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amazingdev.json b/domains/amazingdev.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazingdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amazingdevel.json b/domains/amazingdevel.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazingdevel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amazingdevels.json b/domains/amazingdevels.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazingdevels.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amazingdevs.json b/domains/amazingdevs.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/amazingdevs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/amelia.json b/domains/amelia.json deleted file mode 100644 index ca0678a85..000000000 --- a/domains/amelia.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "4lexR", - "email": "amelia.R0se@proton.me" - }, - "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/ameysawant.json b/domains/ameysawant.json deleted file mode 100644 index 42bab9e6d..000000000 --- a/domains/ameysawant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "amey1355", - "email": "assawant06@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/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 deleted file mode 100644 index 768ac3d8b..000000000 --- a/domains/ammy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "panditamey", - "email": "codewithamey@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/amol254542.json b/domains/amol254542.json index 08cfc72d6..521f3c192 100644 --- a/domains/amol254542.json +++ b/domains/amol254542.json @@ -4,9 +4,6 @@ "email": "amolmilton@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" + "CNAME":"amol234545.github.io" } -} \ No newline at end of file +} 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 deleted file mode 100644 index f91fc50e4..000000000 --- a/domains/amulyasingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AMULYASing", - "email": "amulyasingh370@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/amya.json b/domains/amya.json deleted file mode 100644 index 768ac3d8b..000000000 --- a/domains/amya.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "panditamey", - "email": "codewithamey@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/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/andrews22.json b/domains/andrews22.json deleted file mode 100644 index 4dd4aa718..000000000 --- a/domains/andrews22.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.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/andrewstech.json b/domains/andrewstech.json deleted file mode 100644 index fb97d0eb3..000000000 --- a/domains/andrewstech.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "andrewstech", - "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"] - } -} diff --git a/domains/andrewtest.json b/domains/andrewtest.json deleted file mode 100644 index 4becd0c6d..000000000 --- a/domains/andrewtest.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "andrewstech", - "email": "is-a-dev@win11react.com" - }, - "record": { - "CNAME": "hosts.is-a.dev" - } -} diff --git a/domains/andrewtest22.json b/domains/andrewtest22.json deleted file mode 100644 index 4dd4aa718..000000000 --- a/domains/andrewtest22.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.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/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 deleted file mode 100644 index 169a70745..000000000 --- a/domains/angi-talk.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Angi-g", - "email": "dguyard@student.42.fr" - }, - "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" - } -} \ No newline at end of file diff --git a/domains/angi.json b/domains/angi.json deleted file mode 100644 index 169a70745..000000000 --- a/domains/angi.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Angi-g", - "email": "dguyard@student.42.fr" - }, - "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" - } -} \ 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/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/anshbhimani.json b/domains/anshbhimani.json deleted file mode 100644 index 2a831a2f4..000000000 --- a/domains/anshbhimani.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AnshBhimani", - "email": "anshbhimani2003@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/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 deleted file mode 100644 index 07bf9b7df..000000000 --- a/domains/anto.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "b5i", - "email": "bollengier.antoine@icloud.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/antoine.json b/domains/antoine.json deleted file mode 100644 index 07bf9b7df..000000000 --- a/domains/antoine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "b5i", - "email": "bollengier.antoine@icloud.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/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/anujjamdade.json b/domains/anujjamdade.json deleted file mode 100644 index 6a5e935d3..000000000 --- a/domains/anujjamdade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "anujjamdade007", - "email": "jamdadeanuj@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/anurag.json b/domains/anurag.json deleted file mode 100644 index 44fc3480b..000000000 --- a/domains/anurag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "anurag-bit", - "email": "singh.ask@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/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.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..774aa4e97 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" + "A": ["69.30.249.53"] } } 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/appscom.json b/domains/appscom.json deleted file mode 100644 index afd933cb3..000000000 --- a/domains/appscom.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Addreou", - "email": "eduardomp.mendoza@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/arab.json b/domains/arab.json deleted file mode 100644 index f29492c4d..000000000 --- a/domains/arab.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "IMudee", - "email": "NotMudee@proton.me" - }, - "record": { - "CNAME": "hosts.is-a.dev" - } -} diff --git a/domains/arctix.json b/domains/arctix.json deleted file mode 100644 index 4ff651cb4..000000000 --- a/domains/arctix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Sibu07", - "email": "sarbes60@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/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/areen-c.json b/domains/areen-c.json new file mode 100644 index 000000000..7d70f7bbc --- /dev/null +++ b/domains/areen-c.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com", + "twitter": "areencx" + }, + "record": { + "CNAME": "areen.pages.dev" + } +} diff --git a/domains/areen.json b/domains/areen.json new file mode 100644 index 000000000..2555a2c86 --- /dev/null +++ b/domains/areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "areen-c.pages.dev" + } +} 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/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/arif.json b/domains/arif.json deleted file mode 100644 index df777a253..000000000 --- a/domains/arif.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Website", - "repo": "https://replit.com/@AJITH1231/Elitetamil?v=1", - "owner": { - "username": "Tg282", - "email": "ARSHATH8ARSHATH8@gmail.com" - }, - "record": { - "CNAME": "f3b0840c-b17f-4d3c-a506-b1953a43f45b.id.repl.co" - } -} 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/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/arshath.json b/domains/arshath.json deleted file mode 100644 index 076bce044..000000000 --- a/domains/arshath.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Tg282", - "email": "tgop0006@gmail.com" - }, - "record": { - "CNAME": "3ec63d7b-cba1-4b8c-8065-8e2e799d5ece.id.repl.co" - } -} diff --git a/domains/arunodmanohara.json b/domains/arunodmanohara.json deleted file mode 100644 index 0160f9183..000000000 --- a/domains/arunodmanohara.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "arunodmanoharaofficial", - "email": "arunodmanoharaofficial@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/aryan.json b/domains/aryan.json deleted file mode 100644 index fbb497634..000000000 --- a/domains/aryan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ARYANOP-REEF", - "email": "aryanmenghare@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/ash.json b/domains/ash.json deleted file mode 100644 index 23e8933f7..000000000 --- a/domains/ash.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Drake-Ash", - "email": "ashwinv4444@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" - } -} \ 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/asmin.json b/domains/asmin.json deleted file mode 100644 index 11226af27..000000000 --- a/domains/asmin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AsminGiri", - "email": "asmingiriofficial@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/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/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/atharv-jha.json b/domains/atharv-jha.json deleted file mode 100644 index 369030a99..000000000 --- a/domains/atharv-jha.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Atharvjha7", - "email": "jha.atharv27@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/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 deleted file mode 100644 index ffcd25ce4..000000000 --- a/domains/atharvaupadhyay.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "atharvaupadhyay", - "email": "atharva.upadhyay1099@gmail.com" - }, - "record": { - "CNAME": "atharvaupadhyay.github.io" - } -} 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/atuel.json b/domains/atuel.json deleted file mode 100644 index 5251ae8c8..000000000 --- a/domains/atuel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "atuell", - "email": "stanasqwe@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/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 deleted file mode 100644 index 873fd0888..000000000 --- a/domains/auuub.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "auuub", - "email": "gonzales.gabrielbaral+github@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/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 deleted file mode 100644 index 6ea85b620..000000000 --- a/domains/avikek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "notabhixhek", - "email": "abhishek.fodikar29@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/aware.json b/domains/aware.json deleted file mode 100644 index 6b0b6cba3..000000000 --- a/domains/aware.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AngerminecraftYT", - "email": "david.boltong@icloud.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/ayaan.json b/domains/ayaan.json deleted file mode 100644 index c059fac4c..000000000 --- a/domains/ayaan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dexjr", - "email": "dexjrdexjr@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/ayaangrover.json b/domains/ayaangrover.json new file mode 100644 index 000000000..04408422c --- /dev/null +++ b/domains/ayaangrover.json @@ -0,0 +1,12 @@ +{ + "description": "A better link for my personal profile", + "repo": "https://github.com/ayaangrover/ayaangrover.github.io", + "owner": { + "username": "ayaangrover", + "email": "ayaangrover@gmail.com", + "twitter": "@grover_ayaan" + }, + "record": { + "CNAME": "ayaangrover.github.io" + } +} 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 deleted file mode 100644 index 3c16e3cf2..000000000 --- a/domains/aymenjelassi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jelassiaymen94", - "email": "jelassiaymen094@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/aymo.json b/domains/aymo.json deleted file mode 100644 index c02cc7d5d..000000000 --- a/domains/aymo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NotAymo", - "email": "ninecraftoff@outlook.com" - }, - "record": { - "A": ["65.19.141.67"], - "MX": ["hosts.is-a.dev"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" - } -} diff --git a/domains/ayushi.json b/domains/ayushi.json deleted file mode 100644 index 59581e1d1..000000000 --- a/domains/ayushi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Vixen-1", - "email": "ayushisaxena24111999@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/ayvanov.json b/domains/ayvanov.json deleted file mode 100644 index 1d8e7bb5f..000000000 --- a/domains/ayvanov.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ayvanov", - "email": "xanderinho@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/azul.json b/domains/azul.json deleted file mode 100644 index aa6eaf81c..000000000 --- a/domains/azul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TheRealGeoDash2019", - "email": "TheRealGeoDash2019@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/b5i.json b/domains/b5i.json deleted file mode 100644 index 07bf9b7df..000000000 --- a/domains/b5i.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "b5i", - "email": "bollengier.antoine@icloud.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/baba.json b/domains/baba.json deleted file mode 100644 index 892aaafd8..000000000 --- a/domains/baba.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Babakinha", - "email": "sangueotario@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/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/balls.json b/domains/balls.json deleted file mode 100644 index 985ab99b5..000000000 --- a/domains/balls.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ConnorDoesDev", - "email": "halil_ismail@yahoo.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/bampa.json b/domains/bampa.json deleted file mode 100644 index f1d92badb..000000000 --- a/domains/bampa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "bampenes", - "email": "rafinhabampa@hotmail.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/bao.json b/domains/bao.json deleted file mode 100644 index 49cf955d7..000000000 --- a/domains/bao.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gibaohung-dev", - "email": "thisismegiabao@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/baptiste.json b/domains/baptiste.json deleted file mode 100644 index e69ec7658..000000000 --- a/domains/baptiste.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BapRx", - "email": "rouxbaptiste@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/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 deleted file mode 100644 index 0427a9844..000000000 --- a/domains/bashafk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "IbrahimKhan2004", - "email": "OfficialIbrahimKhan2004@proton.me" - }, - "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/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/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/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/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/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 deleted file mode 100644 index 68af12f91..000000000 --- a/domains/benjae.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "benjiae", - "email": "benjaminang2009@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/benjo.json b/domains/benjo.json index 7c14eedc3..cf90b8ee6 100644 --- a/domains/benjo.json +++ b/domains/benjo.json @@ -5,6 +5,6 @@ "twitter": "BughawBenjo" }, "record": { - "CNAME": "09a88fc1-344d-44cf-8b92-98cc1383dff6.id.repl.co" + "CNAME": "benjo.pages.dev" } } 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/bhaskar.json b/domains/bhaskar.json new file mode 100644 index 000000000..bd7bc6b70 --- /dev/null +++ b/domains/bhaskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskaraa45", + "email": "bhaskarmandal369@gmail.com" + }, + "record": { + "A": ["40.76.254.177"] + } +} diff --git a/domains/bhavishya.json b/domains/bhavishya.json deleted file mode 100644 index d6b775534..000000000 --- a/domains/bhavishya.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BH00TXD", - "email": "ghost25112006@gmail.com" - }, - "record": { - "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/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/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 deleted file mode 100644 index 5e1ec3e4e..000000000 --- a/domains/blessingmwiti.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "blessingmwiti", - "email": "blessingmwiti@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/blinx.json b/domains/blinx.json deleted file mode 100644 index 76a343980..000000000 --- a/domains/blinx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cabingory", - "email": "blinxduh@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/blob.json b/domains/blob.json deleted file mode 100644 index 780cfb73f..000000000 --- a/domains/blob.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BlobDeveloper", - "email": "blob.dev@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/block.json b/domains/block.json deleted file mode 100644 index dc3827c88..000000000 --- a/domains/block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CookieTriste", - "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" - } -} \ No newline at end of file diff --git a/domains/blockchaindevpanther.json b/domains/blockchaindevpanther.json deleted file mode 100644 index cd4fcebb4..000000000 --- a/domains/blockchaindevpanther.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "2618Zahid", - "email": "zahidhassankalaroa104@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/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/blue.json b/domains/blue.json deleted file mode 100644 index a7276807d..000000000 --- a/domains/blue.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "B1ue-Dev", - "email": "ngolong1396@hotmail.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/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 deleted file mode 100644 index 8ec82b46c..000000000 --- a/domains/bni.co.id.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "dana-fintech-id", - "email": "csferdisambo2023@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" - } -} \ 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 deleted file mode 100644 index 052d58fbe..000000000 --- a/domains/bogdan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "MrBogdanYT", - "email": "hysbskyblockgod@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/boggy.json b/domains/boggy.json deleted file mode 100644 index 5e831fa48..000000000 --- a/domains/boggy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "boggy539", - "email": "boggydev@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/booogle.json b/domains/booogle.json deleted file mode 100644 index 1bb7ac378..000000000 --- a/domains/booogle.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HoaQuyingVN", - "email": "phu.hoa.dp@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/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/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 deleted file mode 100644 index cc9d2f0cc..000000000 --- a/domains/bread.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "soggycatalltheway", - "email": "hurvzee+partizao@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/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/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 deleted file mode 100644 index 7cdeea243..000000000 --- a/domains/bruhx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Bruhxz54", - "email": "pollyx73@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/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/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 deleted file mode 100644 index c17fa6f6a..000000000 --- a/domains/bumbleboss.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Bumbleboss", - "email": "me@bumbleboss.xyz" - }, - "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/caiden.json b/domains/caiden.json deleted file mode 100644 index eeaa4c360..000000000 --- a/domains/caiden.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Caiden-P", - "email": "iididhejejdj@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/caiden.xyz.json b/domains/caiden.xyz.json deleted file mode 100644 index eeaa4c360..000000000 --- a/domains/caiden.xyz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Caiden-P", - "email": "iididhejejdj@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/cakihorse.json b/domains/cakihorse.json deleted file mode 100644 index d224836e1..000000000 --- a/domains/cakihorse.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cakihorse", - "email": "cakihorse06@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/canarddu38.json b/domains/canarddu38.json deleted file mode 100644 index 5340083ce..000000000 --- a/domains/canarddu38.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "canarddu38", - "email": "julescanardcoin@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/carol3n.json b/domains/carol3n.json deleted file mode 100644 index f03bbd3e0..000000000 --- a/domains/carol3n.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Carol3n", - "email": "20cs031.caroline@sjec.ac.in" - }, - "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/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 deleted file mode 100644 index 98d102505..000000000 --- a/domains/ccnicebruh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CcNicebruh", - "email": "tangkeehee2002@gmail.com" - }, - "record": { - "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/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.winter.json b/domains/cdn.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/cdn.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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 deleted file mode 100644 index 53c4070c4..000000000 --- a/domains/celestial.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Luongzz", - "email": "buivanluong0204@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/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 deleted file mode 100644 index ed013d614..000000000 --- a/domains/cha0tic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cha0ticcoder", - "email": "chaoticplayern1@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/chaaya.json b/domains/chaaya.json deleted file mode 100644 index 3a411528e..000000000 --- a/domains/chaaya.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Peter-0097", - "email": "chaayagames@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/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 deleted file mode 100644 index 39ffd69d3..000000000 --- a/domains/chandrabose.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "chandrabosep", - "email": "chandrabosep3112@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/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 deleted file mode 100644 index 86bc7a445..000000000 --- a/domains/charge.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "windcharge", - "email": "wysockimichu@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" - } -} \ 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/chase.json b/domains/chase.json deleted file mode 100644 index 561111d69..000000000 --- a/domains/chase.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "trir44", - "email": "621969@kernhigh.org" - }, - "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/chasecraft.json b/domains/chasecraft.json deleted file mode 100644 index 28f64803a..000000000 --- a/domains/chasecraft.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "chasecraft88", - "email": "chase88gizmo@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/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/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/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 deleted file mode 100644 index 9f2669de9..000000000 --- a/domains/chris8889.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Chris8889", - "email": "chris88892@protonmail.com" - }, - "record": { - "CNAME": "hosts.is-a.dev" - } -} diff --git a/domains/christian.json b/domains/christian.json deleted file mode 100644 index 5a1ce84c4..000000000 --- a/domains/christian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DenDanskeMine", - "email": "christianhrose@outlook.dk" - }, - "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/chyves.json b/domains/chyves.json deleted file mode 100644 index 711e90c72..000000000 --- a/domains/chyves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "notchyves", - "email": "chyvescontact@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/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 deleted file mode 100644 index 41f6de86c..000000000 --- a/domains/cihatksm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CihatKsm", - "email": "cihatksm@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index 48770ed20..000000000 --- a/domains/clarex.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "clarexdev", - "email": "erenclarex@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/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 deleted file mode 100644 index 6b688af6d..000000000 --- a/domains/clicpow.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ClicpoW", - "email": "clicpowytb@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "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 deleted file mode 100644 index 19806f84c..000000000 --- a/domains/cloneslist.aymo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NotAymo", - "email": "ninecraftoff@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/closure.json b/domains/closure.json deleted file mode 100644 index fcabf6663..000000000 --- a/domains/closure.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ActivateClosur3", - "email": "activateclosureyt@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/cloud.akshtt.json b/domains/cloud.akshtt.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/cloud.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/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 deleted file mode 100644 index 1bac13a9b..000000000 --- a/domains/clp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "chethaslp", - "email": "lchethas@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/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/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/codecuri.json b/domains/codecuri.json new file mode 100644 index 000000000..8fcec51a0 --- /dev/null +++ b/domains/codecuri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KaizOffical", + "email": "anhkhangphan4@gmail.com" + }, + + "record": { + "CNAME": "codecuri.onrender.com" + } +} 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 deleted file mode 100644 index 765ebf55a..000000000 --- a/domains/codershayan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Lightshayan", - "email": "Shayan.y.malik@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/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 deleted file mode 100644 index 530835aab..000000000 --- a/domains/codingbobby.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CodingBobby", - "email": "codingbobby+github@posteo.org" - }, - "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/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/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/constvar.json b/domains/constvar.json deleted file mode 100644 index 901d5d04d..000000000 --- a/domains/constvar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "IfVar", - "email": "LZT7@proton.me" - }, - "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/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 deleted file mode 100644 index 53c4070c4..000000000 --- a/domains/convertlink.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Luongzz", - "email": "buivanluong0204@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/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/craftyy.json b/domains/craftyy.json deleted file mode 100644 index 2b7c8ac53..000000000 --- a/domains/craftyy.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "LosCraftos", - "email": "tommomo3@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" - } -} \ No newline at end of file diff --git a/domains/creeper76.json b/domains/creeper76.json deleted file mode 100644 index 394bff3c4..000000000 --- a/domains/creeper76.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "Creeper76", - "email": "", - "discord": "777694273319469057" - }, - "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/creepycraft.json b/domains/creepycraft.json deleted file mode 100644 index d748cffdc..000000000 --- a/domains/creepycraft.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Nonamendev", - "email": "ndevnoname@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/crllect.json b/domains/crllect.json deleted file mode 100644 index 16ed9414c..000000000 --- a/domains/crllect.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "crllect", - "email": "crllect@proton.me" - }, - "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" - } -} \ No newline at end of file diff --git a/domains/csprance.json b/domains/csprance.json deleted file mode 100644 index 4fb6bddc6..000000000 --- a/domains/csprance.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "csprance", - "email": "chrissprance@gmail.com" - }, - "record": { - "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/ctk.json b/domains/ctk.json deleted file mode 100644 index 41f6de86c..000000000 --- a/domains/ctk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CihatKsm", - "email": "cihatksm@gmail.com" - }, - "record": { - "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/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/cutedog5695.json b/domains/cutedog5695.json index d20914773..eba498c23 100644 --- a/domains/cutedog5695.json +++ b/domains/cutedog5695.json @@ -6,6 +6,13 @@ "twitter": "cutedog5695" }, "record": { - "CNAME": "cutedog5695.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/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/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 deleted file mode 100644 index cbbec71a4..000000000 --- a/domains/d3vboi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "d3vboi", - "email": "d3vboi@proton.me" - }, - "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/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 deleted file mode 100644 index 9cd922ee1..000000000 --- a/domains/dailycats.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lrmn7", - "email": "lrmn.dev@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/damned-support.json b/domains/damned-support.json deleted file mode 100644 index 809dd2edc..000000000 --- a/domains/damned-support.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "keshrlmfao", - "email": "kiwipointss555@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/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/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 deleted file mode 100644 index db4c9a500..000000000 --- a/domains/darian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "justDarian", - "email": "Darian.mohaseb@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/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/darkc.json b/domains/darkc.json new file mode 100644 index 000000000..4056c628b --- /dev/null +++ b/domains/darkc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jc-discdev", + "email": "jjsuscc@gmail.com" + }, + "record": { + "URL": "https://darkdev.es" + } +} 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/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 deleted file mode 100644 index 43482054e..000000000 --- a/domains/dasshark.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DasSharkk", - "email": "dassharkk@proton.me" - }, - "record": { - "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/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/datasets.json b/domains/datasets.json new file mode 100644 index 000000000..a8034091f --- /dev/null +++ b/domains/datasets.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pranavagrawal321", + "email": "pranavagrawal321@gmail.com" + }, + "record": { + "URL": "https://datasets-e2cm.onrender.com" + } +} diff --git a/domains/dave.json b/domains/dave.json deleted file mode 100644 index a11efd044..000000000 --- a/domains/dave.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ceodavee", - "email": "ceodavee@icloud.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/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/dawnbreaker.json b/domains/dawnbreaker.json new file mode 100644 index 000000000..71a05945a --- /dev/null +++ b/domains/dawnbreaker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DawnBreaker0013", + "email": "dawnbreaker0013@gmail.com" + }, + "record": { + "A": ["34.168.171.130"] + } +} diff --git a/domains/dax.json b/domains/dax.json deleted file mode 100644 index 4ba989fb8..000000000 --- a/domains/dax.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dandepan303", - "email": "dandepan303@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/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/dea.json b/domains/dea.json deleted file mode 100644 index 36357bce0..000000000 --- a/domains/dea.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "devembrace", - "email": "rollxhowns@outlook.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" - } -} \ 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 deleted file mode 100644 index 5886c6562..000000000 --- a/domains/declan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ItsFranklinMyDudes", - "email": "franklindudes21@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/deecoyz.json b/domains/deecoyz.json deleted file mode 100644 index fcf903442..000000000 --- a/domains/deecoyz.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "deecoyz", - "email": "swr86.a8z72.a38o4.qm65c.lt0bz@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" - } -} \ No newline at end of file diff --git a/domains/deepesh.json b/domains/deepesh.json deleted file mode 100644 index 9c5b61bd1..000000000 --- a/domains/deepesh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CycloneAddons", - "email": "cycloneaddon@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/defalco64.json b/domains/defalco64.json deleted file mode 100644 index 68f8e3a8f..000000000 --- a/domains/defalco64.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "aadarshKsingh", - "email": "aadarshkumarsingh198@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/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 deleted file mode 100644 index d3ee7418e..000000000 --- a/domains/denboy0123.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "denboy0123", - "email": "pochtaproverka01@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/denismnoger.json b/domains/denismnoger.json deleted file mode 100644 index 2e9b98169..000000000 --- a/domains/denismnoger.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "arabtalent", - "email": "lolhdselect@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/denizak.json b/domains/denizak.json deleted file mode 100644 index 7e05332b5..000000000 --- a/domains/denizak.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "denizak", - "email": "denizakya@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/denizbee.json b/domains/denizbee.json deleted file mode 100644 index 5d38e857e..000000000 --- a/domains/denizbee.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "denizbee", - "email": "denizbayramoglu@proton.me" - }, - "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/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/derpierre65.json b/domains/derpierre65.json deleted file mode 100644 index e1c630565..000000000 --- a/domains/derpierre65.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "derpierre65", - "email": "git@derpierre65.de" - }, - "record": { - "CNAME": "www.derpierre65.dev" - } -} 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/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 deleted file mode 100644 index d366b0ae4..000000000 --- a/domains/devchaudhary.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "tushar202108", - "email": "chaudhrytusar2000@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/devel.json b/domains/devel.json deleted file mode 100644 index a0870ea7f..000000000 --- a/domains/devel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Atr-e", - "email": "eatr577@gmail.com" - }, - "record": { - "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/devgd.json b/domains/devgd.json deleted file mode 100644 index 0e409ca14..000000000 --- a/domains/devgd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Dev8H24", - "email": "devsteamgaming91@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/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/devmail.json b/domains/devmail.json deleted file mode 100644 index 035eb634b..000000000 --- a/domains/devmail.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "is-a-dev@win11react.com", - "discord": "1094272477137481810" - }, - - "record": { - "A": ["217.174.245.249"] - } - } - 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 deleted file mode 100644 index cd4fcebb4..000000000 --- a/domains/devpanther.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "2618Zahid", - "email": "zahidhassankalaroa104@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/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 deleted file mode 100644 index c55b7045c..000000000 --- a/domains/devs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/dew.json b/domains/dew.json deleted file mode 100644 index 0768b84d7..000000000 --- a/domains/dew.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dew-mortal", - "email": "dewmortal.cod@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/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.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 deleted file mode 100644 index 91de7d465..000000000 --- a/domains/dexar.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "dexaroffical", - "email": "5675mustafa5675@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" - } -} \ No newline at end of file diff --git a/domains/dhaloi.json b/domains/dhaloi.json deleted file mode 100644 index 5a961ca8a..000000000 --- a/domains/dhaloi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Dhaloi", - "email": "enis.salin@yaani.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/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/diego.json b/domains/diego.json deleted file mode 100644 index e3b4c353a..000000000 --- a/domains/diego.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "diegohh0411", - "email": "diegohh0411@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/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 deleted file mode 100644 index fb1875ee5..000000000 --- a/domains/dima.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dimashahbari", - "email": "dimashahbari@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/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 deleted file mode 100644 index 42601565e..000000000 --- a/domains/dincertekin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dincertekin", - "email": "dincertekin@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/dinhq.json b/domains/dinhq.json deleted file mode 100644 index 83db2cc7a..000000000 --- a/domains/dinhq.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dinhqvn99", - "email": "trinhdinhquy@iesschool.edu.vn" - }, - "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/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..90af28355 --- /dev/null +++ b/domains/dinuhifi.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/dinuhifi/dinuhifi.github.io", + "owner": { + "username": "dinuhifi", + "email": "dinesh23110077@snuchennai.edu.in" + }, + "record": { + "CNAME": "dinuhifi.github.io" + } +} diff --git a/domains/discord-corp.json b/domains/discord-corp.json deleted file mode 100644 index 45c849919..000000000 --- a/domains/discord-corp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JZ1324", - "email": "zheng.joshua2@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/discord.amulyasingh.json b/domains/discord.amulyasingh.json deleted file mode 100644 index e62d1dd63..000000000 --- a/domains/discord.amulyasingh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "AMULYASing", - "email": "amulyasingh370@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" - } -} \ No newline at end of file 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/divyadesh.json b/domains/divyadesh.json deleted file mode 100644 index 763f09c05..000000000 --- a/domains/divyadesh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "divyadesh", - "email": "adeshsati24@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/divyansh.json b/domains/divyansh.json deleted file mode 100644 index 7e6c2968b..000000000 --- a/domains/divyansh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "divyanshxd", - "email": "divyanshv91@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/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 deleted file mode 100644 index 2872231e4..000000000 --- a/domains/dnoxl.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Dnoxl", - "email": "ifbimgamer@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/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 deleted file mode 100644 index 50d7d71a5..000000000 --- a/domains/dodinhphuc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DoDinhPhuc1111", - "email": "prepegasus1111@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/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/dogeleader.json b/domains/dogeleader.json deleted file mode 100644 index 56c2cd6c5..000000000 --- a/domains/dogeleader.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zumwaltboi68", - "email": "alexander662022@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/dogemaster.json b/domains/dogemaster.json deleted file mode 100644 index 56c2cd6c5..000000000 --- a/domains/dogemaster.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zumwaltboi68", - "email": "alexander662022@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/dogenetwork.json b/domains/dogenetwork.json deleted file mode 100644 index 56c2cd6c5..000000000 --- a/domains/dogenetwork.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zumwaltboi68", - "email": "alexander662022@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/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 deleted file mode 100644 index 84c551334..000000000 --- a/domains/domathdotid.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DomathID", - "email": "admin@yukinoshita.web.id" - }, - "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/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 deleted file mode 100644 index f76e83c5e..000000000 --- a/domains/dominik.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mezotv", - "email": "dominik@koch-bautechnik.de" - }, - "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/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 deleted file mode 100644 index 06fae4fa7..000000000 --- a/domains/dott.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Dott-rus", - "email": "antonamelin8@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/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/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 deleted file mode 100644 index 19d5b1642..000000000 --- a/domains/drastic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "drasticroy", - "email": "victiousroy@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/drasticroy.json b/domains/drasticroy.json deleted file mode 100644 index 19d5b1642..000000000 --- a/domains/drasticroy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "drasticroy", - "email": "victiousroy@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/drenxhyliqi.json b/domains/drenxhyliqi.json deleted file mode 100644 index cf1076cd1..000000000 --- a/domains/drenxhyliqi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "drenxhyliqi", - "email": "drenxhyliqi3@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/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 deleted file mode 100644 index 8a36390ab..000000000 --- a/domains/drk-bot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dylan1522", - "email": "wpmar027092@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/drmzahid.json b/domains/drmzahid.json deleted file mode 100644 index cd4fcebb4..000000000 --- a/domains/drmzahid.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "2618Zahid", - "email": "zahidhassankalaroa104@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/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 deleted file mode 100644 index 9cf9bc7dd..000000000 --- a/domains/drv.su.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/dsgaasdgsdag.json b/domains/dsgaasdgsdag.json deleted file mode 100644 index 809dd2edc..000000000 --- a/domains/dsgaasdgsdag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "keshrlmfao", - "email": "kiwipointss555@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/dsgamer.json b/domains/dsgamer.json deleted file mode 100644 index 66f4945ff..000000000 --- a/domains/dsgamer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DhruvGamingzsoft", - "email": "dgashost@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/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/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 deleted file mode 100644 index 01be5e070..000000000 --- a/domains/dwk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Brickmasterr", - "email": "dwiki200304@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/dxomg.json b/domains/dxomg.json deleted file mode 100644 index 49197b78d..000000000 --- a/domains/dxomg.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dxomg", - "email": "dxomgmyfriend@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/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 deleted file mode 100644 index 706cf81de..000000000 --- a/domains/dynamic-homepage.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vikramv20", - "email": "vs423502@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/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 deleted file mode 100644 index 4ec611c5c..000000000 --- a/domains/eacbypasser.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "EacBypasser", - "email": "tyroxtech@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/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/echo.json b/domains/echo.json deleted file mode 100644 index 56c9d4884..000000000 --- a/domains/echo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Silverstero", - "email": "pleasedontaddmyemail@gmail.com" - }, - "record": { - "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/eclair.json b/domains/eclair.json deleted file mode 100644 index b7844089f..000000000 --- a/domains/eclair.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "assjgejcitif", - "email": "fluffy@dmc.chat" - }, - "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/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/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/eform.bni.co.id.json b/domains/eform.bni.co.id.json deleted file mode 100644 index 050c08b38..000000000 --- a/domains/eform.bni.co.id.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "dana-fintech-id", - "email": "csferdisambo2023@gmail.com" - }, - "record": { - "A": ["91.241.66.74"] - } -} 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/ehsan.json b/domains/ehsan.json new file mode 100644 index 000000000..7be868c03 --- /dev/null +++ b/domains/ehsan.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "eCodeVoyager", + "email": "mu23172@gmail.com" + }, + "record": { + "A": [ + "8.219.148.143" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} 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/elchapo.json b/domains/elchapo.json deleted file mode 100644 index c19550ed4..000000000 --- a/domains/elchapo.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "busso-developer", - "email": "ballasmarketofficial@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" - } -} \ 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 deleted file mode 100644 index d05378754..000000000 --- a/domains/eliteflix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Legend256", - "email": "heroku.1st.dyno@gmail.com" - }, - "record": { - "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/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/elyagoubi.json b/domains/elyagoubi.json new file mode 100644 index 000000000..504da26c5 --- /dev/null +++ b/domains/elyagoubi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattarElyagoubi", + "email": "abdeldroid2@gmail.com" + }, + "record": { + "CNAME": "elyagoubis.github.io" + } +} 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/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 deleted file mode 100644 index a24740aeb..000000000 --- a/domains/erdogansad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "erdogansad", - "email": "erdogan.sad@windowslive.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/ericpessoa.json b/domains/ericpessoa.json deleted file mode 100644 index 8fc334f68..000000000 --- a/domains/ericpessoa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Eric-Pessoa", - "email": "pessoa.eric@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/erogemaster225.json b/domains/erogemaster225.json deleted file mode 100644 index c780dc9d5..000000000 --- a/domains/erogemaster225.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ErogeMaster225", - "email": "nguyentrongsang123@yahoo.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/erol.json b/domains/erol.json new file mode 100644 index 000000000..fe02fdf30 --- /dev/null +++ b/domains/erol.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "erolj", + "email": "" + }, + + "record": { + "URL": "https://erol.kawanua.id" + } +} diff --git a/domains/errornointernet.json b/domains/errornointernet.json deleted file mode 100644 index 64c0b592f..000000000 --- a/domains/errornointernet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ErrorNoInternet", - "email": "error.nointernet@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/essiessara.json b/domains/essiessara.json deleted file mode 100644 index 55ab50927..000000000 --- a/domains/essiessara.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "essieessara", - "email": "esraaaebdelrehime@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/eternal.json b/domains/eternal.json deleted file mode 100644 index c9de9ac55..000000000 --- a/domains/eternal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thatmarcboi", - "email": "marcacolwell@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/eternalnetwork.json b/domains/eternalnetwork.json deleted file mode 100644 index 6520e9f8e..000000000 --- a/domains/eternalnetwork.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "neealdon3", - "email": "neealdon3@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/ethan.json b/domains/ethan.json deleted file mode 100644 index e59651ee9..000000000 --- a/domains/ethan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Darkcoder402", - "email": "ethanrodrigues25@gmail.com", - "twitter": "EthanRo97737635" - }, - "record": { - "CNAME": "ethan-is-a-dev.tk" - } -} 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 deleted file mode 100644 index 417c49f46..000000000 --- a/domains/eturbo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Teapot4195", - "email": "huangalex409@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/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 deleted file mode 100644 index 6b0b6cba3..000000000 --- a/domains/everybody.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AngerminecraftYT", - "email": "david.boltong@icloud.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/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/ez.json b/domains/ez.json deleted file mode 100644 index ae347f452..000000000 --- a/domains/ez.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ClicpoW", - "email": "clicpowytb@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/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/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/fake.json b/domains/fake.json index d00ce8282..e54aaf74f 100644 --- a/domains/fake.json +++ b/domains/fake.json @@ -1,6 +1,6 @@ { - "description": "Fake_Name131's Website", - "repo": "https://github.com/YEEETT", + "description": "site", + "repo": "https://github.com/fakename131", "owner": { "username": "Fake_Name131", "email": "fake@fake.is-a.dev" diff --git a/domains/farag.json b/domains/farag.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/farag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/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/fasdaa.json b/domains/fasdaa.json deleted file mode 100644 index 7004eafa8..000000000 --- a/domains/fasdaa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "boomer4boomer", - "email": "abdulkx06epic@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file 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/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 deleted file mode 100644 index dc7133f05..000000000 --- a/domains/femboy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "antithense", - "email": "nuffimail33@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/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/files.nota.json b/domains/files.nota.json new file mode 100644 index 000000000..9f3b53c56 --- /dev/null +++ b/domains/files.nota.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "dewiscool", + "email": "zerolikecyber.2005@gmail.com", + "discord": "878821057748926534" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/filip-razek.json b/domains/filip-razek.json deleted file mode 100644 index b0d361569..000000000 --- a/domains/filip-razek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "FilipRazek", - "email": "filip.razek@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/filo.json b/domains/filo.json deleted file mode 100644 index 93d0bdbd2..000000000 --- a/domains/filo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Filo6699", - "email": "karka2-6@rambler.ru" - }, - "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/fincho.json b/domains/fincho.json deleted file mode 100644 index 4b9115aa0..000000000 --- a/domains/fincho.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "finchodev", - "email": "zeltux21@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" - } -} \ 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 deleted file mode 100644 index 991efa2b2..000000000 --- a/domains/finny.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "FinnyMarigold58", - "email": "teganherring2016@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/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/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/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/floppa.json b/domains/floppa.json deleted file mode 100644 index 5ff7a8db6..000000000 --- a/domains/floppa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Luxxy-GF", - "email": "deniedaddicted@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/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 deleted file mode 100644 index 52e753f4a..000000000 --- a/domains/fluxate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NxyyLOL", - "email": "nxyylol@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/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/fndn.json b/domains/fndn.json deleted file mode 100644 index 79ac44dcf..000000000 --- a/domains/fndn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TrivCodez", - "email": "Jayeshpoudel+ha@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/foo.json b/domains/foo.json deleted file mode 100644 index ab10003aa..000000000 --- a/domains/foo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mkemal", - "email": "mkemalkorkmaz@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/foxsden.json b/domains/foxsden.json index 11baf44c9..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": [ @@ -11,6 +11,6 @@ "185.199.111.153" ], "MX": ["mx1.forwardemail.net"], - "TXT": ["forward-email=foxsdenyt@gmail.com", "_github-pages-challenge-FoxsDenYT.foxsden=37455d1a9cf706acc4f0cd6ada2ce7"] + "TXT": "forward-email=foxsdenyt@gmail.com" } } 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/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 deleted file mode 100644 index f7f3e29e6..000000000 --- a/domains/frost.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "mackrz", - "email": "macio181@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "MX": ["hosts.is-a.dev"], - "TXT": [ - "v=spf1 a mx ip4:217.174.245.249 ~all", - "_github-pages-challenge-mackrz.frost.is-a.dev=def12fb95f33931df81e99f8e01c5c" - ] - } -} \ No newline at end of file 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/fuccsoc.json b/domains/fuccsoc.json index a6d5eff39..eb5f7f2b7 100644 --- a/domains/fuccsoc.json +++ b/domains/fuccsoc.json @@ -1,10 +1,11 @@ - { "owner": { "username": "fuccsoc", "email": "me@fuccsoc.com" }, "record": { + "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], + "TXT": [ "v=spf1 include:spf.improvmx.com ~all" ], "URL": "https://fuccsoc.me" } } 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/furry.json b/domains/furry.json deleted file mode 100644 index 8da97f979..000000000 --- a/domains/furry.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Furrycality", - "email": "furrycality@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/furrycality.json b/domains/furrycality.json deleted file mode 100644 index 8da97f979..000000000 --- a/domains/furrycality.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Furrycality", - "email": "furrycality@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/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 deleted file mode 100644 index 1016a4b6a..000000000 --- a/domains/gabriel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Gabriel-lrx", - "email": "gabriel.reheb@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/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/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 deleted file mode 100644 index 907d20837..000000000 --- a/domains/gapindang.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "pindang-cloud", - "email": "gavinku890@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/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 deleted file mode 100644 index 78a731243..000000000 --- a/domains/gaurav87565.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gaurav87565", - "email": "pavithrashreeuchil@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/gauravgupta.json b/domains/gauravgupta.json deleted file mode 100644 index 344d4b9f6..000000000 --- a/domains/gauravgupta.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GauravGupta256", - "email": "gauravgupta25608@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/gauravgupta256.json b/domains/gauravgupta256.json deleted file mode 100644 index 344d4b9f6..000000000 --- a/domains/gauravgupta256.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GauravGupta256", - "email": "gauravgupta25608@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/gautam.json b/domains/gautam.json deleted file mode 100644 index 3b0f52c34..000000000 --- a/domains/gautam.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "GautamMKGarg", - "email": "", - "twitter": "GautamMKGarg" - }, - "record": { - "URL": "https://www.fiverr.com/gautammkgarg" - } -} 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/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 deleted file mode 100644 index 98c06df3d..000000000 --- a/domains/geckopico.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "davior", - "email": "david.iorlano@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/genevera.json b/domains/genevera.json deleted file mode 100644 index 35805d653..000000000 --- a/domains/genevera.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "genevera", - "email": "genevera.codes+github@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/gfn.json b/domains/gfn.json deleted file mode 100644 index 424b83cd4..000000000 --- a/domains/gfn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kolims", - "email": "kolimss1111@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/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/ghalibcraft.json b/domains/ghalibcraft.json deleted file mode 100644 index 930bc083e..000000000 --- a/domains/ghalibcraft.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Ghalib-craftLeProgrammeur", - "email": "ghalibmezeghiche2012@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/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/giovannirapa.json b/domains/giovannirapa.json deleted file mode 100644 index 456522d66..000000000 --- a/domains/giovannirapa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Givaa", - "email": "rapagiovanni@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/git-hoe.json b/domains/git-hoe.json deleted file mode 100644 index 5ebd4b3d1..000000000 --- a/domains/git-hoe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "git-hoe", - "email": "haxer@disroot.org" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/git.json b/domains/git.json deleted file mode 100644 index a4b5610d5..000000000 --- a/domains/git.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "git-hoe", - "email": "haxer@disroot.org" - }, - "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/git.winter.json b/domains/git.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/git.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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 deleted file mode 100644 index 1679a75ca..000000000 --- a/domains/glqch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "joythejoystick1", - "email": "midoayoub778@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index e3b992e5f..000000000 --- a/domains/goobric.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "goobric", - "email": "goobric@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/goobsoda.json b/domains/goobsoda.json new file mode 100644 index 000000000..457eaf834 --- /dev/null +++ b/domains/goobsoda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreadGhoti1", + "email": "breadghoti@gmail.com" + }, + "record": { + "A": ["134.56.183.128"] + } +} 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 deleted file mode 100644 index 8fc8f6aef..000000000 --- a/domains/gopalji.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gopaljigaur", - "email": "contact@gopalji.me" - }, - "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/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 deleted file mode 100644 index 031eea1a9..000000000 --- a/domains/gruu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gruufr", - "email": "tirisxz@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/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 deleted file mode 100644 index 34cd3874d..000000000 --- a/domains/gunethra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Gunethra", - "email": "gunethrarp1@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/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 deleted file mode 100644 index 33c91323f..000000000 --- a/domains/gurkirat.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "gurkiratz", - "email": "singh.gurkirat2707@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" - } -} \ No newline at end of file diff --git a/domains/gurubhai.json b/domains/gurubhai.json deleted file mode 100644 index bd3a9672d..000000000 --- a/domains/gurubhai.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "Guru322", - "email": "sahoogurucharan00@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "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/gurubot.json b/domains/gurubot.json deleted file mode 100644 index 813932e1f..000000000 --- a/domains/gurubot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Guru322", - "email": "sahoogurucharan00@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/guyen.json b/domains/guyen.json deleted file mode 100644 index 0cacdad5e..000000000 --- a/domains/guyen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CommanderGuyen", - "email": "commanderguyen@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/h4sh.json b/domains/h4sh.json deleted file mode 100644 index ff328e34c..000000000 --- a/domains/h4sh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Master290", - "email": "contact@rzx.lol" - }, - "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" - } -} \ 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/halelui.json b/domains/halelui.json deleted file mode 100644 index f5abf567d..000000000 --- a/domains/halelui.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Legend256", - "email": "heroku.1st.dyno@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/halil.json b/domains/halil.json deleted file mode 100644 index 985ab99b5..000000000 --- a/domains/halil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ConnorDoesDev", - "email": "halil_ismail@yahoo.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/halokod.json b/domains/halokod.json deleted file mode 100644 index c2595f224..000000000 --- a/domains/halokod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "denizkuzey06", - "email": "kralpasa1993@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/happyenderman.json b/domains/happyenderman.json deleted file mode 100644 index 891654ba4..000000000 --- a/domains/happyenderman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "happyendermangit", - "email": "" - }, - "record": { - "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/hariienesh.json b/domains/hariienesh.json deleted file mode 100644 index 5b51b7ced..000000000 --- a/domains/hariienesh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CosmicCodeBase", - "email": "hariienesh.cool@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/haris.json b/domains/haris.json deleted file mode 100644 index 4cd9c21f5..000000000 --- a/domains/haris.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My portfolio website.", - "owner": { - "username": "hariswhdn", - "email": "", - "twitter": "hariswhdn", - "discord": "hariswhdn" - }, - "record": { - "CNAME": "uiux.eu.org" - } -} 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/harrystudy.json b/domains/harrystudy.json deleted file mode 100644 index 2c19e31c1..000000000 --- a/domains/harrystudy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hongglong", - "email": "dylanluong3@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/harrythenegro.json b/domains/harrythenegro.json deleted file mode 100644 index 2c19e31c1..000000000 --- a/domains/harrythenegro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hongglong", - "email": "dylanluong3@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/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 deleted file mode 100644 index 41023df24..000000000 --- a/domains/harshrai.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Harshrai1023", - "email": "harshrai1023@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/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 deleted file mode 100644 index 9e2bad4e7..000000000 --- a/domains/harukipy.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Anandkrishna34", - "email": "aanandkrishna344@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" - } -} \ 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 deleted file mode 100644 index ae5caae10..000000000 --- a/domains/hazelnut.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TheMrRedstone", - "email": "hazelnutzhoney@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/hazwana.json b/domains/hazwana.json deleted file mode 100644 index 3e78f2175..000000000 --- a/domains/hazwana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hazwana", - "email": "n.hazwana@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/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 deleted file mode 100644 index 3d5ed03cd..000000000 --- a/domains/hecterbonha.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hecterbonha", - "email": "untungsoandryanto@gmail.com" - }, - "record": { - "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/hehe.json b/domains/hehe.json deleted file mode 100644 index 760ab6b4d..000000000 --- a/domains/hehe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Ebrahim-Ramadan", - "email": "ramadanebrahim791@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/heindale.json b/domains/heindale.json deleted file mode 100644 index 704885d2b..000000000 --- a/domains/heindale.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Heindale", - "email": "danilanil123@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" - } -} \ No newline at end of file diff --git a/domains/hekker.json b/domains/hekker.json deleted file mode 100644 index 271862721..000000000 --- a/domains/hekker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hekker4404", - "email": "akhil.ambati@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/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 deleted file mode 100644 index dd140730e..000000000 --- a/domains/hello.qqg00.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ppg00", - "email": "vx2dsk@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/hellscaped.json b/domains/hellscaped.json deleted file mode 100644 index b86506719..000000000 --- a/domains/hellscaped.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Hellscaped", - "email": "tappsyo@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/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/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 deleted file mode 100644 index d2b2cb0c2..000000000 --- a/domains/hex4.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Hex-4", - "email": "nenex54@pm.me" - }, - "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/hexadecimalbyte.json b/domains/hexadecimalbyte.json new file mode 100644 index 000000000..2be06c5ab --- /dev/null +++ b/domains/hexadecimalbyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HexadecimalByte", + "email": "stefan.wulf@t-online.de" + }, + "record": { + "URL": "https://hexadecimalbyte.github.io" + } +} 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/heyjumanji.json b/domains/heyjumanji.json deleted file mode 100644 index a1fd687e9..000000000 --- a/domains/heyjumanji.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "heyjumanji", - "email": "madhuchutiya.unhinge650@silomails.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/heyvikki.json b/domains/heyvikki.json deleted file mode 100644 index ec670fa74..000000000 --- a/domains/heyvikki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Heyvikki's Website", - "repo": "https://github.com/heyvikki/heyvikki.github.io", - "owner": { - "username": "heyvikki", - "email": "singhvikal891@gmail.com" - }, - "record": { - "CNAME": "heyvikki.pages.dev" - } -} 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/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/himanshusardana.json b/domains/himanshusardana.json deleted file mode 100644 index d67350783..000000000 --- a/domains/himanshusardana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HimanshuSardana", - "email": "himanshusardana2005@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/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 deleted file mode 100644 index e18715373..000000000 --- a/domains/hiro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "XxHiroTTVxX", - "email": "phoenixmerlinwolf894@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index 83474d31e..000000000 --- a/domains/hntr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HunterAPI", - "email": "forsynapse123@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/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 deleted file mode 100644 index 4c272d6f7..000000000 --- a/domains/holgeb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "niho9807", - "email": "niklas.holke@gmx.de" - }, - "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/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 deleted file mode 100644 index 4f6c3f917..000000000 --- a/domains/hosting-test.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/hosts.json b/domains/hosts.json deleted file mode 100644 index 059af2e02..000000000 --- a/domains/hosts.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "phenax5@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"], - "AAAA": ["2a00:da00:1800:83a4::1"] - } -} diff --git a/domains/hotdevs.json b/domains/hotdevs.json deleted file mode 100644 index 51c54fde5..000000000 --- a/domains/hotdevs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "musu10gj", - "email": "samzagamer4@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/houlton.json b/domains/houlton.json deleted file mode 100644 index 8416f290e..000000000 --- a/domains/houlton.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ahoulton", - "email": "ignhoulton@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/houxiaozhao.json b/domains/houxiaozhao.json deleted file mode 100644 index 219f19c40..000000000 --- a/domains/houxiaozhao.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "houxiaozhao", - "email": "891855179@qq.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/hqmt.json b/domains/hqmt.json deleted file mode 100644 index f936119b4..000000000 --- a/domains/hqmt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HQMTGaming", - "email": "hoangquocminhthien@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/hqmtgaming.json b/domains/hqmtgaming.json deleted file mode 100644 index f936119b4..000000000 --- a/domains/hqmtgaming.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HQMTGaming", - "email": "hoangquocminhthien@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/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 deleted file mode 100644 index 6bf9f5a3f..000000000 --- a/domains/httphypixelnet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "httphypixelnet", - "email": "intenstudios369@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/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/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/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 deleted file mode 100644 index d9f28916f..000000000 --- a/domains/hvn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "goesbyabhi", - "email": "abxisxekpanda@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/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/hyno.json b/domains/hyno.json deleted file mode 100644 index f9b5121c7..000000000 --- a/domains/hyno.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HyNO-IR", - "email": "hynoyt.ir@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/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 deleted file mode 100644 index 36451cae8..000000000 --- a/domains/hypernexus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "notHyperNexus", - "email": "phamvansau234@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/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/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/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 deleted file mode 100644 index 0327e8e2c..000000000 --- a/domains/iceed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mjnaous", - "email": "mj@naous.eu.org" - }, - "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/icehead.json b/domains/icehead.json deleted file mode 100644 index 490cfebf0..000000000 --- a/domains/icehead.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Ice-Head", - "email": "heads.ice@protonmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "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 deleted file mode 100644 index 11ce7ceb0..000000000 --- a/domains/icevixen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zirmith", - "email": "f2v74yt@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/idoli.json b/domains/idoli.json deleted file mode 100644 index ce6510fe4..000000000 --- a/domains/idoli.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "D0TM4N", - "email": "idoinschool@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/ihk.json b/domains/ihk.json deleted file mode 100644 index fa05957b0..000000000 --- a/domains/ihk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kresswell", - "email": "simonecresswell@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/ihkgpt.json b/domains/ihkgpt.json deleted file mode 100644 index fa05957b0..000000000 --- a/domains/ihkgpt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kresswell", - "email": "simonecresswell@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/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 deleted file mode 100644 index a0acb6a06..000000000 --- a/domains/ilakian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Ilakiancs", - "email": "ilakiancs@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/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/images.winter.json b/domains/images.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/images.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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/imdsamimakhter.json b/domains/imdsamimakhter.json deleted file mode 100644 index 85ed004a4..000000000 --- a/domains/imdsamimakhter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "imdsamimakhter", - "email": "mdsamimakhter2001@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/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 deleted file mode 100644 index 931f387ff..000000000 --- a/domains/imran.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ahmedimran35", - "email": "romeorajkumar098@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/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 deleted file mode 100644 index 931f387ff..000000000 --- a/domains/imu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ahmedimran35", - "email": "romeorajkumar098@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/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/inam.json b/domains/inam.json deleted file mode 100644 index f81ae11d6..000000000 --- a/domains/inam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "inamurahman", - "email": "inamvkd@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/indodev.json b/domains/indodev.json new file mode 100644 index 000000000..0e882067d --- /dev/null +++ b/domains/indodev.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Khuirul-Huda", + "email": "hudah2102@gmail.com", + "discord": "694850450410700831" + }, + + "record": { + "A": ["178.128.211.205"] + } + } + \ No newline at end of file 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 deleted file mode 100644 index fa05957b0..000000000 --- a/domains/infinityhackers.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kresswell", - "email": "simonecresswell@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/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/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 deleted file mode 100644 index 6c986115d..000000000 --- a/domains/interstellar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@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/interstellar.ultrix.json b/domains/interstellar.ultrix.json deleted file mode 100644 index 6c986115d..000000000 --- a/domains/interstellar.ultrix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@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/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 deleted file mode 100644 index 4f6c3f917..000000000 --- a/domains/is-a-dev-testing.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/isaac.json b/domains/isaac.json new file mode 100644 index 000000000..85c0280cb --- /dev/null +++ b/domains/isaac.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "IsaacTouhami", + "email": "isaaco7274@gmail.com" + }, + + "record": { + "CNAME": "isaactouhami.github.io" + } +} diff --git a/domains/isdwk.json b/domains/isdwk.json deleted file mode 100644 index 01be5e070..000000000 --- a/domains/isdwk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Brickmasterr", - "email": "dwiki200304@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/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/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 deleted file mode 100644 index b45389d24..000000000 --- a/domains/j-x01.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "XxJVG1xX", - "email": "jvgvgaa@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/j-x1.json b/domains/j-x1.json deleted file mode 100644 index b45389d24..000000000 --- a/domains/j-x1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "XxJVG1xX", - "email": "jvgvgaa@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/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/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/jamez.json b/domains/jamez.json deleted file mode 100644 index c392e4547..000000000 --- a/domains/jamez.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jamesisacutedog", - "email": "jamezemailreal@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/jams.json b/domains/jams.json deleted file mode 100644 index 227d8af96..000000000 --- a/domains/jams.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "g1gabyteDEV", - "email": "jamesmarke7@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/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/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 deleted file mode 100644 index a0fda613b..000000000 --- a/domains/jarren.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JDirk01", - "email": "jarrendirk4@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/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 deleted file mode 100644 index 25fd6253b..000000000 --- a/domains/jasonthomas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Wizrst641", - "email": "slxppyznet18@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/javierpastore.json b/domains/javierpastore.json deleted file mode 100644 index bf621a217..000000000 --- a/domains/javierpastore.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "yangxiaokun", - "email": "619742721@qq.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/jawis.json b/domains/jawis.json new file mode 100644 index 000000000..b49dd28f6 --- /dev/null +++ b/domains/jawis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["103.114.200.170"] + } +} 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 deleted file mode 100644 index c8a7b686d..000000000 --- a/domains/jbugel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jbugel-lol", - "email": "jbugel.lol.github@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/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/jim.json b/domains/jim.json deleted file mode 100644 index bd5bc1e67..000000000 --- a/domains/jim.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jimmy20180130", - "email": "jimmy20180130@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/jimjimcb.json b/domains/jimjimcb.json deleted file mode 100644 index 3813d6169..000000000 --- a/domains/jimjimcb.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jimjimcbyt", - "email": "jimjimcbyt@gmail.com" - }, - "record": { - "A": ["60.249.193.112"] - } -} 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 deleted file mode 100644 index 11c92e898..000000000 --- a/domains/jindx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JinDX", - "email": "dox.jin@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/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/jjsuscc.json b/domains/jjsuscc.json new file mode 100644 index 000000000..1dd6df9eb --- /dev/null +++ b/domains/jjsuscc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jc-discdev", + "email": "jjsuscc@gmail.com" + }, + "record": { + "CNAME": "darkdev.es" + } +} diff --git a/domains/jkb-bio.json b/domains/jkb-bio.json deleted file mode 100644 index a11940628..000000000 --- a/domains/jkb-bio.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jakublua", - "email": "jkb@courvix.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/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 deleted file mode 100644 index b0ef44d55..000000000 --- a/domains/joaozeira.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "joaozeiradev", - "email": "joaofelipegamer24@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/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/johndoe.json b/domains/johndoe.json deleted file mode 100644 index 550a484c2..000000000 --- a/domains/johndoe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "pythonhuman", - "email": "sai.pasumarthi@stu.argyleisd.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/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 deleted file mode 100644 index f0d0eec46..000000000 --- a/domains/johnmortan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Atr-e", - "email": "eatr577@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/jonas.json b/domains/jonas.json deleted file mode 100644 index 24c743371..000000000 --- a/domains/jonas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "WallnussJonas", - "email": "jonas.werner.nov1999@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/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/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/jtgr.json b/domains/jtgr.json deleted file mode 100644 index a11940628..000000000 --- a/domains/jtgr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jakublua", - "email": "jkb@courvix.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/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/juliocesar.json b/domains/juliocesar.json deleted file mode 100644 index 6148b124e..000000000 --- a/domains/juliocesar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jcwisniewski", - "email": "julio.wisnieski@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/jumanji.json b/domains/jumanji.json deleted file mode 100644 index c354d0c6f..000000000 --- a/domains/jumanji.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "heyjumanji", - "email": "madhuchutiya.unhinge650@silomails.com" - }, - "record": { - "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/junior.json b/domains/junior.json deleted file mode 100644 index ac014dd71..000000000 --- a/domains/junior.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "juniorbutyeah", - "email": "junior4u@reborn.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } - } \ No newline at end of file diff --git a/domains/jupie.json b/domains/jupie.json deleted file mode 100644 index 2e3142c9d..000000000 --- a/domains/jupie.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Jupiee", - "email": "mzkplayz1@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/justcody.json b/domains/justcody.json deleted file mode 100644 index f9afe869c..000000000 --- a/domains/justcody.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JWeinelt", - "email": "julian.weinelt@outlook.de" - }, - "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/justevil.json b/domains/justevil.json deleted file mode 100644 index c44d509b4..000000000 --- a/domains/justevil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "EvilG-MC", - "email": "thatjustevil@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/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/jx-1.json b/domains/jx-1.json deleted file mode 100644 index b45389d24..000000000 --- a/domains/jx-1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "XxJVG1xX", - "email": "jvgvgaa@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/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 deleted file mode 100644 index b45389d24..000000000 --- a/domains/jx1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "XxJVG1xX", - "email": "jvgvgaa@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/jz.json b/domains/jz.json deleted file mode 100644 index 45c849919..000000000 --- a/domains/jz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JZ1324", - "email": "zheng.joshua2@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/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/kainer.json b/domains/kainer.json deleted file mode 100644 index c60567d15..000000000 --- a/domains/kainer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ue5377", - "email": "kai.ner.h13r@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/kaist-server.json b/domains/kaist-server.json new file mode 100644 index 000000000..a81aade9b --- /dev/null +++ b/domains/kaist-server.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "predict-woo", + "email": "andyye.jongcye@gmail.com" + }, + "record": { + "A": ["130.162.135.186"] + } +} 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 deleted file mode 100644 index 75304257c..000000000 --- a/domains/kalebhumpal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kaleblub", - "email": "kaleblub@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/kamek.json b/domains/kamek.json deleted file mode 100644 index 01e8825f0..000000000 --- a/domains/kamek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kamek437", - "email": "hidden_tuetle427@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/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/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/karan.json b/domains/karan.json deleted file mode 100644 index e79fdef54..000000000 --- a/domains/karan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Karandev2007", - "email": "karangamerz207@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/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 deleted file mode 100644 index 437840057..000000000 --- a/domains/kasu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Trandang-hiendev", - "email": "trandanghien120@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/kasuu.json b/domains/kasuu.json deleted file mode 100644 index 437840057..000000000 --- a/domains/kasuu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Trandang-hiendev", - "email": "trandanghien120@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/kaushal.json b/domains/kaushal.json deleted file mode 100644 index 11a564a78..000000000 --- a/domains/kaushal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kks007", - "email": "kaushalkishor10702@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/kavinned.json b/domains/kavinned.json deleted file mode 100644 index d12a04d9d..000000000 --- a/domains/kavinned.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kafeicheez2", - "email": "kavin.ned@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/kawanua.json b/domains/kawanua.json new file mode 100644 index 000000000..1c79466c5 --- /dev/null +++ b/domains/kawanua.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/kawanuaid", + "owner": { + "username": "kawanuaid", + "twitter": "kawanua", + "email": "" + }, + + "record": { + "URL": "https://www.kawanua.id" + } +} 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/kayg.json b/domains/kayg.json deleted file mode 100644 index 9d2ef1c9a..000000000 --- a/domains/kayg.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "kayg04", - "email": "mail@kayg.org" - }, - "record": { - "A": ["144.76.164.206"] - } -} 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/kelvinmjr707.json b/domains/kelvinmjr707.json deleted file mode 100644 index 9b3d13779..000000000 --- a/domains/kelvinmjr707.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "KelvinMJr707", - "email": "KelvinMJr707@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/kenanneo.json b/domains/kenanneo.json deleted file mode 100644 index 186e9d707..000000000 --- a/domains/kenanneo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kenanneo", - "email": "kenanneo2@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/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/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 deleted file mode 100644 index fcf903442..000000000 --- a/domains/keyboarding-advanced-test.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "deecoyz", - "email": "swr86.a8z72.a38o4.qm65c.lt0bz@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" - } -} \ 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/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/khaidev.json b/domains/khaidev.json new file mode 100644 index 000000000..b972bc350 --- /dev/null +++ b/domains/khaidev.json @@ -0,0 +1,11 @@ +{ + "description": "Hello! I am Khai but if you want you can call me Ken! I am a self thought Developer and mostly code Discord Bots for others for fun! Sometimes I even get donations back, which makes me even more happier and results in having more fun at coding.", + "repo": "https://github.com/TruongDuyKhai/TruongDuyKhai.github.io", + "owner": { + "username": "TruongDuyKhai", + "email": "truongduykhai1012@gmail.com" + }, + "record": { + "CNAME": "truongduykhai.github.io" + } +} diff --git a/domains/khasan-tokhirov.json b/domains/khasan-tokhirov.json deleted file mode 100644 index c9d227101..000000000 --- a/domains/khasan-tokhirov.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "FrostOnFire", - "email": "khasan.tokhirov@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/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/kid.json b/domains/kid.json new file mode 100644 index 000000000..96a577f05 --- /dev/null +++ b/domains/kid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kawanuaid", + "twitter": "kawanua", + "email": "" + }, + + "record": { + "URL": "https://dev.kawanua.id" + } +} 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 deleted file mode 100644 index a59158a93..000000000 --- a/domains/kime.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Mikelikesgames1", - "email": "mikeyhackjob21@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/kio.json b/domains/kio.json deleted file mode 100644 index 581cfec58..000000000 --- a/domains/kio.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "YoruAkio", - "email": "yoruakio@proton.me" - }, - "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" - } -} \ No newline at end of file diff --git a/domains/kira.json b/domains/kira.json deleted file mode 100644 index ba2f95c6f..000000000 --- a/domains/kira.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jwan9714", - "email": "jwan9714@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/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/kishannnn.json b/domains/kishannnn.json deleted file mode 100644 index 367c6e940..000000000 --- a/domains/kishannnn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CycloneAddons", - "email": "cycloneaddon@gmail.com" - }, - "record": { - "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/kitsune.json b/domains/kitsune.json new file mode 100644 index 000000000..87bac2432 --- /dev/null +++ b/domains/kitsune.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KitsuneDev", + "email": "kitsune@akitsune.dev" + }, + "record": { + "URL": "https://akitsune.dev" + } +} 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/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/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 deleted file mode 100644 index 7921d30b1..000000000 --- a/domains/kntlpop.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "suhujetlag5", - "email": "suhujetlag5@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/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/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/koopa.json b/domains/koopa.json deleted file mode 100644 index 0ba154eb2..000000000 --- a/domains/koopa.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "KoopaCode", - "email": "koopa@koopa.gg", - "twitter": "KioKoopa", - "discord": "koopakio" - }, - "record": { - "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/koopacode.json b/domains/koopacode.json deleted file mode 100644 index 6766676a3..000000000 --- a/domains/koopacode.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "KoopaCode", - "email": "AndrewLife92@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/korabase.json b/domains/korabase.json new file mode 100644 index 000000000..5f3360e00 --- /dev/null +++ b/domains/korabase.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WhyuMC", + "email": "r12350042@gmail.com" + }, + "record": { + "CNAME": "site.namedhosting.com" + } +} 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 deleted file mode 100644 index abe2a05ca..000000000 --- a/domains/koru.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "justkorudev", - "email": "popetopotolo@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/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 deleted file mode 100644 index 309eafe25..000000000 --- a/domains/koushik.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "koek67", - "email": "krishnan.koushik@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/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 deleted file mode 100644 index 92e7cb91e..000000000 --- a/domains/kramiikk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kramiikk", - "email": "hifund@yandex.ru" - }, - "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/kresswell.json b/domains/kresswell.json deleted file mode 100644 index fa05957b0..000000000 --- a/domains/kresswell.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kresswell", - "email": "simonecresswell@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/kris.json b/domains/kris.json deleted file mode 100644 index 145771d7c..000000000 --- a/domains/kris.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "krish73211", - "email": "krish732100@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/krish.json b/domains/krish.json deleted file mode 100644 index 145771d7c..000000000 --- a/domains/krish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "krish73211", - "email": "krish732100@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/krishna03.json b/domains/krishna03.json deleted file mode 100644 index fe5ae4302..000000000 --- a/domains/krishna03.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Krishnabohra", - "email": "Krishnabohra2013@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/krishna033.json b/domains/krishna033.json deleted file mode 100644 index fe5ae4302..000000000 --- a/domains/krishna033.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Krishnabohra", - "email": "Krishnabohra2013@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/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 deleted file mode 100644 index 43c418f05..000000000 --- a/domains/kryclopz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kryclopz-development", - "email": "officialkryclopz@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/krzysiu.json b/domains/krzysiu.json deleted file mode 100644 index dd65edd13..000000000 --- a/domains/krzysiu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ProfKrzys", - "email": "krzysztof2011@hotmail.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/kshitij.json b/domains/kshitij.json deleted file mode 100644 index 44397f87d..000000000 --- a/domains/kshitij.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Kshitij Subedi", - "owner": { - "username": "kshitijsubedi", - "email": "2subedikshitij@gmail.com" - }, - "record": { - "CNAME": "kshitijsubedi.com.np" - } -} diff --git a/domains/ksingh.json b/domains/ksingh.json deleted file mode 100644 index 179f4c18b..000000000 --- a/domains/ksingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "KSinghofficial", - "email": "ksinghofficial@proton.me" - }, - "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/kuat.json b/domains/kuat.json deleted file mode 100644 index 92e7cb91e..000000000 --- a/domains/kuat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kramiikk", - "email": "hifund@yandex.ru" - }, - "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/kuba.json b/domains/kuba.json index 1f6b0e6d5..d2321251c 100644 --- a/domains/kuba.json +++ b/domains/kuba.json @@ -1,10 +1,12 @@ { - "owner": { - "username": "kob-kuba", - "telegram": "kob_kuba", - "email": "admin@kobb.tech" - }, - "record": { - "URL": "https://kob.gay" - } + "owner": { + "telegram": "idkuba", + "username": "kbvivi", + "email": "kbvivi.contact@gmail.com", + "discord": "105170831130234880" + }, + "repo": "https://github.com/kbvivi/kuba.lol", + "record": { + "URL": "https://kuba.lol" + } } 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 deleted file mode 100644 index 2c9dcb890..000000000 --- a/domains/kurokami.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "k3rokami", - "email": "honghongleong2@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/kuzey.json b/domains/kuzey.json deleted file mode 100644 index 51b28e454..000000000 --- a/domains/kuzey.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "duzelicem", - "email": "ardagokce0682@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/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/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 deleted file mode 100644 index 95f22f401..000000000 --- a/domains/kyakou.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kyakou", - "email": "ali_a19@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/kyle.json b/domains/kyle.json deleted file mode 100644 index e676647fc..000000000 --- a/domains/kyle.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My CDN", - "owner": { - "username": "JavaScriptpy", - "email": "zerotwo.on.discord@gmail.com" - }, - "record": { - "CNAME": "4610390a-31b4-45f7-9a4a-4c75e28ecfbd.repl.co" - } -} diff --git a/domains/kylomaskgamer.json b/domains/kylomaskgamer.json deleted file mode 100644 index 5449ad911..000000000 --- a/domains/kylomaskgamer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "KylomaskGamer", - "email": "kyle@kavenv.net" - }, - "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/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 deleted file mode 100644 index 0cdd45522..000000000 --- a/domains/lacyx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LacyXosu", - "email": "nozoska@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/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/laluxx.json b/domains/laluxx.json deleted file mode 100644 index 8aac87995..000000000 --- a/domains/laluxx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "laluxx", - "email": "lorenzoaddamo10@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/lamdev.json b/domains/lamdev.json deleted file mode 100644 index 83fdc615a..000000000 --- a/domains/lamdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kentjuno7z", - "email": "lamdev1212@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ 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/lap.json b/domains/lap.json deleted file mode 100644 index e08febfd4..000000000 --- a/domains/lap.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ItsLap", - "email": "alexanderpaulwheeler15@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/latuh.json b/domains/latuh.json deleted file mode 100644 index fe8e7d0ee..000000000 --- a/domains/latuh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "latuh", - "email": "latitud@duck.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/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 deleted file mode 100644 index 85993512c..000000000 --- a/domains/lcdled.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LCDLED", - "email": "TheCatatomic@outlook.com" - }, - "record": { - "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/legalise.json b/domains/legalise.json deleted file mode 100644 index b39362a36..000000000 --- a/domains/legalise.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Rahib777-7", - "email": "rahibrahman1210@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/legend-sabbir.json b/domains/legend-sabbir.json deleted file mode 100644 index 0dfcc44fa..000000000 --- a/domains/legend-sabbir.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "legend-sabbir", - "email": "sabbirhossain.trash@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/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 deleted file mode 100644 index 5436a8c28..000000000 --- a/domains/lenn106.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Lenn106", - "email": "lennongreyson@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/lennymaxmine.json b/domains/lennymaxmine.json deleted file mode 100644 index 6740aca7c..000000000 --- a/domains/lennymaxmine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LennyMaxMine", - "email": "kurve_bots0z@icloud.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/leogoetz.json b/domains/leogoetz.json deleted file mode 100644 index af154117a..000000000 --- a/domains/leogoetz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vLeov", - "email": "leo.goetz2008@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/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/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/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 deleted file mode 100644 index 9b0d635b5..000000000 --- a/domains/liam-h.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Lonyx-H", - "email": "liam.hedin.pro@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/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/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 deleted file mode 100644 index 143add315..000000000 --- a/domains/littleneko.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CnyAnime", - "email": "mrdriveappstudios@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/llko.json b/domains/llko.json deleted file mode 100644 index 345c40265..000000000 --- a/domains/llko.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LLKO101", - "email": "yo1sefooop@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/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/logan2005.json b/domains/logan2005.json deleted file mode 100644 index 3d59d5654..000000000 --- a/domains/logan2005.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "soviet783", - "email": "logannorman2005@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/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 deleted file mode 100644 index cbc953a16..000000000 --- a/domains/logxnic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Nexus-sudo", - "email": "loganlarwood2019@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/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 deleted file mode 100644 index 93efbb43e..000000000 --- a/domains/lol.squaresmp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SquareSmp", - "email": "squaresmp@asia.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/lolz.json b/domains/lolz.json deleted file mode 100644 index be4dc5d57..000000000 --- a/domains/lolz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LolzTheDev", - "email": "lolzthegreat.0223@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/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/lori28167.json b/domains/lori28167.json deleted file mode 100644 index 82ee22b45..000000000 --- a/domains/lori28167.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lori28167", - "email": "lorenzo.cozzaglio@outlook.it" - }, - "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/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/lsprgabriel.json b/domains/lsprgabriel.json deleted file mode 100644 index 70e50d00f..000000000 --- a/domains/lsprgabriel.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "lsprgabriel", - "email": "ogabrielpereira@pm.me" - }, - "record": { - "CNAME": "www.lsprlab.cloud" - } -} 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 deleted file mode 100644 index f96f97c0a..000000000 --- a/domains/lucaforever.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lucaforever", - "email": "scorpinyesyeson@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/lucaledd.json b/domains/lucaledd.json deleted file mode 100644 index 251cb180c..000000000 --- a/domains/lucaledd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lucaforever", - "email": "scorpinyesyeson@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index 309b76cc2..000000000 --- a/domains/lucid.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Lucideds", - "email": "lucideds@proton.me" - }, - "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" - } -} \ No newline at end of file diff --git a/domains/luisandre.json b/domains/luisandre.json new file mode 100644 index 000000000..c45b0b5bf --- /dev/null +++ b/domains/luisandre.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luis073094", + "email": "luis073094@gmail.com" + }, + "record": { + "CNAME": "portafolio-ctll.onrender.com" + } +} diff --git a/domains/luna.json b/domains/luna.json index 218f42211..87bac2432 100644 --- a/domains/luna.json +++ b/domains/luna.json @@ -1,11 +1,9 @@ { - "description": "Luna Seemann's personal website", - "repo": "https://github.com/Luna-devv/luna-site", "owner": { - "username": "Luna-devv", - "email": "luna@waya.one" + "username": "KitsuneDev", + "email": "kitsune@akitsune.dev" }, "record": { - "A": ["51.161.24.80"] + "URL": "https://akitsune.dev" } } diff --git a/domains/luqmanity.json b/domains/luqmanity.json deleted file mode 100644 index 618bfe59a..000000000 --- a/domains/luqmanity.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "luqmanity", - "email": "luqman.yazrie@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/luzivr.json b/domains/luzivr.json deleted file mode 100644 index 7f6a4bc9f..000000000 --- a/domains/luzivr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "zjeffro", - "email": "jdvanlear@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/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/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/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 deleted file mode 100644 index 0962bc72c..000000000 --- a/domains/maceng.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "MacengBOT", - "email": "macengbot@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/machi.json b/domains/machi.json deleted file mode 100644 index 044b55d86..000000000 --- a/domains/machi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "femachi", - "email": "ocubrisme@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/mafarag.json b/domains/mafarag.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/mafarag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/magdi.json b/domains/magdi.json deleted file mode 100644 index 1ef3bd905..000000000 --- a/domains/magdi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "coeur85", - "email": "ahmed.magdi@msn.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/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/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/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/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.winter.json b/domains/mail.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/mail.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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/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 deleted file mode 100644 index 2f3667679..000000000 --- a/domains/majorhead.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "alephdfilms", - "email": "alephdiallo@mail.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/mak448a.json b/domains/mak448a.json index 86fc5ddb9..a07099e15 100644 --- a/domains/mak448a.json +++ b/domains/mak448a.json @@ -1,7 +1,7 @@ { "owner": { "username": "mak448a", - "email": "mak448a@gmail.com" + "email": "thracc448@gmail.com" }, "record": { "CNAME": "mak448a.github.io" diff --git a/domains/makeshiftartist.json b/domains/makeshiftartist.json deleted file mode 100644 index ddcf47993..000000000 --- a/domains/makeshiftartist.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "MakeShiftArtist", - "email": "MakeShiftDevelopment@proton.me" - }, - "record": { - "A": ["217.174.245.249"], - "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 deleted file mode 100644 index 32f4bb151..000000000 --- a/domains/mamad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mamadduh", - "email": "mna969@uowmail.edu.au" - }, - "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/mammad.json b/domains/mammad.json deleted file mode 100644 index bd83ea47b..000000000 --- a/domains/mammad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mammadzali", - "email": "mohamadzali@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/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/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 deleted file mode 100644 index 51e6a6b89..000000000 --- a/domains/manuel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Manueloso", - "email": "emanuelea.rega@itisvoltanapoli.edu.it" - }, - "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/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 deleted file mode 100644 index 8b0cdace2..000000000 --- a/domains/marby.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stanasxd", - "email": "stanasarts@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/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/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/markgurney.json b/domains/markgurney.json new file mode 100644 index 000000000..95d85f439 --- /dev/null +++ b/domains/markgurney.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Superchicken962", + "email": "superchicken9962@gmail.com" + }, + "record": { + "URL": "https://markgurney.cf/" + } +} diff --git a/domains/master.json b/domains/master.json deleted file mode 100644 index 6c05eaf9c..000000000 --- a/domains/master.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TheMaster223", - "email": "masteriscool223@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/masterle.json b/domains/masterle.json new file mode 100644 index 000000000..f6b796197 --- /dev/null +++ b/domains/masterle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mast3rle", + "email": "iam@mast3rle.xyz" + }, + "record": { + "URL": "https://dev.mast3rle.xyz" + } +} 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 deleted file mode 100644 index d74f8375a..000000000 --- a/domains/matt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Matt Casey is a Developer!", - "repo": "https://github.com/mattcasey", - "owner": { - "username": "mattcasey", - "email": "mattwad@gmail.com" - }, - "record": { - "URL": "https://www.linkedin.com/in/mbcasey" - } -} diff --git a/domains/mauricio.json b/domains/mauricio.json deleted file mode 100644 index 09ec5f28b..000000000 --- a/domains/mauricio.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Luceium", - "email": "mauriciom.curiel@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/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/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 deleted file mode 100644 index 0bb3e5e3c..000000000 --- a/domains/mazimez.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mazimez", - "email": "asif987patel@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/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.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/mc.winter.json b/domains/mc.winter.json deleted file mode 100644 index 260009c8b..000000000 --- a/domains/mc.winter.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"]} - -} 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 deleted file mode 100644 index 36e233813..000000000 --- a/domains/mdbesoain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mdbesoain", - "email": "mdbesoain@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index 0396c32d9..000000000 --- a/domains/meerveld.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "FabianMeerveld", - "email": "fabian.meerveld@student.hu.nl" - }, - "record": { - "A": ["20.160.193.51"] - } -} 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/mfarag.json b/domains/mfarag.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/mfarag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/mfused.json b/domains/mfused.json deleted file mode 100644 index b9dccc513..000000000 --- a/domains/mfused.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Mfused07", - "email": "fiverronlyokay@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/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 deleted file mode 100644 index 0327e8e2c..000000000 --- a/domains/mhmd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mjnaous", - "email": "mj@naous.eu.org" - }, - "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/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 deleted file mode 100644 index c70ecfd09..000000000 --- a/domains/miho.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Miho1254", - "email": "nguyenha280876@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/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/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/mingihihi.json b/domains/mingihihi.json deleted file mode 100644 index 957f0af69..000000000 --- a/domains/mingihihi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ModelVNN", - "email": "modelvnn@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/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 deleted file mode 100644 index b3f5dde2c..000000000 --- a/domains/minihoot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Hoot679", - "email": "henrymahlberg65@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/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/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/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/mnoger.json b/domains/mnoger.json deleted file mode 100644 index 2e9b98169..000000000 --- a/domains/mnoger.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "arabtalent", - "email": "lolhdselect@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/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 deleted file mode 100644 index 01b5231c3..000000000 --- a/domains/mohab.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zyelixify", - "email": "heroxmain@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/mohammed.json b/domains/mohammed.json deleted file mode 100644 index dd140730e..000000000 --- a/domains/mohammed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ppg00", - "email": "vx2dsk@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/mohand.json b/domains/mohand.json deleted file mode 100644 index 68156f035..000000000 --- a/domains/mohand.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mohandaklii", - "email": "mohandakliamara09@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/mohdjariullah.json b/domains/mohdjariullah.json deleted file mode 100644 index aa70ee03d..000000000 --- a/domains/mohdjariullah.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "Mohdjariullah", - "email": "mohdjariullah@gmail.com", - "twitter": "mohdjariullah", - "discord": "@jariullah" - }, - "record": { - "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/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 deleted file mode 100644 index 4d539f85a..000000000 --- a/domains/monissh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Monsstor", - "email": "itsamemonissh@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/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/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/mostafizurrahman.json b/domains/mostafizurrahman.json deleted file mode 100644 index 339a082ba..000000000 --- a/domains/mostafizurrahman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "gigwanoobstudios", - "email": "tplink3116@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/mpangobank.json b/domains/mpangobank.json deleted file mode 100644 index dda3ac1a1..000000000 --- a/domains/mpangobank.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Iamunix", - "email": "abdulhaulerashid@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/mr.gaurav.json b/domains/mr.gaurav.json new file mode 100644 index 000000000..5f8267edd --- /dev/null +++ b/domains/mr.gaurav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dukegaurav", + "email": "mr.gauravagrawalji@gmail.com" + }, + + "record": { + "CNAME": "hotdealkart.pages.dev" + } +} diff --git a/domains/mr.json b/domains/mr.json deleted file mode 100644 index 2f123d9b5..000000000 --- a/domains/mr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mr-adrien", - "email": "adrienansari@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/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/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 deleted file mode 100644 index f3e362dd2..000000000 --- a/domains/mrj.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "MRJ-Badshah", - "email": "illegalhacker2.0@gmail.com" - }, - "record": { - "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/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 deleted file mode 100644 index c55b7045c..000000000 --- a/domains/mrrob0t.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/mrrobot.json b/domains/mrrobot.json deleted file mode 100644 index c55b7045c..000000000 --- a/domains/mrrobot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/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/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 deleted file mode 100644 index b9dccc513..000000000 --- a/domains/mubashiryasin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Mfused07", - "email": "fiverronlyokay@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/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/mukesh.json b/domains/mukesh.json deleted file mode 100644 index 16c71f8cb..000000000 --- a/domains/mukesh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "hakxcore", - "email": "hakxcore@gmail.com" - }, - "record": { - "URL": "https://hakxcore.github.io/" - } -} diff --git a/domains/mukeshkumarcharak.json b/domains/mukeshkumarcharak.json deleted file mode 100644 index ded434679..000000000 --- a/domains/mukeshkumarcharak.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hakxcore", - "email": "kumarm_1@rknec.edu" - }, - "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/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 deleted file mode 100644 index 140b15419..000000000 --- a/domains/musikid.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Musikid-Official", - "email": "musikid@proton.me" - }, - "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/mvn.winter.json b/domains/mvn.winter.json deleted file mode 100644 index 825c68bf2..000000000 --- a/domains/mvn.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "@vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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 deleted file mode 100644 index 8cf69cd63..000000000 --- a/domains/mytac.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mytac", - "email": "my_tac@126.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/myvps.json b/domains/myvps.json deleted file mode 100644 index a7b7e07f9..000000000 --- a/domains/myvps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "irawancandra6699", - "email": "irawancandra6699@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/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/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 deleted file mode 100644 index 761614f96..000000000 --- a/domains/n3rcy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "N3rcy", - "email": "nercysvoboda@gmail.com" - }, - - "record": { - "CNAME": "n3rcy.xyz" - } -} 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 deleted file mode 100644 index 949dce90a..000000000 --- a/domains/namesmt.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "NamesMT", - "email": "dangquoctrung123@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" - } -} \ 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 deleted file mode 100644 index 7f47d53b7..000000000 --- a/domains/narayana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nvnarayna", - "email": "nemaninarayna@gmail.com" - }, - "record": { - "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/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/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 deleted file mode 100644 index 62611d197..000000000 --- a/domains/naveenlam.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "LamNaveen", - "email": "notlamger@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" - } -} \ No newline at end of file diff --git a/domains/nayam.json b/domains/nayam.json deleted file mode 100644 index 417175ba1..000000000 --- a/domains/nayam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NayamAmarshe", - "email": "nayam.emikx@aleeas.com" - }, - "record": { - "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/nc.winter.json b/domains/nc.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/nc.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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 deleted file mode 100644 index 3eb73d60b..000000000 --- a/domains/negodev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kardespro", - "email": "kardesdcys@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/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 deleted file mode 100644 index 784f5a66a..000000000 --- a/domains/neomc.xyz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ssoonu", - "email": "saiifksa509@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/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 deleted file mode 100644 index ad8477829..000000000 --- a/domains/neuron.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "wooga123", - "email": "torinnn28@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/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/nfc.json b/domains/nfc.json new file mode 100644 index 000000000..10015bcbe --- /dev/null +++ b/domains/nfc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "CNAME": "is3193tx.up.railway.app" + } +} 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/nia.json b/domains/nia.json new file mode 100644 index 000000000..bcd3c5178 --- /dev/null +++ b/domains/nia.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lz20r", + "email": "zhiyaonaiara@gmail.com" + }, + "record": { + "A": ["158.179.215.38"], + "AAAA": ["2603:c027:8700:a37e:a916:da84:5a6c:efec"] + } +} diff --git a/domains/nicekun.json b/domains/nicekun.json deleted file mode 100644 index b3eec57b5..000000000 --- a/domains/nicekun.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CcNicebruh", - "email": "tangkeehee2002@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/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 deleted file mode 100644 index c7e16fb95..000000000 --- a/domains/nickooms.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nickooms", - "email": "oomsni@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/niemiets.json b/domains/niemiets.json deleted file mode 100644 index d235aac44..000000000 --- a/domains/niemiets.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Niemiets", - "email": "niemiec123123123@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/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 deleted file mode 100644 index 79190a806..000000000 --- a/domains/nihaltm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "n1haldev", - "email": "nihaltmdev@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/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/niko.json b/domains/niko.json deleted file mode 100644 index 3eb062504..000000000 --- a/domains/niko.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ConnorDoesDev", - "email": "c0nnor@airmail.cc" - }, - "record": { - "A": ["173.249.45.163"] - } -} diff --git a/domains/nilhem.json b/domains/nilhem.json deleted file mode 100644 index e86e510ec..000000000 --- a/domains/nilhem.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ncognto", - "email": "a.mbiad3s@gmail.com" - }, - "record": { - "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/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/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/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/nk.json b/domains/nk.json new file mode 100644 index 000000000..76cc76b00 --- /dev/null +++ b/domains/nk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nkoehring", + "email": "n@koehr.in" + }, + "record": { + "URL": "https://koehr.ing" + } +} diff --git a/domains/noah.json b/domains/noah.json deleted file mode 100644 index 6cd243341..000000000 --- a/domains/noah.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NoahPrm", - "email": "noah.parmentier@icloud.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/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 deleted file mode 100644 index 2f123d9b5..000000000 --- a/domains/nobody.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mr-adrien", - "email": "adrienansari@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/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 deleted file mode 100644 index 3eac8f9f5..000000000 --- a/domains/noflare.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Noflare", - "email": "Noflare.dev@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/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/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 deleted file mode 100644 index becc7dc6e..000000000 --- a/domains/nota.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "dewiscool", - "email": "zerolikecyber.2005@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 deleted file mode 100644 index 5fe751c74..000000000 --- a/domains/notskillz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PsxScriptsW", - "email": "jacob.blits@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/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 deleted file mode 100644 index 5fe751c74..000000000 --- a/domains/notugotskillz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PsxScriptsW", - "email": "jacob.blits@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/notzsfell.json b/domains/notzsfell.json deleted file mode 100644 index 90425b148..000000000 --- a/domains/notzsfell.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "zsfell", - "email": "felinzkvic@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/nova.json b/domains/nova.json deleted file mode 100644 index b1d378527..000000000 --- a/domains/nova.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "nova.is-a.dev", - "owner": { - "username": "LunarN0v4", - "email": "zeus@zeusteam.dev", - "discord": "lunarn0v4" - }, - "record": { - "A": ["170.39.215.45"] - } -} diff --git a/domains/npc.json b/domains/npc.json deleted file mode 100644 index 5eb5e5abe..000000000 --- a/domains/npc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "npc-123", - "email": "aziznasrul85@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/nqdev.json b/domains/nqdev.json deleted file mode 100644 index 2cbbfef3d..000000000 --- a/domains/nqdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nguyenquy0710", - "email": "nguyenquy.1096@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/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 deleted file mode 100644 index 424c5ab05..000000000 --- a/domains/nxnetwork.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "HackerYijia", - "email": "hackeryijia@proton.me" - }, - "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/nxyoo.json b/domains/nxyoo.json deleted file mode 100644 index c7c4552fd..000000000 --- a/domains/nxyoo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nxyoo", - "email": "armqnd.pro@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } - } \ No newline at end of file diff --git a/domains/nxyy.json b/domains/nxyy.json deleted file mode 100644 index 52e753f4a..000000000 --- a/domains/nxyy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NxyyLOL", - "email": "nxyylol@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/nyx.json b/domains/nyx.json deleted file mode 100644 index 00b35e3e2..000000000 --- a/domains/nyx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nyxical420", - "email": "xaveegacha7@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/obaydmerz.json b/domains/obaydmerz.json deleted file mode 100644 index 4b09f8493..000000000 --- a/domains/obaydmerz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "obaydmerz", - "email": "obaydmerz@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/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/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 deleted file mode 100644 index b1a76a6e4..000000000 --- a/domains/ohgodanoob.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "OhGodANoob", - "email": "ohgodanoob@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/ohm.json b/domains/ohm.json deleted file mode 100644 index 377c9e4a5..000000000 --- a/domains/ohm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sujandeb", - "email": "work@sujandeb.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/ohmdeb.json b/domains/ohmdeb.json deleted file mode 100644 index 377c9e4a5..000000000 --- a/domains/ohmdeb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sujandeb", - "email": "work@sujandeb.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/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/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 deleted file mode 100644 index 50411153a..000000000 --- a/domains/omarplayz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Omarplayz233", - "email": "omarplayzsounds@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/omarzaghlool.json b/domains/omarzaghlool.json deleted file mode 100644 index e7dde8fb4..000000000 --- a/domains/omarzaghlool.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "spectre-xenon", - "email": "omarzaghlool538@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/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/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/onlytris.json b/domains/onlytris.json new file mode 100644 index 000000000..7ad65eea2 --- /dev/null +++ b/domains/onlytris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tq56968", + "email": "tq56968@gmail.com" + }, + "record": { + "A": ["103.252.137.101"] + } +} 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/opaps.json b/domains/opaps.json new file mode 100644 index 000000000..ca8365fa9 --- /dev/null +++ b/domains/opaps.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["43.229.135.123"] + } +} 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/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 deleted file mode 100644 index b9445d7dd..000000000 --- a/domains/orhanyigitdurmaz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "OrhanYigitDurmaz", - "email": "orhanyigitv2durmaz@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/osakihsieh.json b/domains/osakihsieh.json deleted file mode 100644 index 6793003bb..000000000 --- a/domains/osakihsieh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "osakihsieh", - "email": "aspdoctor@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/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/oxoomy.json b/domains/oxoomy.json deleted file mode 100644 index 25180da87..000000000 --- a/domains/oxoomy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "oxoomy", - "email": "goument.yelinn52@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/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 deleted file mode 100644 index ab87e6ecd..000000000 --- a/domains/pafias.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Pafias", - "email": "tiagana.b@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/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/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 deleted file mode 100644 index 94c5e5d5c..000000000 --- a/domains/panda.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "description": "redirection to main web.", - "record": { - "URL": "https://semant.panda.is-a.dev" - } -} diff --git a/domains/panel.nia.json b/domains/panel.nia.json new file mode 100644 index 000000000..dbadd2911 --- /dev/null +++ b/domains/panel.nia.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nazhiida", + "email": "zhiyaonaiara@gmail.com" + }, + "record": { + "A": ["143.47.51.54"], + "AAAA": ["2603:c027:8700:a37e:16cc:782c:b563:d4b0"] + } +} 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/panel.winter.json b/domains/panel.winter.json deleted file mode 100644 index 825c68bf2..000000000 --- a/domains/panel.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "@vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} diff --git a/domains/panther.json b/domains/panther.json deleted file mode 100644 index cd4233fa9..000000000 --- a/domains/panther.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "2618Zahid", - "email": "zahidhassankalaroa104@gmail.com" - }, - "record": { - "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/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/pastebins.json b/domains/pastebins.json deleted file mode 100644 index 0bb851e7c..000000000 --- a/domains/pastebins.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "alex1028199", - "email": "yu1234u73f.com@gmail.com", - "discord": "834867471885271053" - }, - - "record": { - "CNAME": "proxy.private.danbot.host" - } - } - \ No newline at end of file diff --git a/domains/pathdog.json b/domains/pathdog.json deleted file mode 100644 index d8f2eaa87..000000000 --- a/domains/pathdog.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NIKODEMUSLORD", - "email": "hannah.valdez@cetys.edu.mx" - }, - "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/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 deleted file mode 100644 index e5ee61b41..000000000 --- a/domains/patsore.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "patsore", - "email": "ostapo.semenikh@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/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/pawix.json b/domains/pawix.json deleted file mode 100644 index bcfa4d38e..000000000 --- a/domains/pawix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PawiX25", - "email": "wyrebakpawel@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/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 deleted file mode 100644 index 8971e9386..000000000 --- a/domains/peacy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Peaqcy", - "email": "kiwibird211@icloud.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/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/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 deleted file mode 100644 index e4b544968..000000000 --- a/domains/pelfex.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "membanned", - "email": "volaree2@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" - } -} \ 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 deleted file mode 100644 index 5948519e2..000000000 --- a/domains/pengubin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Piplup7575", - "email": "piplup7575@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/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 deleted file mode 100644 index 3f13c37c3..000000000 --- a/domains/phakh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "textures1245", - "email": "sirprak1245@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/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/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/php.oxmc.json b/domains/php.oxmc.json deleted file mode 100644 index 0ada2e544..000000000 --- a/domains/php.oxmc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "oxmc", - "email": "oxmc7769.mail@gmail.com", - "discord": "oxmc7769" - }, - "record": { - "URL": "https://oxmc-php.000webhostapp.com" - } -} diff --git a/domains/pi.json b/domains/pi.json deleted file mode 100644 index c3f46e605..000000000 --- a/domains/pi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "4pii4", - "email": "naivenevaii@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/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/piplup7575.json b/domains/piplup7575.json deleted file mode 100644 index 5948519e2..000000000 --- a/domains/piplup7575.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Piplup7575", - "email": "piplup7575@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/pirpal.json b/domains/pirpal.json deleted file mode 100644 index c5fa06067..000000000 --- a/domains/pirpal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "pirpall", - "email": "pirpalss@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/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/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/plush.json b/domains/plush.json deleted file mode 100644 index eaf887a0a..000000000 --- a/domains/plush.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Plushhh", - "email": "umer.farooq0@icloud.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/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/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/portainer.winter.json b/domains/portainer.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/portainer.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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/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/prafit.json b/domains/prafit.json deleted file mode 100644 index 1e3036641..000000000 --- a/domains/prafit.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ExRonin", - "email": "palvido81@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/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 deleted file mode 100644 index 9c5b61bd1..000000000 --- a/domains/prajjwal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CycloneAddons", - "email": "cycloneaddon@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/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 deleted file mode 100644 index aeca0df34..000000000 --- a/domains/pranjal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Pranjal-SB", - "email": "psbhatnagar.in@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/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 deleted file mode 100644 index e428a7bc5..000000000 --- a/domains/prasadsawant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "prasadsawant7", - "email": "prasadsawant7git@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/pratham-gupta.json b/domains/pratham-gupta.json new file mode 100644 index 000000000..5cdff0cdb --- /dev/null +++ b/domains/pratham-gupta.json @@ -0,0 +1,10 @@ +{ + "owner":{ + "username":"shygamer123", + "email":"gpratham522@gmail.com", + "discord":"840244590870003762" + }, + "record":{ + "A":["69.30.249.53"] + } + } \ No newline at end of file diff --git a/domains/prathamesh.json b/domains/prathamesh.json deleted file mode 100644 index 542ba6fe7..000000000 --- a/domains/prathamesh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PrathameshhW", - "email": "prathameshj0407@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/predefine.json b/domains/predefine.json deleted file mode 100644 index e299ee19b..000000000 --- a/domains/predefine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "predefine", - "email": "predefine@yandex.ru" - }, - "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/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 deleted file mode 100644 index 36988655b..000000000 --- a/domains/priyanka.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PriyankaAnantha", - "email": "priyankaananthashetty@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/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/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 deleted file mode 100644 index 83fdc615a..000000000 --- a/domains/puchikat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kentjuno7z", - "email": "lamdev1212@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file 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/q31265503-bio.json b/domains/q31265503-bio.json deleted file mode 100644 index 253d2ddea..000000000 --- a/domains/q31265503-bio.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "artfadeev40", - "email": "fedulai195@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/q31265503.json b/domains/q31265503.json deleted file mode 100644 index 253d2ddea..000000000 --- a/domains/q31265503.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "artfadeev40", - "email": "fedulai195@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/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 deleted file mode 100644 index dd140730e..000000000 --- a/domains/qqg00.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ppg00", - "email": "vx2dsk@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/quantamphysics.json b/domains/quantamphysics.json deleted file mode 100644 index cb35e6f92..000000000 --- a/domains/quantamphysics.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Quantamyt", - "email": "Sujataghosal05@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/quartz.json b/domains/quartz.json deleted file mode 100644 index 2aa1c45c9..000000000 --- a/domains/quartz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thecrazytech1", - "email": "chrissquartz@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/quuququ.json b/domains/quuququ.json deleted file mode 100644 index 525fdbc30..000000000 --- a/domains/quuququ.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "quuququ", - "email": "m.a1200waw@gmail.com" - }, - "record": { - "CNAME": "quuququ.github.io" - } -} 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 deleted file mode 100644 index 2148b17d0..000000000 --- a/domains/ra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "RizmyAbdulla", - "email": "rizmyabdulla@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/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 deleted file mode 100644 index 663509173..000000000 --- a/domains/racembenamar.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/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 deleted file mode 100644 index 306f4f8bf..000000000 --- a/domains/rafsanrakib.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rafsaaanrakib", - "email": "rakibyt13155@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/raga.json b/domains/raga.json deleted file mode 100644 index e808f851c..000000000 --- a/domains/raga.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ragasubekti", - "email": "rfilmriot@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/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/rahul-ray.json b/domains/rahul-ray.json deleted file mode 100644 index 5e0f55ae4..000000000 --- a/domains/rahul-ray.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "raystatic9650", - "email": "raystatic9650@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/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 deleted file mode 100644 index 5e0f55ae4..000000000 --- a/domains/rahul.ray.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "raystatic9650", - "email": "raystatic9650@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/rahulol.json b/domains/rahulol.json deleted file mode 100644 index 09894d160..000000000 --- a/domains/rahulol.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rahulsingh2312", - "email": "rahulsinghhh2312@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/rahulray.json b/domains/rahulray.json deleted file mode 100644 index 5e0f55ae4..000000000 --- a/domains/rahulray.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "raystatic9650", - "email": "raystatic9650@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/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 deleted file mode 100644 index 46c4501a4..000000000 --- a/domains/raiden-16f7.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Raiden-16F7", - "email": "fahad.rizwan07@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" - } -} \ 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 deleted file mode 100644 index ae347f452..000000000 --- a/domains/raiin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ClicpoW", - "email": "clicpowytb@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/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/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 deleted file mode 100644 index 306f4f8bf..000000000 --- a/domains/rakibahmed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rafsaaanrakib", - "email": "rakibyt13155@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/rakibrafsaaan.json b/domains/rakibrafsaaan.json deleted file mode 100644 index 306f4f8bf..000000000 --- a/domains/rakibrafsaaan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rafsaaanrakib", - "email": "rakibyt13155@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/rakibrafsan.json b/domains/rakibrafsan.json deleted file mode 100644 index 306f4f8bf..000000000 --- a/domains/rakibrafsan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rafsaaanrakib", - "email": "rakibyt13155@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/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/rana.json b/domains/rana.json deleted file mode 100644 index 1db84fe1b..000000000 --- a/domains/rana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rannawe", - "email": "rannawe.x64@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/ranamoh.json b/domains/ranamoh.json deleted file mode 100644 index 1db84fe1b..000000000 --- a/domains/ranamoh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rannawe", - "email": "rannawe.x64@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/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/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/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 deleted file mode 100644 index cff26534a..000000000 --- a/domains/rayan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "K-K-L-L", - "email": "kkll345643@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/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 deleted file mode 100644 index 2982171f9..000000000 --- a/domains/raystatic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "raystatic", - "email": "rahul9650ray@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/razvy.json b/domains/razvy.json deleted file mode 100644 index 52e753f4a..000000000 --- a/domains/razvy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NxyyLOL", - "email": "nxyylol@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/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 deleted file mode 100644 index ab0218719..000000000 --- a/domains/rebokdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rebokdev", - "email": "rebok@duck.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/receiptify.json b/domains/receiptify.json deleted file mode 100644 index 167dad256..000000000 --- a/domains/receiptify.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "owner": { - "username": "Stef-00012", - "email": "admin@stefdp.is-a.dev", - "discord": "694986201739952229" - }, - "record": { - "A": [ - "217.174.245.249" - ], - "MX": [ - "mx1.forwardemail.net", - "mx2.forwardemail.net" - ], - "TXT": [ - "forward-email=receiptify@mail.stefdp.is-a.dev" - ] - } -} diff --git a/domains/recoderdrastic.json b/domains/recoderdrastic.json deleted file mode 100644 index 842ac532a..000000000 --- a/domains/recoderdrastic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "drasticfiles", - "email": "shaileteitpa@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/reef.json b/domains/reef.json deleted file mode 100644 index e14593559..000000000 --- a/domains/reef.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ReefSalty", - "email": "reefsalter@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/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 deleted file mode 100644 index 619c4f74d..000000000 --- a/domains/refact0r.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "refact0r", - "email": "yifanw06@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/register-bot.json b/domains/register-bot.json deleted file mode 100644 index 1afde3af6..000000000 --- a/domains/register-bot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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" - } -} 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 deleted file mode 100644 index 57db3a46a..000000000 --- a/domains/renata.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "xrenata", - "email": "emirhan@duck.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/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 deleted file mode 100644 index c55b7045c..000000000 --- a/domains/restart.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GodfatherX64", - "email": "godfather.x64@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/retr0xraiden.json b/domains/retr0xraiden.json index 477cd382a..91cf17508 100644 --- a/domains/retr0xraiden.json +++ b/domains/retr0xraiden.json @@ -1,9 +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": { - "URL": "https://raiden-16f7.github.io/Portfolio/" + "CNAME": "raiden-16f7.github.io" } -} +} diff --git a/domains/return.json b/domains/return.json deleted file mode 100644 index 2d85844dc..000000000 --- a/domains/return.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "returnxd", - "email": "hc_2583@naver.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/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 deleted file mode 100644 index 9abe02bec..000000000 --- a/domains/reyzo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Nolaxyy", - "email": "konectplay2008@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/rherly.json b/domains/rherly.json deleted file mode 100644 index 3c909341b..000000000 --- a/domains/rherly.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rherlydev", - "email": "rherlydev@proton.me" - }, - "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/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/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 deleted file mode 100644 index ed2d54e62..000000000 --- a/domains/rifkisaputra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rifki-saputra", - "email": "rifkimuhamad0987@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/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 deleted file mode 100644 index 04bf3325a..000000000 --- a/domains/rin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "budderlovr", - "email": "budderlovr@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/ringoxd.json b/domains/ringoxd.json deleted file mode 100644 index 89b26aaae..000000000 --- a/domains/ringoxd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ringo360", - "email": "nep360i@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file 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 9db893543..043628e7f 100644 --- a/domains/riviox.json +++ b/domains/riviox.json @@ -1,12 +1,12 @@ { - "description": ".riviox's official website", - "repo": "https://github.com/RivioxGaming/rivioxgaming.github.io", + "description": "riviox's website", + "repo": "https://github.com/riviox/riviox.github.io", "owner": { - "username": "RivioxGaming", + "username": "riviox", "email": "rivioxyt@hotmail.com", "twitter": "riviox40451" }, "record": { - "CNAME": "rivioxgaming.github.io" + "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 index dc3102ce7..6dd41af68 100644 --- a/domains/rizvan.json +++ b/domains/rizvan.json @@ -4,6 +4,6 @@ "email": "rizvankurungattil@gmail.com" }, "record": { - "URL": "https://github.com/mrizvank" + "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 deleted file mode 100644 index 1a8810506..000000000 --- a/domains/rnv.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ZeroDeaths379", - "email": "arnavp651@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/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 deleted file mode 100644 index a32859b2f..000000000 --- a/domains/robskan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Robskan5300", - "email": "rrsnijder@yahoo.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/rockstarbuddies.json b/domains/rockstarbuddies.json deleted file mode 100644 index 851091c22..000000000 --- a/domains/rockstarbuddies.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "RockstarBuddies", - "email": "yourrockingbuddy@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/prodefix.json b/domains/rocky.json similarity index 50% rename from domains/prodefix.json rename to domains/rocky.json index c80a7635c..7947a57a7 100644 --- a/domains/prodefix.json +++ b/domains/rocky.json @@ -4,8 +4,6 @@ "email": "prodefix.ytb@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": "rockybots.betteruptime.com" } } diff --git a/domains/rollwaifu.json b/domains/rollwaifu.json deleted file mode 100644 index 53c4070c4..000000000 --- a/domains/rollwaifu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Luongzz", - "email": "buivanluong0204@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/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 deleted file mode 100644 index b006ea4f7..000000000 --- a/domains/royalahmed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "RoyalAhmed347", - "email": "bahiahmed347@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file 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/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/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/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/ryo.json b/domains/ryo.json deleted file mode 100644 index 345c40265..000000000 --- a/domains/ryo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LLKO101", - "email": "yo1sefooop@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/ryobotz.json b/domains/ryobotz.json new file mode 100644 index 000000000..264151c4c --- /dev/null +++ b/domains/ryobotz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} 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/sadiz.json b/domains/sadiz.json deleted file mode 100644 index 9943a93fa..000000000 --- a/domains/sadiz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Sadishru", - "email": "hellosadish@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/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/sai-mehar.json b/domains/sai-mehar.json deleted file mode 100644 index c5af18fac..000000000 --- a/domains/sai-mehar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sai-mehar", - "email": "saimehar2005@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/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 deleted file mode 100644 index 4d73b2aa7..000000000 --- a/domains/saiganeshganoju.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "saiganesh0084", - "email": "saiganeshganoju@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/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 deleted file mode 100644 index 000fd7678..000000000 --- a/domains/sameer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "carnotweat", - "email": "jasitis@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/sami.json b/domains/sami.json deleted file mode 100644 index f7bcef69b..000000000 --- a/domains/sami.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "obstructed", - "email": "scamstur@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ 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/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/saqlainbrawl.json b/domains/saqlainbrawl.json deleted file mode 100644 index ec50cc74e..000000000 --- a/domains/saqlainbrawl.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SaqlainBrawl", - "email": "saqlainbrawl@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/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 deleted file mode 100644 index 61e34301a..000000000 --- a/domains/saturn-net.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LCDLED", - "email": "TheCatatomic@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/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 deleted file mode 100644 index 2040d27f0..000000000 --- a/domains/saumon.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "saumonarcenciel", - "email": "viala38000@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/saurabh-kirve.json b/domains/saurabh-kirve.json deleted file mode 100644 index afd47a19a..000000000 --- a/domains/saurabh-kirve.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BerzCode", - "email": "saurabhkirve@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/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/sayantan.json b/domains/sayantan.json deleted file mode 100644 index 138802c0b..000000000 --- a/domains/sayantan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "legendsayantan", - "email": "legendsayantanpaul@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/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 deleted file mode 100644 index 5fe751c74..000000000 --- a/domains/school.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PsxScriptsW", - "email": "jacob.blits@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/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 deleted file mode 100644 index 9878220b1..000000000 --- a/domains/schummler.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "schummler", - "email": "markwilkens102@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/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/sdp.json b/domains/sdp.json index ac75435d3..7a920dce5 100644 --- a/domains/sdp.json +++ b/domains/sdp.json @@ -6,7 +6,7 @@ }, "record": { "A": [ - "84.46.245.191" + "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 deleted file mode 100644 index 07c775c62..000000000 --- a/domains/sedat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sedat342042", - "email": "sedat342042@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/sedat3344.json b/domains/sedat3344.json deleted file mode 100644 index 07c775c62..000000000 --- a/domains/sedat3344.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sedat342042", - "email": "sedat342042@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/seizedforge.json b/domains/seizedforge.json deleted file mode 100644 index faaff9bd3..000000000 --- a/domains/seizedforge.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "GamebringerDev", - "email": "gamebringerdev@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/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/sephrost.json b/domains/sephrost.json deleted file mode 100644 index 3139d0568..000000000 --- a/domains/sephrost.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Sephrost", - "email": "lorenzato.fabi13@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/seraphic.json b/domains/seraphic.json deleted file mode 100644 index 6914cbbff..000000000 --- a/domains/seraphic.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "SeraphicDev", - "email": "AidhaniDev@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" - } -} \ No newline at end of file diff --git a/domains/seriuos.json b/domains/seriuos.json deleted file mode 100644 index b0cec730c..000000000 --- a/domains/seriuos.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Seriuos", - "email": "trexi82.82@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/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 index ac75435d3..7a920dce5 100644 --- a/domains/server.stefdp.json +++ b/domains/server.stefdp.json @@ -6,7 +6,7 @@ }, "record": { "A": [ - "84.46.245.191" + "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/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 deleted file mode 100644 index 376ab1606..000000000 --- a/domains/sgogov.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stekatag", - "email": "stefangogov@proton.me" - }, - "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/sgyt.json b/domains/sgyt.json deleted file mode 100644 index 0cd64dc0c..000000000 --- a/domains/sgyt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BedrockBandaYT", - "email": "cshaily38@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/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 deleted file mode 100644 index a13decd1f..000000000 --- a/domains/sh1nyhunt3r27.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Sh1nYhUnT3R27", - "email": "Jom834827@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/shabnam.json b/domains/shabnam.json deleted file mode 100644 index 9c5b61bd1..000000000 --- a/domains/shabnam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CycloneAddons", - "email": "cycloneaddon@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/shad.json b/domains/shad.json deleted file mode 100644 index 0ae7bfeee..000000000 --- a/domains/shad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Maverick00001", - "email": "saksham.access@yahoo.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/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 deleted file mode 100644 index 905f9d8bc..000000000 --- a/domains/shamshitty.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "shamshitty", - "email": "iaminvisy@gmail.com", - "twitter": "shamshitty", - "discord": "shamshitty" - }, - "description": "shamshitty is indeed a dev (kinda)", - "record": { - "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/shaquib.json b/domains/shaquib.json deleted file mode 100644 index c3595cf3f..000000000 --- a/domains/shaquib.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "notshaquib", - "email": "mdshaaaquib@proton.me" - }, - "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/sharan.json b/domains/sharan.json deleted file mode 100644 index a987bb6e0..000000000 --- a/domains/sharan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sharan-218", - "email": "yenugulasharan8019@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/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/shawty.json b/domains/shawty.json deleted file mode 100644 index 8b0cdace2..000000000 --- a/domains/shawty.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stanasxd", - "email": "stanasarts@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/shell.json b/domains/shell.json deleted file mode 100644 index d9c24741a..000000000 --- a/domains/shell.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JiuZhiDa", - "email": "shll@tuta.io" - }, - "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/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 deleted file mode 100644 index cc9d2f0cc..000000000 --- a/domains/shiba.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "soggycatalltheway", - "email": "hurvzee+partizao@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/shilab.json b/domains/shilab.json deleted file mode 100644 index e178b5bf8..000000000 --- a/domains/shilab.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Shilab66", - "email": "aan176972@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" - } -} \ 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 a985018ad..9f55651ab 100644 --- a/domains/shing.json +++ b/domains/shing.json @@ -4,7 +4,7 @@ "email": "Shing.XD.0602@gmail.com" }, "record": { - "A": ["129.213.17.24"], - "AAAA": ["2603:c020:400d:3e89:46c4:b1a3:5996:e1e9"] + "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 deleted file mode 100644 index 5be4f12a2..000000000 --- a/domains/shivathmika.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Shivathmika20", - "email": "yelurishivathmika@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/shizotechie.json b/domains/shizotechie.json deleted file mode 100644 index 2dad9427b..000000000 --- a/domains/shizotechie.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "shizothetechie", - "email": "yugeshsingh27@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/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/shobhit9945.json b/domains/shobhit9945.json deleted file mode 100644 index ea45d53ce..000000000 --- a/domains/shobhit9945.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Shobhit9945", - "email": "shobhitbaijal5@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/shobhit.json b/domains/shobhitb.json similarity index 75% rename from domains/shobhit.json rename to domains/shobhitb.json index f358cbebc..c0ac98fb9 100644 --- a/domains/shobhit.json +++ b/domains/shobhitb.json @@ -4,6 +4,6 @@ "email": "shobhitbaijal5@gmail.com" }, "record": { - "CNAME": "shobhit.tech" + "CNAME": "shobhit9945.github.io" } } 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 deleted file mode 100644 index f45ff53a9..000000000 --- a/domains/shrek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PythonScratcher", - "email": "callumcardy7@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/shubhamkumar.json b/domains/shubhamkumar.json deleted file mode 100644 index d17b7727e..000000000 --- a/domains/shubhamkumar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "shubham-kumar-2004", - "email": "shubham04122004@gmail.com" - }, - "record": { - "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/shubhamverma.json b/domains/shubhamverma.json deleted file mode 100644 index 0875cd397..000000000 --- a/domains/shubhamverma.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Stroller15", - "email": "shubhamverma6351@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/shuriken.json b/domains/shuriken.json deleted file mode 100644 index e761f35de..000000000 --- a/domains/shuriken.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "005sunnysingh", - "email": "005sunnysingh@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } - } \ No newline at end of file diff --git a/domains/sia.json b/domains/sia.json deleted file mode 100644 index 377c9e4a5..000000000 --- a/domains/sia.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sujandeb", - "email": "work@sujandeb.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/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 deleted file mode 100644 index fe5dbf434..000000000 --- a/domains/siddharthtewari.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sid-008", - "email": "siddharthtewari14@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/sigmassimo.json b/domains/sigmassimo.json deleted file mode 100644 index 6b64a90db..000000000 --- a/domains/sigmassimo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sigmassimo", - "email": "maximilian-schreiber271@t-online.de" - }, - "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/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..3d8f4175b --- /dev/null +++ b/domains/sincererflame71.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DarkNightcore8", + "email": "DarkNightcore8@outlook.com" + }, + "record": { + "A": ["185.199.108.153"] + + } +} diff --git a/domains/sirens.json b/domains/sirens.json deleted file mode 100644 index 706aa2b1f..000000000 --- a/domains/sirens.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "collinsdawns", - "email": "collinsdawns184@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/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 deleted file mode 100644 index 5436915e6..000000000 --- a/domains/sjlptpsnh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sjlptpsnh", - "email": "sujalpratapsingh70@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/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 deleted file mode 100644 index 5fe751c74..000000000 --- a/domains/skillz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "PsxScriptsW", - "email": "jacob.blits@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/skydiver-web.json b/domains/skydiver-web.json deleted file mode 100644 index 85039945e..000000000 --- a/domains/skydiver-web.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nebula4564", - "email": "reeseb1660@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/skyopg.json b/domains/skyopg.json deleted file mode 100644 index 345c40265..000000000 --- a/domains/skyopg.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "LLKO101", - "email": "yo1sefooop@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/slashed.json b/domains/slashed.json deleted file mode 100644 index 070ccdc7f..000000000 --- a/domains/slashed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "alexfeed1990", - "email": "alexfeed1990real@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/slyc.the.catboy.json b/domains/slyc.the.catboy.json new file mode 100644 index 000000000..9a451ccdf --- /dev/null +++ b/domains/slyc.the.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/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/snipc.json b/domains/snipc.json deleted file mode 100644 index 3c7284b59..000000000 --- a/domains/snipc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "NotSnipc", - "email": "snipc.mail@proton.me" - }, - "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/snippyivan.json b/domains/snippyivan.json deleted file mode 100644 index dbbb3907a..000000000 --- a/domains/snippyivan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ivansnippy", - "email": "ivanmasinde@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/snippytech.json b/domains/snippytech.json deleted file mode 100644 index dbbb3907a..000000000 --- a/domains/snippytech.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ivansnippy", - "email": "ivanmasinde@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/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/snowsuno.json b/domains/snowsuno.json new file mode 100644 index 000000000..ac8ac091b --- /dev/null +++ b/domains/snowsuno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SnowSuno", + "email": "percy3368@gmail.com" + }, + "record": { + "A": ["89.106.200.1"] + } +} 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/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 deleted file mode 100644 index 06087f1ab..000000000 --- a/domains/sof009.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SOF009", - "email": "SOF.009@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/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 deleted file mode 100644 index caad7c3de..000000000 --- a/domains/someshsrichandan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "someshsrichandan", - "email": "someshsrichandan@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/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/soup.json b/domains/soup.json deleted file mode 100644 index bea0a34c9..000000000 --- a/domains/soup.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SouperZ", - "email": "slxtty.bxtchlol@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/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 deleted file mode 100644 index 958a47c75..000000000 --- a/domains/spa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stepersy", - "email": "stefano.persanoadorno@liceopertini.edu.it" - }, - "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/spaace.json b/domains/spaace.json deleted file mode 100644 index 452ae9bc1..000000000 --- a/domains/spaace.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Spaace-Save", - "email": "coelhoaiden@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/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 deleted file mode 100644 index 34bdd11bd..000000000 --- a/domains/sparkfire298.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sparkfire298", - "email": "sparkfire298@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/spd.json b/domains/spd.json deleted file mode 100644 index 6793003bb..000000000 --- a/domains/spd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "osakihsieh", - "email": "aspdoctor@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/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 deleted file mode 100644 index 26c77f48c..000000000 --- a/domains/spike.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "superspike7", - "email": "spikevinz@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/spill.json b/domains/spill.json deleted file mode 100644 index 9635dcb67..000000000 --- a/domains/spill.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Spilleparadis", - "email": "playerwictor@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/splashy.json b/domains/splashy.json deleted file mode 100644 index ae347f452..000000000 --- a/domains/splashy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ClicpoW", - "email": "clicpowytb@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/spyminer.json b/domains/spyminer.json deleted file mode 100644 index 315e83bb2..000000000 --- a/domains/spyminer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SpyMinerX", - "email": "vince@engelbrecht.pro" - }, - "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/spynet.json b/domains/spynet.json deleted file mode 100644 index 463eeb241..000000000 --- a/domains/spynet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Modesto888", - "email": "modestojr886@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" - } -} \ 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 deleted file mode 100644 index 93efbb43e..000000000 --- a/domains/squaresmp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SquareSmp", - "email": "squaresmp@asia.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/sreevikram.json b/domains/sreevikram.json deleted file mode 100644 index 241355d9d..000000000 --- a/domains/sreevikram.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - - "owner": { - "username": "SreevikramR", - "email": "sreevikram.r@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } - } \ No newline at end of file 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/srv1.winter.json b/domains/srv1.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/srv1.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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/krazy.json b/domains/ss.kleb.json similarity index 50% rename from domains/krazy.json rename to domains/ss.kleb.json index 157b62b8c..d60c33257 100644 --- a/domains/krazy.json +++ b/domains/ss.kleb.json @@ -4,8 +4,6 @@ "email": "krazykleb@outlook.com" }, "record": { - "A": ["217.174.245.249"], - "MX": ["hosts.is-a.dev"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + "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 deleted file mode 100644 index 7fc2eb17b..000000000 --- a/domains/sser.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lynicv", - "email": "nuffimail33@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/sshdgjeienjdje.json b/domains/sshdgjeienjdje.json deleted file mode 100644 index 9c5b61bd1..000000000 --- a/domains/sshdgjeienjdje.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CycloneAddons", - "email": "cycloneaddon@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/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 deleted file mode 100644 index 2cbbfef3d..000000000 --- a/domains/sso.nqdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nguyenquy0710", - "email": "nguyenquy.1096@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/sso.winter.json b/domains/sso.winter.json deleted file mode 100644 index c66bfeb86..000000000 --- a/domains/sso.winter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"] - } - -} 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 deleted file mode 100644 index a52bcf209..000000000 --- a/domains/stamina.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ivan100-ivoop", - "email": "ivankyosev21@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/stanasx.json b/domains/stanasx.json deleted file mode 100644 index 8b0cdace2..000000000 --- a/domains/stanasx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stanasxd", - "email": "stanasarts@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/stardust.json b/domains/stardust.json new file mode 100644 index 000000000..e160960bd --- /dev/null +++ b/domains/stardust.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hanzla-Double3", + "email": "Hanzla.mughal3284@gmail.com" + }, + "record": { + "A": ["139.135.52.143"] + } +} 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/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/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 deleted file mode 100644 index 62b2bcf6e..000000000 --- a/domains/stefdp.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "owner": { - "username": "Stef-00012", - "email": "admin@stefdp.is-a.dev", - "discord": "694986201739952229" - }, - "record": { - "A": [ - "217.174.245.249" - ], - "MX": [ - "mx1.forwardemail.net", - "mx2.forwardemail.net" - ], - "TXT": [ - "forward-email=admin:admin.main@mail.stefdp.is-a.dev", - "forward-email=/^(?!admin$).*/:main@mail.stefdp.is-a.dev" - ] - } -} diff --git a/domains/stellar.json b/domains/stellar.json deleted file mode 100644 index 6c986115d..000000000 --- a/domains/stellar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@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/stellaros.json b/domains/stellaros.json deleted file mode 100644 index 6c986115d..000000000 --- a/domains/stellaros.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@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/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/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/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 deleted file mode 100644 index 583239e1a..000000000 --- a/domains/strtsnm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "STRTSNM", - "email": "STRTSNM12@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/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/stx.json b/domains/stx.json deleted file mode 100644 index 8b0cdace2..000000000 --- a/domains/stx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stanasxd", - "email": "stanasarts@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/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/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/sujan.json b/domains/sujan.json deleted file mode 100644 index 377c9e4a5..000000000 --- a/domains/sujan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sujandeb", - "email": "work@sujandeb.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/sujandeb.json b/domains/sujandeb.json deleted file mode 100644 index 377c9e4a5..000000000 --- a/domains/sujandeb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sujandeb", - "email": "work@sujandeb.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/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 deleted file mode 100644 index 1299ab5a7..000000000 --- a/domains/suki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SukiPlayz", - "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"] - } - } diff --git a/domains/suleymanduzgun.json b/domains/suleymanduzgun.json deleted file mode 100644 index 1bfe2135f..000000000 --- a/domains/suleymanduzgun.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "suleymanduzgun", - "email": "suleymanduzgun@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/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/svx.json b/domains/svx.json deleted file mode 100644 index 6524a032a..000000000 --- a/domains/svx.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "faelixyz", - "email": "unknownfelix.pc@gmail.com" - }, - "record": { - "CNAME": "svx-b0v.pages.dev" - } -} 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 deleted file mode 100644 index 8b0cdace2..000000000 --- a/domains/sxe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "stanasxd", - "email": "stanasarts@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/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 deleted file mode 100644 index 9131a9b74..000000000 --- a/domains/syedomershah.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Syedomershah99", - "email": "syedomershah99@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/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 deleted file mode 100644 index 3705b668d..000000000 --- a/domains/systemm32.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "System32-0101", - "email": "didunoxd@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/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/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 deleted file mode 100644 index 932b897ec..000000000 --- a/domains/tanmayjaiswal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sequel-tj", - "email": "tanmayjaiswal31102002@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/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 deleted file mode 100644 index 7591d9062..000000000 --- a/domains/tariqul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "tariqultais", - "email": "2201081175@UTTARAUNIVERSITY.EDU.BD" - }, - "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/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/taufikmaulidi.json b/domains/taufikmaulidi.json deleted file mode 100644 index 1ad7b9af4..000000000 --- a/domains/taufikmaulidi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "taufikmaulidi", - "email": "taufikmaulidi123@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/tazmyan.json b/domains/tazmyan.json deleted file mode 100644 index b654817b3..000000000 --- a/domains/tazmyan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Tazmyan", - "email": "tikpatka@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/tbhgodpro.json b/domains/tbhgodpro.json deleted file mode 100644 index 1b636cab3..000000000 --- a/domains/tbhgodpro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TBHGodPro", - "email": "tarun.bhaskar@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/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/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/techke.json b/domains/techke.json deleted file mode 100644 index 25fe10783..000000000 --- a/domains/techke.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "techke1", - "email": "techpunditke@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/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 deleted file mode 100644 index 25fe10783..000000000 --- a/domains/techpundit.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "techke1", - "email": "techpunditke@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/techpunditke.json b/domains/techpunditke.json deleted file mode 100644 index 25fe10783..000000000 --- a/domains/techpunditke.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "techke1", - "email": "techpunditke@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/tehpig.json b/domains/tehpig.json deleted file mode 100644 index 7c10f8c09..000000000 --- a/domains/tehpig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TehPigYT", - "email": "aggelosdellas@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/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 deleted file mode 100644 index 9b04706fb..000000000 --- a/domains/terraegg.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AlbumanO", - "email": "oliver.young4@student.education.wa.edu.au" - }, - "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/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 deleted file mode 100644 index 57306063d..000000000 --- a/domains/test2214.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "005sunnysingh", - "email": "005sunnysingh@gmail.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } -} \ No newline at end of file diff --git a/domains/test373.json b/domains/test373.json deleted file mode 100644 index a8dbaa99a..000000000 --- a/domains/test373.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - "record": { - "A": ["217.174.245.249"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", - "MX": ["hosts.is-a.dev"] - } - } \ No newline at end of file diff --git a/domains/test849205.json b/domains/test849205.json deleted file mode 100644 index 93efbb43e..000000000 --- a/domains/test849205.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SquareSmp", - "email": "squaresmp@asia.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/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 deleted file mode 100644 index 3f13c37c3..000000000 --- a/domains/textures1245.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "textures1245", - "email": "sirprak1245@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/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/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/thang.json b/domains/thang.json new file mode 100644 index 000000000..719d1c024 --- /dev/null +++ b/domains/thang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "phantonducthang", + "email": "phantonducthang@hotmail.com" + }, + "record": { + "A": ["167.86.67.221"] + } +} diff --git a/domains/thatbigderp.json b/domains/thatbigderp.json deleted file mode 100644 index 0e4d3663f..000000000 --- a/domains/thatbigderp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "StuwpidPerson", - "email": "darkhacker8604@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/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/theawesomekid.json b/domains/theawesomekid.json new file mode 100644 index 000000000..f532084a1 --- /dev/null +++ b/domains/theawesomekid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheAwesomeKid02", + "email": "krishnakaushik.panyala@gmail.com" + }, + "record": { + "URL": "https://a122df89-2971-443d-b431-ba0b2432b6c8-00-nndor8zyo5ae.global.replit.dev/" + } +} diff --git a/domains/thebestdeveloper.json b/domains/thebestdeveloper.json deleted file mode 100644 index 532e99f20..000000000 --- a/domains/thebestdeveloper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "notthebestdev", - "email": "thebestdeveloper@outlook.fr" - }, - "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/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/thedev.json b/domains/thedev.json deleted file mode 100644 index 2236897cd..000000000 --- a/domains/thedev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thedev132", - "email": "thedev132@gmail.com" - }, - "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/thedivided.json b/domains/thedivided.json deleted file mode 100644 index 3d59d5654..000000000 --- a/domains/thedivided.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "soviet783", - "email": "logannorman2005@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/thedt.json b/domains/thedt.json deleted file mode 100644 index b60cdeccf..000000000 --- a/domains/thedt.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "thedtvn", - "email": "duongtuan30306@gmail.com" - }, - "record": { - "URL": "https://many.link/dt" - } -} 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 deleted file mode 100644 index bf73b5019..000000000 --- a/domains/theschoology.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "ShriniGenie", - "email": "shrini23@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" - } -} \ No newline at end of file diff --git a/domains/thetechguy.json b/domains/thetechguy.json deleted file mode 100644 index 9635dcb67..000000000 --- a/domains/thetechguy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Spilleparadis", - "email": "playerwictor@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/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 deleted file mode 100644 index 51c54fde5..000000000 --- a/domains/thordevs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "musu10gj", - "email": "samzagamer4@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/thoth.json b/domains/thoth.json deleted file mode 100644 index b36ec02e8..000000000 --- a/domains/thoth.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "herumes", - "email": "herumes11@gmail.com" - }, - "record": { - "URL": "https://thothai.onrender.com" - } -} diff --git a/domains/tien.json b/domains/tien.json deleted file mode 100644 index 3ef6c7248..000000000 --- a/domains/tien.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "t6c", - "email": "tien2309n@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/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 deleted file mode 100644 index b3eec57b5..000000000 --- a/domains/time.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CcNicebruh", - "email": "tangkeehee2002@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/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 deleted file mode 100644 index 4c7ec4cee..000000000 --- a/domains/tin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "itsmetin", - "email": "marmeladenjunge+2nd@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/tinergy.json b/domains/tinergy.json deleted file mode 100644 index 547ad6a68..000000000 --- a/domains/tinergy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Tinergy", - "email": "goh_z@live.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/tinny.json b/domains/tinny.json deleted file mode 100644 index 903b644b6..000000000 --- a/domains/tinny.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "TinnyTerr", - "email": "lewis.j.mcdonald@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" - } -} \ 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 deleted file mode 100644 index 1532b27df..000000000 --- a/domains/tm-incognito.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jumbochipkali", - "email": "jumbokalied@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/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 deleted file mode 100644 index 9643baad3..000000000 --- a/domains/toasta.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thetoasta", - "email": "nolanp678@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/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/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 deleted file mode 100644 index f25285564..000000000 --- a/domains/topher.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "christopherwk210", - "email": "christopherwk210@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/toto.json b/domains/toto.json new file mode 100644 index 000000000..711f123a5 --- /dev/null +++ b/domains/toto.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "E8D08F", + "email": "the@unpopular.me" + }, + + "record": { + "CNAME": "chunghwa.asia" + } +} 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 deleted file mode 100644 index 0364bc2ca..000000000 --- a/domains/tpglitch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "tpglitch", - "email": "tylerkinney50@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/tpke.json b/domains/tpke.json deleted file mode 100644 index 202061ec1..000000000 --- a/domains/tpke.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ZeroRatedTM", - "email": "zeroratedtm@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/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/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 deleted file mode 100644 index 21aa904de..000000000 --- a/domains/trailblazertech.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "trailblazie", - "email": "trailblazire@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/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 deleted file mode 100644 index afbd109a8..000000000 --- a/domains/trasadiyasmeet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "psmeet190902", - "email": "21bph115@nirmauni.ac.in" - }, - "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/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..444383d61 100644 --- a/domains/trueuser.json +++ b/domains/trueuser.json @@ -4,6 +4,6 @@ "email": "thisistrueemail@gmail.com" }, "record": { - "CNAME": "trueuser.up.railway.app" + "A": ["69.30.249.53"] } } diff --git a/domains/trung.json b/domains/trung.json index f7dd34ceb..fd93ed512 100644 --- a/domains/trung.json +++ b/domains/trung.json @@ -4,6 +4,6 @@ "email": "vuthanhtrungsuper@gmail.com" }, "record": { - "CNAME": "proxy.private.danbot.host" + "CNAME": "dev-website-emr.pages.dev" } } 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/tuananh.json b/domains/tuananh.json deleted file mode 100644 index 7e7f4f491..000000000 --- a/domains/tuananh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "petertuananh", - "email": "petertuananh@hotmail.com", - "discord": "786569661231005716" - }, - - "record": { - "CNAME": "server.tuananh.dev" - } - } - \ No newline at end of file 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/tumit.json b/domains/tumit.json deleted file mode 100644 index 258f0c72e..000000000 --- a/domains/tumit.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "tumit", - "email": "tumit@live.com" - }, - - "record": { - "A": ["141.147.184.153"] - } -} diff --git a/domains/twilightshock.json b/domains/twilightshock.json deleted file mode 100644 index 93dc0ed50..000000000 --- a/domains/twilightshock.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "pherngpy", - "email": "apipherng@gmail.com" - }, - "record": { - "URL": "https://www.youtube.com/channel/ucocgmtbplb4jdkyqiny5qxq?sub_confirmation=1" - } -} diff --git a/domains/twisted.json b/domains/twisted.json deleted file mode 100644 index 680fca65a..000000000 --- a/domains/twisted.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "TwistVibed", - "email": "gamerdragon971@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/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 deleted file mode 100644 index f67068490..000000000 --- a/domains/tyler.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tyler McCarthy is a Developer!", - "repo": "https://github.com/tmccarthyj", - "owner": { - "username": "tmccarthyj", - "email": "tyler@tjm.dev" - }, - "record": { - "CNAME": "tjm.dev" - } -} 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/tymek.json b/domains/tymek.json deleted file mode 100644 index 9aec4f0a4..000000000 --- a/domains/tymek.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "tymeklew", - "email": "tymek.lewandowski@gmail.com" - }, - "record": { - "A": ["141.147.94.167"] - } -} 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 deleted file mode 100644 index c0f4851b4..000000000 --- a/domains/tzvika.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "tzvio", - "email": "tzvika.ofek@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/ukirio.json b/domains/ukirio.json deleted file mode 100644 index 68422ca70..000000000 --- a/domains/ukirio.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ukrioo", - "email": "u8k50850@gmail.com" - }, - "record": { - "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/ultrix.json b/domains/ultrix.json deleted file mode 100644 index 6c986115d..000000000 --- a/domains/ultrix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@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/unchained.json b/domains/unchained.json deleted file mode 100644 index 6b9f7870b..000000000 --- a/domains/unchained.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "unchaineddev", - "email": "yusuf_in@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/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 deleted file mode 100644 index dda3ac1a1..000000000 --- a/domains/unixtz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Iamunix", - "email": "abdulhaulerashid@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/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 deleted file mode 100644 index afa1025f7..000000000 --- a/domains/unknowncheats.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "opkinshuk09", - "email": "opkinshuk09@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/uptime.stefdp.json b/domains/uptime.stefdp.json index ac75435d3..7a920dce5 100644 --- a/domains/uptime.stefdp.json +++ b/domains/uptime.stefdp.json @@ -6,7 +6,7 @@ }, "record": { "A": [ - "84.46.245.191" + "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/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/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 deleted file mode 100644 index 2cbbfef3d..000000000 --- a/domains/user.nqdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nguyenquy0710", - "email": "nguyenquy.1096@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/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 deleted file mode 100644 index 11ce7ceb0..000000000 --- a/domains/utility.icevixen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zirmith", - "email": "f2v74yt@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/utsavsingh.json b/domains/utsavsingh.json deleted file mode 100644 index 9492c5289..000000000 --- a/domains/utsavsingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "singhutsav5502", - "email": "singhutsavofficial@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/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 deleted file mode 100644 index 54e96c903..000000000 --- a/domains/va1dee.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "va1dee", - "email": "vldslv.prydatko@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/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..a22315039 100644 --- a/domains/vachanmn.json +++ b/domains/vachanmn.json @@ -3,8 +3,7 @@ "username": "vachanmn123", "email": "vachanmn123@gmail.com" }, - "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/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 deleted file mode 100644 index 901d5d04d..000000000 --- a/domains/var.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "IfVar", - "email": "LZT7@proton.me" - }, - "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/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/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 deleted file mode 100644 index 8b720e5f5..000000000 --- a/domains/veer.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "TheVeerRana", - "email": "hello@veer.codes" - }, - "record": { - "CNAME": "veer.codes" - } -} diff --git a/domains/venkateshpagdikar.json b/domains/venkateshpagdikar.json deleted file mode 100644 index 2e779acdd..000000000 --- a/domains/venkateshpagdikar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "venkateshpagdikar", - "email": "venkateshpagdikar8@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/vhd.json b/domains/vhd.json deleted file mode 100644 index a3fa82d7a..000000000 --- a/domains/vhd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "realvhd", - "email": "dotrealvhd@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/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 deleted file mode 100644 index 89eaff968..000000000 --- a/domains/vian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vviaan", - "email": "erel.ersahin@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/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/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/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/vincent-cly.json b/domains/vincent-cly.json deleted file mode 100644 index beda63ece..000000000 --- a/domains/vincent-cly.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Vincent-CLY", - "email": "vchku413@connect.hku.hk" - }, - "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/vineet-khemnani.json b/domains/vineet-khemnani.json deleted file mode 100644 index ee41af2b2..000000000 --- a/domains/vineet-khemnani.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vineetkhemnani", - "email": "vineetkhemnani09@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/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 deleted file mode 100644 index 5099b81fd..000000000 --- a/domains/viraj.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Viraj2722", - "email": "virajwalavalkar90982@gmail.com", - "twitter": "WalavalkarViraj" - }, - "description": "my website", - "record": { - "CNAME": "viraj2722.github.io" - } -} diff --git a/domains/vishok.json b/domains/vishok.json deleted file mode 100644 index 410168790..000000000 --- a/domains/vishok.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "mvishok", - "email": "mvishok2005@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/vishwa.json b/domains/vishwa.json deleted file mode 100644 index 34a40edc1..000000000 --- a/domains/vishwa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vishwa2001911", - "email": "vprabhath937@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/visionavtr.json b/domains/visionavtr.json deleted file mode 100644 index b817b2fed..000000000 --- a/domains/visionavtr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "creatize", - "email": "lada_862@mail.ru" - }, - "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/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 deleted file mode 100644 index af154117a..000000000 --- a/domains/vleov.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vLeov", - "email": "leo.goetz2008@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/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/voldemort.json b/domains/voldemort.json deleted file mode 100644 index bb5000598..000000000 --- a/domains/voldemort.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Voldemort-h4ck", - "email": "vertesivv@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/voltic.json b/domains/voltic.json deleted file mode 100644 index cbba04072..000000000 --- a/domains/voltic.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "HarpyLMAO", - "email": "harpymclol@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" - } -} \ No newline at end of file diff --git a/domains/voonyuan.json b/domains/voonyuan.json deleted file mode 100644 index 61e408cf6..000000000 --- a/domains/voonyuan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VonYuan", - "email": "voonyuan11@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/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 deleted file mode 100644 index 684c1504d..000000000 --- a/domains/vt-d.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vt-d", - "email": "poonipapatv@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/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 deleted file mode 100644 index fd02ae2df..000000000 --- a/domains/wang.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "wang-on-top", - "email": "Real.Shid.999@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/wangjoui.json b/domains/wangjoui.json deleted file mode 100644 index 66b9329d2..000000000 --- a/domains/wangjoui.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hii311", - "email": "trieuvy5ghz@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/wankhede.json b/domains/wankhede.json deleted file mode 100644 index d26b45d0e..000000000 --- a/domains/wankhede.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/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 deleted file mode 100644 index 92e7cb91e..000000000 --- a/domains/wap.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kramiikk", - "email": "hifund@yandex.ru" - }, - "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/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 deleted file mode 100644 index bcd7b225c..000000000 --- a/domains/web-design-zone.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "sabbir875", - "email": "mastermail99999@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/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/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/whiffedk.json b/domains/whiffedk.json new file mode 100644 index 000000000..e725cba59 --- /dev/null +++ b/domains/whiffedk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WhiffedKnight", + "email": "abalabalscratch@gmail.com" + }, + "record": { + "CNAME": "whiffedknight.github.io" + } +} diff --git a/domains/wibu.json b/domains/wibu.json deleted file mode 100644 index 84c551334..000000000 --- a/domains/wibu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DomathID", - "email": "admin@yukinoshita.web.id" - }, - "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/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 72adff01c..942fee6dc 100644 --- a/domains/william.json +++ b/domains/william.json @@ -1,6 +1,6 @@ { "owner": { - "username": "WilliamDavidHarrison", + "username": "wdhdev", "email": "william@williamharrison.dev" }, diff --git a/domains/williamsebastian.json b/domains/williamsebastian.json deleted file mode 100644 index 2c091c5c9..000000000 --- a/domains/williamsebastian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "BaseParody", - "email": "baseparody@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/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 deleted file mode 100644 index 573a55433..000000000 --- a/domains/winniepat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "RavagerEdge", - "email": "wc92226@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/winter.json b/domains/winter.json deleted file mode 100644 index 695791da7..000000000 --- a/domains/winter.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "v1rtualWinter@outlook.com", - "discord": "vwinter" - }, - "record": { - "A": ["45.83.205.48"], - "MX": ["mail.winter.is-a.dev"] - } - -} 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/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/wnk.json b/domains/wnk.json deleted file mode 100644 index c453cc440..000000000 --- a/domains/wnk.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "wnk141", - "email": "github.amplifier811@passinbox.com" - }, - "record": { - "A": ["144.24.168.44"] - } -} diff --git a/domains/wolflangtw.json b/domains/wolflangtw.json deleted file mode 100644 index 58d976e80..000000000 --- a/domains/wolflangtw.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "wolflangtw", - "email": "wolflang.channel@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/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 deleted file mode 100644 index 39534e75b..000000000 --- a/domains/woxdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "WoxDev", - "email": "januardhodicky06@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/ws.json b/domains/ws.json new file mode 100644 index 000000000..ca8365fa9 --- /dev/null +++ b/domains/ws.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["43.229.135.123"] + } +} 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 deleted file mode 100644 index 397c34f77..000000000 --- a/domains/www.amulyasingh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "JstHuman", - "email": "ytamulya77@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/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 deleted file mode 100644 index 961b4cbc6..000000000 --- a/domains/x3ric.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "X3ric", - "email": "ericxaime@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/jay.json b/domains/x4b1.json similarity index 50% rename from domains/jay.json rename to domains/x4b1.json index e732cb3c7..70cf192e4 100644 --- a/domains/jay.json +++ b/domains/x4b1.json @@ -1,9 +1,9 @@ { "owner": { - "username": "jaygmx", - "email": "j.jay@gmx.us" + "username": "x4b1", + "email": "xmartinez1702@gmail.com" }, "record": { - "CNAME": "jay.readthedocs.io" + "CNAME": "xmartinez.dev" } } 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/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/xenapp.json b/domains/xenapp.json deleted file mode 100644 index 723ecc8d0..000000000 --- a/domains/xenapp.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "techsideofficial", - "email": "wienerwolf77@gmail.com" - }, - "record": { - "CNAME": "joysteem.web.app" - } -} diff --git a/domains/xian.json b/domains/xian.json deleted file mode 100644 index 917ce7eef..000000000 --- a/domains/xian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "xian-docdocil", - "email": "xian.docdocil@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/xiaozhe.json b/domains/xiaozhe.json deleted file mode 100644 index aa26a5890..000000000 --- a/domains/xiaozhe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "shizhhe", - "email": "meps105195@go.edu.tw" - }, - "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/xinfull.json b/domains/xinfull.json deleted file mode 100644 index 635e90072..000000000 --- a/domains/xinfull.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "xinfull", - "email": "robertkitunda89@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/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/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 deleted file mode 100644 index 48a745462..000000000 --- a/domains/xorisx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vividcolorss", - "email": "68936a@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/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/xuanwu.json b/domains/xuanwu.json deleted file mode 100644 index 14200571f..000000000 --- a/domains/xuanwu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "vlux", - "email": "vluxyue@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/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 deleted file mode 100644 index 77c870165..000000000 --- a/domains/yairmedina.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DarknessRisesFromBelow", - "email": "spam.me.please.do.it@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/yash-khattar.json b/domains/yash-khattar.json deleted file mode 100644 index 26520e320..000000000 --- a/domains/yash-khattar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Yash-Khattar", - "email": "yashkhattar73@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/yashwardhan.json b/domains/yashwardhan.json deleted file mode 100644 index ee445f4c1..000000000 --- a/domains/yashwardhan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "yashwardhan333666", - "email": "yashwardhan333666@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/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 deleted file mode 100644 index e4b2a45f0..000000000 --- a/domains/yef.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "idislikeapples", - "email": "jeremyq33@outlook.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" - } -} \ 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/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 deleted file mode 100644 index 3be8043e0..000000000 --- a/domains/yiyi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "danhuaxiansheng", - "email": "646042371@qq.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/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 deleted file mode 100644 index 4109556f7..000000000 --- a/domains/yoitsrt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "rtgamingwdt", - "email": "rustytrim11@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/youfoundalpha.json b/domains/youfoundalpha.json index 41efc80cf..2e76caa50 100644 --- a/domains/youfoundalpha.json +++ b/domains/youfoundalpha.json @@ -1,7 +1,12 @@ { "owner": { - "username": "YouFoundAlpha", - "email": "sweepalf@gmail.com" + "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 deleted file mode 100644 index 8a6294146..000000000 --- a/domains/yourmom.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "RipAngelhacks", - "email": "ojedallopezangel@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/youssef.json b/domains/youssef.json deleted file mode 100644 index ad3bd6dd6..000000000 --- a/domains/youssef.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "youssefmahboub", - "email": "szeropercent@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/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 deleted file mode 100644 index e62d1dd63..000000000 --- a/domains/yt.amulyasingh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "AMULYASing", - "email": "amulyasingh370@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" - } -} \ No newline at end of file diff --git a/domains/yuki.json b/domains/yuki.json deleted file mode 100644 index 15820aa00..000000000 --- a/domains/yuki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "YukiVN", - "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/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 deleted file mode 100644 index 3395877b8..000000000 --- a/domains/yuyu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "yuyulbm", - "email": "Jesus71236gaming@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/yyw.json b/domains/yyw.json deleted file mode 100644 index 710e5c0b2..000000000 --- a/domains/yyw.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "yywbadm", - "email": "yyw.981031@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/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/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/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/zepvil.json b/domains/zepvil.json deleted file mode 100644 index 08cbfca6e..000000000 --- a/domains/zepvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zepvil", - "email": "thezepvil@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/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/zeroratedtm.json b/domains/zeroratedtm.json deleted file mode 100644 index 202061ec1..000000000 --- a/domains/zeroratedtm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ZeroRatedTM", - "email": "zeroratedtm@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/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..68f770565 --- /dev/null +++ b/domains/zervo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarindaDraX", + "email": "123kishanvish@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} 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/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 deleted file mode 100644 index 48663a97c..000000000 --- a/domains/zhougonglai.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "zhougonglai", - "email": "838048635@qq.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/zhxck.json b/domains/zhxck.json deleted file mode 100644 index 391961f23..000000000 --- a/domains/zhxck.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "zh4ck", - "email": "zhacxk@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/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/ziroweb.json b/domains/ziroweb.json new file mode 100644 index 000000000..d2e7ef7da --- /dev/null +++ b/domains/ziroweb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} 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/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/zoey.json b/domains/zoey.json new file mode 100644 index 000000000..a6d3fc5f6 --- /dev/null +++ b/domains/zoey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zoey2936", + "email": "zoey@z0ey.de" + }, + "record": { + "CNAME": "ip.z0ey.de" + } +} diff --git a/domains/apa.json b/domains/zomb.json similarity index 50% rename from domains/apa.json rename to domains/zomb.json index 0af1ce035..de83db48c 100644 --- a/domains/apa.json +++ b/domains/zomb.json @@ -4,8 +4,6 @@ "email": "eagam0002@mymail.lausd.net" }, "record": { - "A": ["217.174.245.249"], - "MX": ["hosts.is-a.dev"], - "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + "MX": ["hosts.is-a.dev"] } -} \ No newline at end of file +} 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 deleted file mode 100644 index d488672fc..000000000 --- a/domains/zoronium.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "thinlayerofice", - "email": "zayaanmohammed1535@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" - } -} \ 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/zye.json b/domains/zye.json deleted file mode 100644 index 01b5231c3..000000000 --- a/domains/zye.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zyelixify", - "email": "heroxmain@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/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 }