diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1faaef82c..4286d6040 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,22 +27,16 @@ jobs: - run: npm install - - name: Get PR author - if: github.event_name == 'pull_request' - run: echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV - - - name: Get PR labels + - name: Fetch PR information if: github.event_name == 'pull_request' run: | + echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV + echo "PR_AUTHOR_ID=${{ github.event.pull_request.user.id }}" >> $GITHUB_ENV + LABELS=$(gh api --jq '[.labels[].name]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}) echo "PR_LABELS=$LABELS" >> $GITHUB_ENV - env: - GH_TOKEN: ${{ github.token }} - - name: Get changed files - if: github.event_name == 'pull_request' - run: | - FILES=$(gh api --jq '[.[] | .filename]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}/files) + FILES=$(gh api --jq '[.[] | select(.status != "removed") | .filename]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}/files) echo "CHANGED_FILES=$FILES" >> $GITHUB_ENV env: GH_TOKEN: ${{ github.token }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ac9c92abd..4d32369fb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Run tests - run: | - npm install - npx ava tests/*.test.js + - name: Run DNSControl tests + uses: is-a-dev/dnscontrol-action@main + with: + args: check - name: Generate creds.json run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json diff --git a/dnsconfig.js b/dnsconfig.js index 3cd55b011..aa94cdc1d 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -67,7 +67,21 @@ for (var subdomain in domains) { // Handle MX records if (domainData.record.MX) { for (var mx in domainData.record.MX) { - records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".")); + var mxRecord = domainData.record.MX[mx]; + + if (typeof mxRecord === "string") { + records.push( + MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".") + ); + } else { + records.push( + MX( + subdomainName, + parseInt(mxRecord.priority), + mxRecord.target + "." + ) + ); + } } } @@ -88,6 +102,23 @@ for (var subdomain in domains) { } } + // Handle TLSA records + if (domainData.record.TLSA) { + for (var tlsa in domainData.record.TLSA) { + var tlsaRecord = domainData.record.TLSA[tlsa]; + + records.push( + TLSA( + subdomainName, + tlsaRecord.usage, + tlsaRecord.selector, + tlsaRecord.matchingType, + tlsaRecord.certificate + ) + ); + } + } + // Handle TXT records if (domainData.record.TXT) { if (Array.isArray(domainData.record.TXT)) { diff --git a/domains/0xarchit.json b/domains/0xarchit.json index 303e85c79..cc3476cd2 100644 --- a/domains/0xarchit.json +++ b/domains/0xarchit.json @@ -4,11 +4,7 @@ "email": "0xarchit@proton.me" }, "record": { - "MX": [ - "mx.zoho.in", - "mx2.zoho.in", - "mx3.zoho.in" - ], + "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], "TXT": [ "v=spf1 include:zohomail.in ~all", "zoho-verification=zb94087787.zmverify.zoho.in", diff --git a/domains/4hmet.json b/domains/4hmet.json index 503098fb1..d2172911f 100644 --- a/domains/4hmet.json +++ b/domains/4hmet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ahmetunsal", - "email": "web.unsalahmet@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/57.json b/domains/57.json index 6d3e7a757..6b4cd2492 100644 --- a/domains/57.json +++ b/domains/57.json @@ -4,6 +4,17 @@ "email": "potatogamer34579@gmail.com" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/_atproto.lumi.json b/domains/_atproto.lumi.json index 7c80a4563..1a19c7d60 100644 --- a/domains/_atproto.lumi.json +++ b/domains/_atproto.lumi.json @@ -1,6 +1,6 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "email": "fatlum@lumi.is-a.dev" }, "record": { diff --git a/domains/_atproto.priyanshu.json b/domains/_atproto.priyanshu.json new file mode 100644 index 000000000..d56ee1548 --- /dev/null +++ b/domains/_atproto.priyanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "priyansxu@yahoo.com" + }, + "record": { + "TXT": "did=did:plc:psimj7hgshwoets2jvd6caib" + } +} diff --git a/domains/_atproto.razo.json b/domains/_atproto.razo.json deleted file mode 100644 index 6186da4d3..000000000 --- a/domains/_atproto.razo.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Domain verification for my Bluesky account.", - "owner": { - "username": "razobeckett", - "email": "razobeckett@proton.me" - }, - "record": { - "TXT": "did=did:plc:w6h4dilqruly6q4zki2mj5qt" - } -} diff --git a/domains/_discord.arlan.json b/domains/_discord.arlan.json index dbc8285c1..6ce9e19e6 100644 --- a/domains/_discord.arlan.json +++ b/domains/_discord.arlan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "handikatriarlan", - "email": "handikaarlan@gmail.com" - }, - "record": { - "TXT": "dh=bc2dcf8fbcb6ee4e4d77621a0f2369571bc03416" - } + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "TXT": "dh=bc2dcf8fbcb6ee4e4d77621a0f2369571bc03416" + } } diff --git a/domains/_discord.arsenobetaine.json b/domains/_discord.arsenobetaine.json index cef3ec70a..d7c22bf47 100644 --- a/domains/_discord.arsenobetaine.json +++ b/domains/_discord.arsenobetaine.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "arsenobetaine", - "email": "arsenobetaine@gmail.com" - }, - "record": { - "TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907" - } + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "record": { + "TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907" + } } diff --git a/domains/_discord.cally.json b/domains/_discord.cally.json index 80607c630..efb6a94ad 100644 --- a/domains/_discord.cally.json +++ b/domains/_discord.cally.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "cally-jt", - "email": "callumjt@proton.me" - }, - "record": { - "TXT": "dh=ad9865a1b510eca9917556bd35b8e60d089d3888" - } + "owner": { + "username": "cally-jt", + "email": "callumjt@proton.me" + }, + "record": { + "TXT": "dh=ad9865a1b510eca9917556bd35b8e60d089d3888" + } } diff --git a/domains/_discord.colin.json b/domains/_discord.colin.json index ef66babf0..44e17ad6b 100644 --- a/domains/_discord.colin.json +++ b/domains/_discord.colin.json @@ -1,9 +1,8 @@ { - "owner": { - "username": "ColinLeDev" - }, - "record": { - "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"] - } + "owner": { + "username": "ColinLeDev" + }, + "record": { + "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"] } - \ No newline at end of file +} diff --git a/domains/_discord.harunabdullah.json b/domains/_discord.harunabdullah.json index b02c66be9..e1922283a 100644 --- a/domains/_discord.harunabdullah.json +++ b/domains/_discord.harunabdullah.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "harunabdullah", - "email": "harunabdullahrakin@gmail.com" - }, - "record": { - "TXT": "dh=08ca7b2a348ba12437193e6d84e9b819dc75da31" - } + "owner": { + "username": "harunabdullahrakin", + "email": "harunabdullahrakin@gmail.com" + }, + "record": { + "TXT": "dh=08ca7b2a348ba12437193e6d84e9b819dc75da31" + } } diff --git a/domains/_discord.jonathan-russ.json b/domains/_discord.jonathan-russ.json deleted file mode 100644 index 85ec5b4c7..000000000 --- a/domains/_discord.jonathan-russ.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "JonathanXDR", - "email": "jonathan.russ@bluewin.ch", - "discord": "494042822320717827" - }, - "record": { - "TXT": "dh=38d522d76c80c10c68fa083f015b65ef2986a91b" - } -} diff --git a/domains/_discord.liam.json b/domains/_discord.liam.json index 99637acbc..61b416831 100644 --- a/domains/_discord.liam.json +++ b/domains/_discord.liam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "liamatienza", - "email": "liamdev@duck.com" - }, - "record": { - "TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968" - } + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "record": { + "TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968" + } } diff --git a/domains/_discord.lumi.json b/domains/_discord.lumi.json index 94a9a1b26..774b92f31 100644 --- a/domains/_discord.lumi.json +++ b/domains/_discord.lumi.json @@ -1,6 +1,6 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "discord": "563697359423406082" }, "record": { diff --git a/domains/_discord.lver.json b/domains/_discord.lver.json index c2bafa3d3..6441d8735 100644 --- a/domains/_discord.lver.json +++ b/domains/_discord.lver.json @@ -6,4 +6,4 @@ "record": { "TXT": "dh=2e24b5f5d9aa41852614d8b5760748d097b138b9" } -} \ No newline at end of file +} diff --git a/domains/_discord.nek0zyx.json b/domains/_discord.nek0zyx.json new file mode 100644 index 000000000..b409d2807 --- /dev/null +++ b/domains/_discord.nek0zyx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nek0zyx", + "email": "nek0zyx@costmiku.space" + }, + "record": { + "TXT": "dh=540cae67bbdffb46fb380c384823dda2270a28f0" + } +} diff --git a/domains/_discord.nickibreeki.json b/domains/_discord.nickibreeki.json index 6a6fbec44..d3b54f4f7 100644 --- a/domains/_discord.nickibreeki.json +++ b/domains/_discord.nickibreeki.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "n1ckibreeki", - "email": "nickibreeki@outlook.com" - }, - "record": { - "TXT": "dh=14acda3ef13ac5d15f7cf8e8cfd3a8556fc227eb" - } + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "record": { + "TXT": "dh=14acda3ef13ac5d15f7cf8e8cfd3a8556fc227eb" + } } diff --git a/domains/_discord.notzer0two.json b/domains/_discord.notzer0two.json index 73045103f..690fc331e 100644 --- a/domains/_discord.notzer0two.json +++ b/domains/_discord.notzer0two.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NotZer0Two", - "email": "lyonfan2010@gmail.com" - }, - "record": { - "TXT": "dh=89504c863f0365fd5e214e695141b54b8d44c6c7" - } + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "TXT": "dh=89504c863f0365fd5e214e695141b54b8d44c6c7" + } } diff --git a/domains/_discord.priyanshu.json b/domains/_discord.priyanshu.json index de00307ca..9acf6b2e0 100644 --- a/domains/_discord.priyanshu.json +++ b/domains/_discord.priyanshu.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "discord": "priyansxu" }, "record": { diff --git a/domains/_discord.qing762.json b/domains/_discord.qing762.json index 5eec384c6..29b423eda 100644 --- a/domains/_discord.qing762.json +++ b/domains/_discord.qing762.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "qing762", - "email": "q1ng762@outlook.com" - }, - "record": { - "TXT": "dh=c798ccabffa36b2206669860c46efe903852e675" - } -} \ No newline at end of file + "owner": { + "username": "qing762", + "email": "q1ng762@outlook.com" + }, + "record": { + "TXT": "dh=c798ccabffa36b2206669860c46efe903852e675" + } +} diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json index c5afbd574..b9cd3eb35 100644 --- a/domains/_discord.rouf0x.json +++ b/domains/_discord.rouf0x.json @@ -1,7 +1,7 @@ { "owner": { - "username": "Roufox", - "discord": "Roufox" + "username": "Rouf0x", + "discord": "roufox" }, "record": { "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" diff --git a/domains/_discord.sabbir.json b/domains/_discord.sabbir.json deleted file mode 100644 index a57a9d97f..000000000 --- a/domains/_discord.sabbir.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "s8rr" - }, - "record": { - "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"] - } -} diff --git a/domains/_discord.schuh.json b/domains/_discord.schuh.json index 29d469ab3..b7db211c7 100644 --- a/domains/_discord.schuh.json +++ b/domains/_discord.schuh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vqpe", - "email": "theschuhofyou@gmail.com" - }, - "record": { - "TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3" - } + "owner": { + "username": "vqpe", + "email": "theschuhofyou@gmail.com" + }, + "record": { + "TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3" + } } diff --git a/domains/_discord.sep.json b/domains/_discord.sep.json index f1584c0e4..801b76c44 100644 --- a/domains/_discord.sep.json +++ b/domains/_discord.sep.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "sepultrex", - "email": "sepultrex@gmail.com" - }, - "record": { - "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff" - } -} \ No newline at end of file +{ + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "record": { + "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff" + } +} diff --git a/domains/_discord.shimizu.json b/domains/_discord.shimizu.json index 5ce34aa5e..027445582 100644 --- a/domains/_discord.shimizu.json +++ b/domains/_discord.shimizu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mikofoxie", - "email": "shimizulazy@gmail.com" - }, - "record": { - "TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89" - } + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89" + } } diff --git a/domains/_discord.thangle.json b/domains/_discord.thangle.json index 06ee5723d..ed21f0026 100644 --- a/domains/_discord.thangle.json +++ b/domains/_discord.thangle.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "ThangLe9999", - "discord": "872078632565215282", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G5BtkuOaAUmFdixUP1IN4ZTmec-NZCllzsliK6q8sggJkBzasXefGfeEh6pBOiZ6ZkV2gr-GCdTN7LkP7QLPgLN6FglXac8BP1DSGDF3Lo8ULvrM-CpLUdeR0mqes6OQVvWdmPhZgVFGF3ItzDXQ7SqB6zrMbEWEwuZeg2KLHyPqvHsdrWLjzNpvVUwZRBuxicPyNTT70oMbPaOn3cvg4J_mVxNywnrIY5F34-T4tmiOEijsHmPwG2RzHsTCzC3cGYfNmokQtAsL0jhIMH4GzYdbTUsjDOrqbLdT-W2y33pQkeQuCjdf8KkeYCfacE0oWAZKFhrW2X0zJLYvGQBeuw.3qY1yT9H2x2WH2DePTziiw.PJvjWBGxfTgCKqZiHuAsRaUEdjld3XeMAw7NwX9P28VSFOS3-xsSiOvbLrCo1n1nTF-4g8EIRkkFJPn2P1T6YUDNuHVqbvnGg2wfhpfdSaM.yxghx67x9iGLMjDEKJdeAw" - }, - - "record": { - "TXT": "dh=8d98fb5fefbb1915e89d5dc43c9fdd9fa801557f" - } + "owner": { + "username": "ThangLe9999", + "discord": "872078632565215282", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G5BtkuOaAUmFdixUP1IN4ZTmec-NZCllzsliK6q8sggJkBzasXefGfeEh6pBOiZ6ZkV2gr-GCdTN7LkP7QLPgLN6FglXac8BP1DSGDF3Lo8ULvrM-CpLUdeR0mqes6OQVvWdmPhZgVFGF3ItzDXQ7SqB6zrMbEWEwuZeg2KLHyPqvHsdrWLjzNpvVUwZRBuxicPyNTT70oMbPaOn3cvg4J_mVxNywnrIY5F34-T4tmiOEijsHmPwG2RzHsTCzC3cGYfNmokQtAsL0jhIMH4GzYdbTUsjDOrqbLdT-W2y33pQkeQuCjdf8KkeYCfacE0oWAZKFhrW2X0zJLYvGQBeuw.3qY1yT9H2x2WH2DePTziiw.PJvjWBGxfTgCKqZiHuAsRaUEdjld3XeMAw7NwX9P28VSFOS3-xsSiOvbLrCo1n1nTF-4g8EIRkkFJPn2P1T6YUDNuHVqbvnGg2wfhpfdSaM.yxghx67x9iGLMjDEKJdeAw" + }, + + "record": { + "TXT": "dh=8d98fb5fefbb1915e89d5dc43c9fdd9fa801557f" + } } - diff --git a/domains/_discord.whisp.json b/domains/_discord.whisp.json deleted file mode 100644 index e84b61faf..000000000 --- a/domains/_discord.whisp.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "itswhisp", - "email": "ag.whisp@gmail.com" - }, - "record": { - "TXT": "dh=f98e45bf000905131a5ee712210c9561d2079b24" - } -} diff --git a/domains/_gh-lumidevelopment-o.lumi.json b/domains/_gh-lumidevelopment-o.lumi.json index 93f4e58c2..9053f020f 100644 --- a/domains/_gh-lumidevelopment-o.lumi.json +++ b/domains/_gh-lumidevelopment-o.lumi.json @@ -1,6 +1,6 @@ { "owner": { - "username": "LUMIDevelopment" + "username": "itssfatlum" }, "record": { "TXT": ["eade7c5be7"] diff --git a/domains/_github-challenge-spicydevs-org.spicy.json b/domains/_github-challenge-spicydevs-org.spicy.json deleted file mode 100644 index b38b357ca..000000000 --- a/domains/_github-challenge-spicydevs-org.spicy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "oyepriyansh", - "email": "oyepriyansh@hotmail.com" - }, - "record": { - "TXT": "0e84f14f3a" - } -} diff --git a/domains/_github-pages-challenge-abiapp789.abiapp22.json b/domains/_github-pages-challenge-abiapp789.abiapp22.json deleted file mode 100644 index cd681e6b9..000000000 --- a/domains/_github-pages-challenge-abiapp789.abiapp22.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "domain": "abiapp1789.is-a.dev", - "owner": { - "username": "abiapp789", - "email": "abiapp2024@gmail.com" - }, - "record": { - "TXT": "e8984bf946de59788c1b78b19b8d51" - } -} diff --git a/domains/_github-pages-challenge-akpi816218.akpi.json b/domains/_github-pages-challenge-akpi816218.akpi.json deleted file mode 100644 index 030db64ef..000000000 --- a/domains/_github-pages-challenge-akpi816218.akpi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "akpi816218", - "discord": "equus_quagga" - }, - "record": { - "TXT": "83f74e3c71720aa4514d32cabe7324" - } -} diff --git a/domains/_github-pages-challenge-alenseeman.alen.json b/domains/_github-pages-challenge-alenseeman.alen.json new file mode 100644 index 000000000..2af91df99 --- /dev/null +++ b/domains/_github-pages-challenge-alenseeman.alen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alenseeman", + "email": "alenseeman@hotmail.com" + }, + "record": { + "TXT": "8a6132b9777f26ea1a3f2a892f92f6" + } +} diff --git a/domains/_github-pages-challenge-alpha-og.athulanoop.json b/domains/_github-pages-challenge-alpha-og.athulanoop.json index 2b0f1f4f9..1aab4b74e 100644 --- a/domains/_github-pages-challenge-alpha-og.athulanoop.json +++ b/domains/_github-pages-challenge-alpha-og.athulanoop.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "alpha-og", - "email": "athulanoop2020@gmail.com" - }, - "record": { - "TXT": "f39f5fde5d918c2ca297b843c5776b" - } + "owner": { + "username": "alpha-og", + "email": "athulanoop2020@gmail.com" + }, + "record": { + "TXT": "f39f5fde5d918c2ca297b843c5776b" + } } diff --git a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json index ab62a0cc6..62bf5d789 100644 --- a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json +++ b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "arsenobetaine", - "email": "arsenobetaine@gmail.com" - }, - "record": { - "TXT": "02ff8b21eeaed5e8333376fc244485" - } + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "record": { + "TXT": "02ff8b21eeaed5e8333376fc244485" + } } diff --git a/domains/_github-pages-challenge-ayberktandogan.ayberk.json b/domains/_github-pages-challenge-ayberktandogan.ayberk.json new file mode 100644 index 000000000..7d2dd41e0 --- /dev/null +++ b/domains/_github-pages-challenge-ayberktandogan.ayberk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ayberktandogan", + "email": "ayberk.tandogan@outlook.com" + }, + "record": { + "TXT": "6fe6a3695f856260a2fa97ce9dfe94" + } +} diff --git a/domains/_github-pages-challenge-baturalp52.baturalp.json b/domains/_github-pages-challenge-baturalp52.baturalp.json index 8907a66a2..4bdbd3237 100644 --- a/domains/_github-pages-challenge-baturalp52.baturalp.json +++ b/domains/_github-pages-challenge-baturalp52.baturalp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Baturalp52", - "email": "baturalpsonmez2002@gmail.com" - }, - "record": { - "TXT": "8e1fd82942a7ceae35f62019e370aa" - } + "owner": { + "username": "Baturalp52", + "email": "baturalpsonmez2002@gmail.com" + }, + "record": { + "TXT": "8e1fd82942a7ceae35f62019e370aa" + } } diff --git a/domains/_github-pages-challenge-breakertws.breakertws.json b/domains/_github-pages-challenge-breakertws.breakertws.json index c3c80c39a..1f660b9b6 100644 --- a/domains/_github-pages-challenge-breakertws.breakertws.json +++ b/domains/_github-pages-challenge-breakertws.breakertws.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "BreakerTWS", - "email": "breakingtws@gmail.com" - }, - "record": { - "TXT": "dcde9a29c9e10cbea2e47c46805b57" - } + "owner": { + "username": "BreakerTWS", + "email": "breakingtws@gmail.com" + }, + "record": { + "TXT": "dcde9a29c9e10cbea2e47c46805b57" + } } diff --git a/domains/_github-pages-challenge-chauvansang.sang.json b/domains/_github-pages-challenge-chauvansang.sang.json index 733c9a150..4ddffeb83 100644 --- a/domains/_github-pages-challenge-chauvansang.sang.json +++ b/domains/_github-pages-challenge-chauvansang.sang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chauvansang", - "email": "cvansang94@gmail.com" - }, - "record": { - "TXT": "8a2d191d582a62b817e10aa08b67f5" - } + "owner": { + "username": "chauvansang", + "email": "cvansang94@gmail.com" + }, + "record": { + "TXT": "8a2d191d582a62b817e10aa08b67f5" + } } diff --git a/domains/_github-pages-challenge-daspete.pete.json b/domains/_github-pages-challenge-daspete.pete.json new file mode 100644 index 000000000..64ef791c7 --- /dev/null +++ b/domains/_github-pages-challenge-daspete.pete.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daspete", + "email": "daspetemail@gmail.com" + }, + "record": { + "TXT": "ece69b9f0bf2d6d1bda512b8af30fa" + } +} diff --git a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json deleted file mode 100644 index e68a19e0e..000000000 --- a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Github page domain verification", - "owner": { - "username": "fa-fifi", - "email": "fafifi1997@gmail.com" - }, - "record": { - "TXT": "4076c15aac94a89c1a131d252cf368" - } -} diff --git a/domains/_github-pages-challenge-herwingx.ghsearch.json b/domains/_github-pages-challenge-herwingx.ghsearch.json index ee7bc69e0..6c38dd1e4 100644 --- a/domains/_github-pages-challenge-herwingx.ghsearch.json +++ b/domains/_github-pages-challenge-herwingx.ghsearch.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "herwingx", - "email": "herwingmacias@gmail.com" - }, - "record": { - "TXT": "2a006f5ffbfb592d6001e215d479da" - } + "owner": { + "username": "herwingx", + "email": "herwingmacias@gmail.com" + }, + "record": { + "TXT": "2a006f5ffbfb592d6001e215d479da" + } } diff --git a/domains/_github-pages-challenge-hungthai1401.hungthai.json b/domains/_github-pages-challenge-hungthai1401.hungthai.json index 13abbc273..04d99debd 100644 --- a/domains/_github-pages-challenge-hungthai1401.hungthai.json +++ b/domains/_github-pages-challenge-hungthai1401.hungthai.json @@ -6,4 +6,4 @@ "record": { "TXT": "693e3be4f1121fc00f2fbad65439d0" } -} \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-i-jer.jer.json b/domains/_github-pages-challenge-i-jer.jer.json index ba868f179..cc0be384e 100644 --- a/domains/_github-pages-challenge-i-jer.jer.json +++ b/domains/_github-pages-challenge-i-jer.jer.json @@ -1,6 +1,6 @@ { "owner": { - "username": "JerBlox", + "username": "i-Jer", "email": "chen.fuyuan07@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-jecoh12.jecoh.json b/domains/_github-pages-challenge-jecoh12.jecoh.json index 999b1de72..be579d34b 100644 --- a/domains/_github-pages-challenge-jecoh12.jecoh.json +++ b/domains/_github-pages-challenge-jecoh12.jecoh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jecoh12", - "email": "jecoh12@gmail.com" - }, - "record": { - "TXT": "06b17cb3b27f897547ef636ec8189d" - } + "owner": { + "username": "jecoh12", + "email": "jecoh12@gmail.com" + }, + "record": { + "TXT": "06b17cb3b27f897547ef636ec8189d" + } } diff --git a/domains/_github-pages-challenge-kajpio.kajetan.json b/domains/_github-pages-challenge-kajpio.kajetan.json index 02b3d6692..351dd400a 100644 --- a/domains/_github-pages-challenge-kajpio.kajetan.json +++ b/domains/_github-pages-challenge-kajpio.kajetan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Kajpio", - "email": "thugmichel14@gmail.com" - }, - "record": { - "TXT": "22a0972632a2df28e644ae320025b9" - } -} \ No newline at end of file + "owner": { + "username": "Kajpio", + "email": "thugmichel14@gmail.com" + }, + "record": { + "TXT": "22a0972632a2df28e644ae320025b9" + } +} diff --git a/domains/_github-pages-challenge-kellylawrence.kelly.json b/domains/_github-pages-challenge-kellylawrence.kelly.json index a6f1930f8..b9c8eb85b 100644 --- a/domains/_github-pages-challenge-kellylawrence.kelly.json +++ b/domains/_github-pages-challenge-kellylawrence.kelly.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kellylawrence", - "email": "kelly@kellylawrence.ca" - }, - "record": { - "TXT": "26237ec72d51f1ba56e371e8e3fef9" - } + "owner": { + "username": "kellylawrence", + "email": "kelly@kellylawrence.ca" + }, + "record": { + "TXT": "26237ec72d51f1ba56e371e8e3fef9" + } } diff --git a/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json index d0d73b34d..c3623095c 100644 --- a/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json +++ b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kunalpurandare", - "email": "kunalpurandare1703@gmail.com" - }, - "record": { - "TXT": "6ab808f578d906f3b0fe8333da9b57" - } + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "record": { + "TXT": "6ab808f578d906f3b0fe8333da9b57" + } } diff --git a/domains/_github-pages-challenge-lean-cc.kars.json b/domains/_github-pages-challenge-lean-cc.kars.json deleted file mode 100644 index 3b0f43bdf..000000000 --- a/domains/_github-pages-challenge-lean-cc.kars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website.", - "repo": "https://github.com/lean-cc/Personal-site", - "owner": { - "username": "lean-cc", - "email": "leancc3020@gmail.com" - }, - "record": { - "TXT": "3c11059b471a5b5163437912c020df" - } -} diff --git a/domains/_github-pages-challenge-leespencer.spencer.json b/domains/_github-pages-challenge-leespencer.spencer.json index 6482df6a5..9ad6bbbfe 100644 --- a/domains/_github-pages-challenge-leespencer.spencer.json +++ b/domains/_github-pages-challenge-leespencer.spencer.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "LeeSpencer", - "email": "mr.lee.spencer@gmail.com" - }, - "record": { - "TXT": "d2ec009b06395dafb0b2a7cb525a3a" - } + "owner": { + "username": "LeeSpencer", + "email": "mr.lee.spencer@gmail.com" + }, + "record": { + "TXT": "d2ec009b06395dafb0b2a7cb525a3a" + } } diff --git a/domains/_github-pages-challenge-lyaxsh.lyaxsh.json b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json index 796fbda51..8ab20d7e9 100644 --- a/domains/_github-pages-challenge-lyaxsh.lyaxsh.json +++ b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lyaxsh", - "email": "lakshnahar.forwork@gmail.com" - }, - "record": { - "TXT": "052e15826ee7e1723c713d222b1bcc" - } + "owner": { + "username": "lyaxsh", + "email": "lakshnahar.forwork@gmail.com" + }, + "record": { + "TXT": "052e15826ee7e1723c713d222b1bcc" + } } diff --git a/domains/_github-pages-challenge-mcalec-dev.mcalec.json b/domains/_github-pages-challenge-mcalec-dev.mcalec.json index d1525b872..be12871f5 100644 --- a/domains/_github-pages-challenge-mcalec-dev.mcalec.json +++ b/domains/_github-pages-challenge-mcalec-dev.mcalec.json @@ -1,12 +1,12 @@ { - "description": "mcalec.is-a.dev", - "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", - "owner": { - "username": "mcalec-dev", - "email": "hello@mcalec.dev", - "discord": "mcalec" - }, - "record": { - "TXT": "015fcfab7237a3342e028237414716" - } + "description": "mcalec.is-a.dev", + "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", + "owner": { + "username": "mcalec-dev", + "email": "hello@mcalec.dev", + "discord": "mcalec" + }, + "record": { + "TXT": "015fcfab7237a3342e028237414716" + } } diff --git a/domains/_github-pages-challenge-mnhtng.mnhtng.json b/domains/_github-pages-challenge-mnhtng.mnhtng.json new file mode 100644 index 000000000..20bde4b60 --- /dev/null +++ b/domains/_github-pages-challenge-mnhtng.mnhtng.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mnhtng" + }, + "record": { + "TXT": "d3bfa02a77af7eec2db5df3a4d98da" + } +} diff --git a/domains/_github-pages-challenge-mrsiir.xavier.json b/domains/_github-pages-challenge-mrsiir.xavier.json index f86ea66ba..c68522f20 100644 --- a/domains/_github-pages-challenge-mrsiir.xavier.json +++ b/domains/_github-pages-challenge-mrsiir.xavier.json @@ -6,4 +6,4 @@ "record": { "TXT": "137e2b17a723cce89a10e5e245a3b5" } -} \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-natedog2424.nd24.json b/domains/_github-pages-challenge-natedog2424.nd24.json index b1edfb72e..1be329a14 100644 --- a/domains/_github-pages-challenge-natedog2424.nd24.json +++ b/domains/_github-pages-challenge-natedog2424.nd24.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "natedog2424", - "email": "natedog2424mail@gmail.com" - }, - "record": { - "TXT": "277ecd07aa6d1593b09b96c9329e3b" - } + "owner": { + "username": "natedog2424", + "email": "natedog2424mail@gmail.com" + }, + "record": { + "TXT": "277ecd07aa6d1593b09b96c9329e3b" + } } diff --git a/domains/_github-pages-challenge-nduartech.nathan.json b/domains/_github-pages-challenge-nduartech.nathan.json index 937af8d0d..4b689eb3b 100644 --- a/domains/_github-pages-challenge-nduartech.nathan.json +++ b/domains/_github-pages-challenge-nduartech.nathan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nduartech", - "email": "nduartech101@gmail.com" - }, - "record": { - "TXT": "79d3051264abe353b91b26d27d0e42" - } + "owner": { + "username": "nduartech", + "email": "nduartech101@gmail.com" + }, + "record": { + "TXT": "79d3051264abe353b91b26d27d0e42" + } } diff --git a/domains/_github-pages-challenge-nuraly-v.nuraly.json b/domains/_github-pages-challenge-nuraly-v.nuraly.json index 54bf7bf6f..3407dc574 100644 --- a/domains/_github-pages-challenge-nuraly-v.nuraly.json +++ b/domains/_github-pages-challenge-nuraly-v.nuraly.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nuraly-v", - "email": "mescorpx@gmail.com" - }, - "record": { - "TXT": "aecce766c2f539c48be6e59e611020" - } + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "record": { + "TXT": "aecce766c2f539c48be6e59e611020" + } } diff --git a/domains/_github-pages-challenge-parzi-val.bala.json b/domains/_github-pages-challenge-parzi-val.bala.json index 42a5c2b1d..d616d7121 100644 --- a/domains/_github-pages-challenge-parzi-val.bala.json +++ b/domains/_github-pages-challenge-parzi-val.bala.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "parzi-val", - "email": "krbala1511@gmail.com" - }, - "record": { - "TXT": "ce0aa85ad09c4e53ee08034cd66447" - } -} \ No newline at end of file + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "TXT": "ce0aa85ad09c4e53ee08034cd66447" + } +} diff --git a/domains/_github-pages-challenge-prs96.pranavs.json b/domains/_github-pages-challenge-prs96.pranavs.json new file mode 100644 index 000000000..92df3ec58 --- /dev/null +++ b/domains/_github-pages-challenge-prs96.pranavs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prs96", + "email": "pranavsudheesh34@gmail.com" + }, + "record": { + "TXT": "191a26c6879278f22117451ad5d91c" + } +} diff --git a/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json b/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json deleted file mode 100644 index f3502af5c..000000000 --- a/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ramanandkrgupta", - "email": "ramanand@myyahoo.com" - }, - "record": { - "TXT": "07cd3e879dce98546f212f494f50da" - } -} diff --git a/domains/_github-pages-challenge-robinjesba.robin.json b/domains/_github-pages-challenge-robinjesba.robin.json index 0019269cc..eafe3866e 100644 --- a/domains/_github-pages-challenge-robinjesba.robin.json +++ b/domains/_github-pages-challenge-robinjesba.robin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "RobinJesba", - "email": "jb.robinm@gmail.com" - }, - "record": { - "TXT": "eed44d532373578471a0fb245336c4" - } + "owner": { + "username": "RobinJesba", + "email": "jb.robinm@gmail.com" + }, + "record": { + "TXT": "eed44d532373578471a0fb245336c4" + } } diff --git a/domains/_github-pages-challenge-rudwolf.rodolfo.json b/domains/_github-pages-challenge-rudwolf.rodolfo.json new file mode 100644 index 000000000..a3d1d3b7d --- /dev/null +++ b/domains/_github-pages-challenge-rudwolf.rodolfo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rudwolf", + "email": "rudwolf@gmail.com" + }, + "record": { + "TXT": "549d8e2eaf3753b07362c99c2eb240" + } +} diff --git a/domains/_github-pages-challenge-saganaki22.drbaph.json b/domains/_github-pages-challenge-saganaki22.drbaph.json new file mode 100644 index 000000000..8c27fc546 --- /dev/null +++ b/domains/_github-pages-challenge-saganaki22.drbaph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "record": { + "TXT": "5aa90f589281a20522ec58d7b8a739" + } +} diff --git a/domains/_github-pages-challenge-sandunmadhushan.sandun.json b/domains/_github-pages-challenge-sandunmadhushan.sandun.json index 64530a2c7..a26c14771 100644 --- a/domains/_github-pages-challenge-sandunmadhushan.sandun.json +++ b/domains/_github-pages-challenge-sandunmadhushan.sandun.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sandunMadhushan", - "email": "sandunhmadushan9330@gmail.com" - }, - "record": { - "TXT": "6f8cbcd17af6f3e277eb864f78cfeb" - } + "owner": { + "username": "sandunMadhushan", + "email": "sandunhmadushan9330@gmail.com" + }, + "record": { + "TXT": "6f8cbcd17af6f3e277eb864f78cfeb" + } } diff --git a/domains/_github-pages-challenge-sangeeth-606.sangeeth.json b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json index 4a4eb54b2..f02e58941 100644 --- a/domains/_github-pages-challenge-sangeeth-606.sangeeth.json +++ b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sangeeth-606", - "email": "sangeeth999123@gmail.com" - }, - "record": { - "TXT": "db86cdabc094732729851d093e4c47" - } + "owner": { + "username": "sangeeth-606", + "email": "sangeeth999123@gmail.com" + }, + "record": { + "TXT": "db86cdabc094732729851d093e4c47" + } } diff --git a/domains/_github-pages-challenge-sepultrex.sep.json b/domains/_github-pages-challenge-sepultrex.sep.json index 34d0664e8..2d9d5dca9 100644 --- a/domains/_github-pages-challenge-sepultrex.sep.json +++ b/domains/_github-pages-challenge-sepultrex.sep.json @@ -1,8 +1,8 @@ -{ - "owner": { - "username": "sepultrex" - }, - "record": { - "TXT": "9d48d99c569b77b148651f4052b25f" - } - } \ No newline at end of file +{ + "owner": { + "username": "sepultrex" + }, + "record": { + "TXT": "9d48d99c569b77b148651f4052b25f" + } +} diff --git a/domains/_github-pages-challenge-shukraditya.shukraditya.json b/domains/_github-pages-challenge-shukraditya.shukraditya.json index 88e6eb8d1..3719166a9 100644 --- a/domains/_github-pages-challenge-shukraditya.shukraditya.json +++ b/domains/_github-pages-challenge-shukraditya.shukraditya.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "shukraditya", - "email": "shukra12bose@gmail.com" - }, - "record": { - "TXT": "617d0b9d13126957daf657d7396ec2" - } -} \ No newline at end of file + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "record": { + "TXT": "617d0b9d13126957daf657d7396ec2" + } +} diff --git a/domains/_github-pages-challenge-sidhant947.sidhant.json b/domains/_github-pages-challenge-sidhant947.sidhant.json index 3f65fd4e6..24fcbb24b 100644 --- a/domains/_github-pages-challenge-sidhant947.sidhant.json +++ b/domains/_github-pages-challenge-sidhant947.sidhant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sidhant947", - "email": "khatkarsidhant@gmail.com" - }, - "record": { - "TXT": "6c4f29a8923a09d9e9c36a95669015" - } -} \ No newline at end of file + "owner": { + "username": "sidhant947", + "email": "khatkarsidhant@gmail.com" + }, + "record": { + "TXT": "6c4f29a8923a09d9e9c36a95669015" + } +} diff --git a/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json index 361474540..2373cfd05 100644 --- a/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json +++ b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "UnidentifiedX", - "email": "sunzizhuo33@gmail.com" - }, - "record": { - "TXT": "82c071e58d59a58ca0ac52f3240f65" - } + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "record": { + "TXT": "82c071e58d59a58ca0ac52f3240f65" + } } diff --git a/domains/_github-pages-challenge-yashokuu.yas.json b/domains/_github-pages-challenge-yashokuu.yas.json index 1de373534..17656bd55 100644 --- a/domains/_github-pages-challenge-yashokuu.yas.json +++ b/domains/_github-pages-challenge-yashokuu.yas.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yashokuu", - "email": "yas.studios.en@gmail.com" - }, - "record": { - "TXT": "3dc5a3f950e7f70f6535b6bf715042" - } + "owner": { + "username": "yashoukuu", + "email": "yas.studios.en@gmail.com" + }, + "record": { + "TXT": "3dc5a3f950e7f70f6535b6bf715042" + } } diff --git a/domains/_github-pages-challenge.wildchamo.json b/domains/_github-pages-challenge.wildchamo.json index 836e5b1ac..ea0ece3d4 100644 --- a/domains/_github-pages-challenge.wildchamo.json +++ b/domains/_github-pages-challenge.wildchamo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "wildchamo", - "email": "wildchamo@gmail.com" - }, - "record": { - "TXT": "5b9a158bcd9821a7a78b5b362bccf0" - } + "owner": { + "username": "wildchamo", + "email": "wildchamo@gmail.com" + }, + "record": { + "TXT": "5b9a158bcd9821a7a78b5b362bccf0" + } } diff --git a/domains/_vercel.4hmet.json b/domains/_vercel.4hmet.json index a11a56cfc..548534f94 100644 --- a/domains/_vercel.4hmet.json +++ b/domains/_vercel.4hmet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ahmetunsal", - "email": "web.unsalahmet@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=4hmet.is-a.dev,c313bc7151ebff9a1f1f" - } + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=4hmet.is-a.dev,c313bc7151ebff9a1f1f" + } } diff --git a/domains/_vercel.aadityaa.json b/domains/_vercel.aadityaa.json index bfa029eff..58ad65db3 100644 --- a/domains/_vercel.aadityaa.json +++ b/domains/_vercel.aadityaa.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Aadityaa2606", - "email": "aadityaa2606@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=aadityaa.is-a.dev,ac8d0d70ecad184cddfa" - } + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=aadityaa.is-a.dev,ac8d0d70ecad184cddfa" + } } diff --git a/domains/_vercel.aakashrawat.json b/domains/_vercel.aakashrawat.json index 0e745a4ff..b92e69e32 100644 --- a/domains/_vercel.aakashrawat.json +++ b/domains/_vercel.aakashrawat.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "aakashrawat04", - "email": "2004rawataakash@gmail.com", - "discord": "759817307957493800" - }, - "record": { - "TXT": "vc-domain-verify=aakashrawat.is-a.dev,d80839eb94f222e03728" - } + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "record": { + "TXT": "vc-domain-verify=aakashrawat.is-a.dev,d80839eb94f222e03728" + } } diff --git a/domains/_vercel.abdullah-al-mridul.json b/domains/_vercel.abdullah-al-mridul.json index f4d8c53a2..178199aa9 100644 --- a/domains/_vercel.abdullah-al-mridul.json +++ b/domains/_vercel.abdullah-al-mridul.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "abdullah-al-mridul", - "email": "rim89987@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=abdullah-al-mridul.is-a.dev,28add02b5250c0339353" - } + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=abdullah-al-mridul.is-a.dev,28add02b5250c0339353" + } } diff --git a/domains/_vercel.abdullahcxd.json b/domains/_vercel.abdullahcxd.json index 2d0d7e872..9d91dd155 100644 --- a/domains/_vercel.abdullahcxd.json +++ b/domains/_vercel.abdullahcxd.json @@ -1,10 +1,10 @@ -{ - "owner": { - "username": "abdullahcxd", - "email": "sabdullahcxd@gmail.com", - "discord": "sabdullahcxd" - }, - "record": { - "TXT": "vc-domain-verify=docs.abdullahcxd.is-a.dev,88eae4c1971934256cdf" - } -} \ No newline at end of file +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "record": { + "TXT": "vc-domain-verify=docs.abdullahcxd.is-a.dev,88eae4c1971934256cdf" + } +} diff --git a/domains/_vercel.about.harshshah.json b/domains/_vercel.about.harshshah.json deleted file mode 100644 index 20179c209..000000000 --- a/domains/_vercel.about.harshshah.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Harsh-0986", - "email": "harsh2102.dev@gmail.com", - "discord": "889700837520199761" - }, - "record": { - "TXT": "vc-domain-verify=about.harshshah.is-a.dev,f9d8e16efb5cc0d31d96" - } -} diff --git a/domains/_vercel.ahios.json b/domains/_vercel.ahios.json new file mode 100644 index 000000000..eec2a6e3e --- /dev/null +++ b/domains/_vercel.ahios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ahios.is-a.dev,4937fc5cde05797c4fc3" + } +} diff --git a/domains/_vercel.aishik999.json b/domains/_vercel.aishik999.json index 8099f11ef..f1d7e4b23 100644 --- a/domains/_vercel.aishik999.json +++ b/domains/_vercel.aishik999.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aishik999", - "email": "aishikm2002@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=aishik999.is-a.dev,ee81dd1464c614776855" - } + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=aishik999.is-a.dev,ee81dd1464c614776855" + } } diff --git a/domains/_vercel.aitji.json b/domains/_vercel.aitji.json index ae4360a8f..3b7104481 100644 --- a/domains/_vercel.aitji.json +++ b/domains/_vercel.aitji.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "aitji", - "email": "ait.suriya@gmail.com", - "discord": "aitji" - }, - "record": { - "TXT": "vc-domain-verify=aitji.is-a.dev,0a05468b82f542c74dea" - } + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com", + "discord": "aitji" + }, + "record": { + "TXT": "vc-domain-verify=aitji.is-a.dev,0a05468b82f542c74dea" + } } diff --git a/domains/_vercel.akashkumar.json b/domains/_vercel.akashkumar.json index 7f58c5a8f..e35f85f2b 100644 --- a/domains/_vercel.akashkumar.json +++ b/domains/_vercel.akashkumar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akash-kumar-dev", - "email": "akashkumar.dev00@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=akashkumar.is-a.dev,844132b059abdd5bd808" - } -} \ No newline at end of file + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=akashkumar.is-a.dev,844132b059abdd5bd808" + } +} diff --git a/domains/_vercel.akk1to.json b/domains/_vercel.akk1to.json index 910e17289..52ae857e8 100644 --- a/domains/_vercel.akk1to.json +++ b/domains/_vercel.akk1to.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=blogs.akk1to.is-a.dev,18b784bd5f6ecb5feeb8" - } + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=blogs.akk1to.is-a.dev,18b784bd5f6ecb5feeb8" + } } diff --git a/domains/_vercel.alrakib.json b/domains/_vercel.alrakib.json index 196d3233a..d764d097f 100644 --- a/domains/_vercel.alrakib.json +++ b/domains/_vercel.alrakib.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "alrakibthedev", - "email": "alrakibthedev@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=alrakib.is-a.dev,3a2663fe979960b1dad2" - } + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=alrakib.is-a.dev,3a2663fe979960b1dad2" + } } diff --git a/domains/_vercel.amanraj.json b/domains/_vercel.amanraj.json deleted file mode 100644 index 27511e0c9..000000000 --- a/domains/_vercel.amanraj.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "This website is my personal portfolio", - "repo": "https://github.com/huamanraj/Portfolio-v4", - "owner": { - "username": "huamanraj", - "email": "amanraj12.ar@gmail.com", - "discord": "amanraj" - }, - "record": { - "TXT": ["vc-domain-verify=amanraj.is-a.dev,25dd2c58bb98baf55cd4"] - } - } - \ No newline at end of file diff --git a/domains/_vercel.anand.json b/domains/_vercel.anand.json index 6b53bbfeb..01f2379f5 100644 --- a/domains/_vercel.anand.json +++ b/domains/_vercel.anand.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anandd17", - "email": "avdoddamani123@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=anand.is-a.dev,3a42c86f85216132b3ef" - } -} \ No newline at end of file + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=anand.is-a.dev,3a42c86f85216132b3ef" + } +} diff --git a/domains/_vercel.andresarr.json b/domains/_vercel.andresarr.json index e7f767efd..b95184791 100644 --- a/domains/_vercel.andresarr.json +++ b/domains/_vercel.andresarr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Anonymous1223334444", - "email": "replit005@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=andresarr.is-a.dev,c7c6b930211214eb12c5" - } - } + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=andresarr.is-a.dev,c7c6b930211214eb12c5" + } +} diff --git a/domains/_vercel.ansh.json b/domains/_vercel.ansh.json index 0cd79fabc..4d1b1a3f7 100644 --- a/domains/_vercel.ansh.json +++ b/domains/_vercel.ansh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anshaneja5", - "email": "anshanejaa@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=ansh.is-a.dev,074c2e585d197374e108" - } + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ansh.is-a.dev,074c2e585d197374e108" + } } diff --git a/domains/_vercel.arhanansari.json b/domains/_vercel.arhanansari.json index 3f13b6a53..47ca6fa78 100644 --- a/domains/_vercel.arhanansari.json +++ b/domains/_vercel.arhanansari.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArhanAnsari", - "email": "arhanansari2009@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=arhanansari.is-a.dev,73384f1ab64fc8f50509" - } + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=arhanansari.is-a.dev,73384f1ab64fc8f50509" + } } diff --git a/domains/_vercel.arkan.json b/domains/_vercel.arkan.json index e732c9e3b..5f5b0866f 100644 --- a/domains/_vercel.arkan.json +++ b/domains/_vercel.arkan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArizalArkan", - "email": "arizalarkan@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=arkan.is-a.dev,1950c16be793b47f3a76" - } + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=arkan.is-a.dev,1950c16be793b47f3a76" + } } diff --git a/domains/_vercel.arlan.json b/domains/_vercel.arlan.json index 9268ae87b..35c1f87c6 100644 --- a/domains/_vercel.arlan.json +++ b/domains/_vercel.arlan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "handikatriarlan", - "email": "handikaarlan@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=arlan.is-a.dev,0ab1dd26cecd05574326" - } + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=arlan.is-a.dev,0ab1dd26cecd05574326" + } } diff --git a/domains/_vercel.arvind.json b/domains/_vercel.arvind.json index dc0b83863..f429e44c3 100644 --- a/domains/_vercel.arvind.json +++ b/domains/_vercel.arvind.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "coderman400", - "email": "achurox1121@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=arvind.is-a.dev,6078db13fb7b19c2e83d" - } + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=arvind.is-a.dev,6078db13fb7b19c2e83d" + } } diff --git a/domains/_vercel.bumidenpasar.json b/domains/_vercel.bumidenpasar.json index b5d4b30f7..5495d630d 100644 --- a/domains/_vercel.bumidenpasar.json +++ b/domains/_vercel.bumidenpasar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "BumiDenpasar", - "instagram": "ibummmbumi" - }, - "record": { - "TXT": "vc-domain-verify=bumidenpasar.is-a.dev,2acace80e7ea336fd678" - } + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "record": { + "TXT": "vc-domain-verify=bumidenpasar.is-a.dev,2acace80e7ea336fd678" + } } diff --git a/domains/_vercel.codesoft.json b/domains/_vercel.codesoft.json index f4c5a04af..1e332b1c0 100644 --- a/domains/_vercel.codesoft.json +++ b/domains/_vercel.codesoft.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "CodeSoftGit", - "email": "codesft@proton.me" - }, - "record": { - "TXT": "vc-domain-verify=codesoft.is-a.dev,18c04513308f15b350a9" - } + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "record": { + "TXT": "vc-domain-verify=codesoft.is-a.dev,18c04513308f15b350a9" + } } diff --git a/domains/_vercel.codexkun.json b/domains/_vercel.codexkun.json index 11f528470..4b909ef1d 100644 --- a/domains/_vercel.codexkun.json +++ b/domains/_vercel.codexkun.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "KunalBishwal", - "email": "kunalbishwal2004@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=codexkun.is-a.dev,0c262cd5c5e3a73e7717" - } + "owner": { + "username": "KunalBishwal", + "email": "kunalbishwal2004@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=codexkun.is-a.dev,0c262cd5c5e3a73e7717" + } } diff --git a/domains/_vercel.crystal.json b/domains/_vercel.crystal.json index aa0de75d2..cd4c8821e 100644 --- a/domains/_vercel.crystal.json +++ b/domains/_vercel.crystal.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "crystalbajgai", - "email": "crystalbajgai@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=crystal.is-a.dev,ef573673a0e376748ea9" - } + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=crystal.is-a.dev,ef573673a0e376748ea9" + } } diff --git a/domains/_vercel.davr.json b/domains/_vercel.davr.json index 92f52839b..c40474376 100644 --- a/domains/_vercel.davr.json +++ b/domains/_vercel.davr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "cernoh", - "email": "davincey06@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=davr.is-a.dev,ac46906b38acef6b29bf" - } -} \ No newline at end of file + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=davr.is-a.dev,ac46906b38acef6b29bf" + } +} diff --git a/domains/_vercel.deeptanshu.json b/domains/_vercel.deeptanshu.json index 35310ba7c..d8567ddde 100644 --- a/domains/_vercel.deeptanshu.json +++ b/domains/_vercel.deeptanshu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Deeptanshuu", - "email": "laldeeptanshu96@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=deeptanshu.is-a.dev,28a4f0adf29f7fd2f9c3" - } + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=deeptanshu.is-a.dev,28a4f0adf29f7fd2f9c3" + } } diff --git a/domains/_vercel.dishant.json b/domains/_vercel.dishant.json index 8e1e08fd2..00eb62c4a 100644 --- a/domains/_vercel.dishant.json +++ b/domains/_vercel.dishant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Dishant402955", - "email": "dishantradadiya3036@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=dishant.is-a.dev,cfc2c6cd0ad49054757b" - } + "owner": { + "username": "Dishant402955", + "email": "dishantradadiya3036@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=dishant.is-a.dev,cfc2c6cd0ad49054757b" + } } diff --git a/domains/_vercel.divyanshudhruv.json b/domains/_vercel.divyanshudhruv.json index 93c67cd42..98afe396e 100644 --- a/domains/_vercel.divyanshudhruv.json +++ b/domains/_vercel.divyanshudhruv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "divyanshudhruv", - "email": "divyanshudhruv24@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=divyanshudhruv.is-a.dev,3736859f922a85d87e46"] - } + "owner": { + "username": "divyanshudhruv", + "email": "divyanshudhruv24@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=divyanshudhruv.is-a.dev,3736859f922a85d87e46"] + } } diff --git a/domains/_vercel.duypt14.json b/domains/_vercel.duypt14.json index a2e727dc8..f65d99352 100644 --- a/domains/_vercel.duypt14.json +++ b/domains/_vercel.duypt14.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ptduy14", - "email": "phantanduy14@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=duypt14.is-a.dev,14245b40810d20910d2a" - } + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=duypt14.is-a.dev,14245b40810d20910d2a" + } } diff --git a/domains/_vercel.emanuel-prado.json b/domains/_vercel.emanuel-prado.json index 918c4885f..535009f99 100644 --- a/domains/_vercel.emanuel-prado.json +++ b/domains/_vercel.emanuel-prado.json @@ -6,4 +6,4 @@ "record": { "TXT": "vc-domain-verify=emanuel-prado.is-a.dev,2852fb034d376417491f" } -} \ No newline at end of file +} diff --git a/domains/_vercel.farouk.json b/domains/_vercel.farouk.json index 341011e42..d5b387e8f 100644 --- a/domains/_vercel.farouk.json +++ b/domains/_vercel.farouk.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "faroukchebaiki", - "email": "farouk.chebaiki@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=farouk.is-a.dev,ec3de2841315d1108853" - } + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=farouk.is-a.dev,ec3de2841315d1108853" + } } diff --git a/domains/_vercel.fendimohamed.json b/domains/_vercel.fendimohamed.json index c98014cf0..529b41706 100644 --- a/domains/_vercel.fendimohamed.json +++ b/domains/_vercel.fendimohamed.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "FendiMohamed", - "email": "fendimohamed615@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=fendimohamed.is-a.dev,36783fd4f5b7c8306eb5" - } +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=fendimohamed.is-a.dev,36783fd4f5b7c8306eb5" + } } diff --git a/domains/_vercel.francoleon.json b/domains/_vercel.francoleon.json index d450bfd5b..da40de48d 100644 --- a/domains/_vercel.francoleon.json +++ b/domains/_vercel.francoleon.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "francoleon08", - "email": "francoleon284@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=francoleon.is-a.dev,ead369809cf9c9018296" - } -} \ No newline at end of file + "owner": { + "username": "francoleon08", + "email": "francoleon284@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=francoleon.is-a.dev,ead369809cf9c9018296" + } +} diff --git a/domains/_vercel.glitched-da-kitty-cat.json b/domains/_vercel.glitched-da-kitty-cat.json index 0ac16eaaa..075705d42 100644 --- a/domains/_vercel.glitched-da-kitty-cat.json +++ b/domains/_vercel.glitched-da-kitty-cat.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "GlitchedDaKittyCatSchoolaccount", - "email": "glitcheddacat@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=glitched-da-kitty-cat.is-a.dev,d3ead0cedf604d462fbb" - } + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=glitched-da-kitty-cat.is-a.dev,d3ead0cedf604d462fbb" + } } diff --git a/domains/_vercel.greeshma.json b/domains/_vercel.greeshma.json deleted file mode 100644 index 0d8d151ad..000000000 --- a/domains/_vercel.greeshma.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "greeshhma", - "email": "greeshma864@gmail.com", - "discord": "greeshhma" - }, - "record": { - "TXT": "vc-domain-verify=greeshma.is-a.dev,dcf8eae911029ace6427" - } -} diff --git a/domains/_vercel.hareesh.json b/domains/_vercel.hareesh.json index a2e8f060f..52ed4ba29 100644 --- a/domains/_vercel.hareesh.json +++ b/domains/_vercel.hareesh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Hareesh108", - "email": "hareeshbhittam@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=hareesh.is-a.dev,477c6844f0ac3a8191e6" - } -} \ No newline at end of file + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=hareesh.is-a.dev,477c6844f0ac3a8191e6" + } +} diff --git a/domains/_vercel.henderythmix.json b/domains/_vercel.henderythmix.json index 12397cb8c..018042d86 100644 --- a/domains/_vercel.henderythmix.json +++ b/domains/_vercel.henderythmix.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Henderythmix", - "email": "robertoselleswork@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=henderythmix.is-a.dev,daad531219c3ad9b7579" - } + "owner": { + "username": "Henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=henderythmix.is-a.dev,daad531219c3ad9b7579" + } } diff --git a/domains/_vercel.huuloc.json b/domains/_vercel.huuloc.json deleted file mode 100644 index 3c2811d75..000000000 --- a/domains/_vercel.huuloc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "huuloc", - "email": "huuloc2026@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=huuloc.is-a.dev,251080b2d18334a71c6e" - ] - } -} diff --git a/domains/_vercel.idriss.json b/domains/_vercel.idriss.json index 286c47ce7..613026e0b 100644 --- a/domains/_vercel.idriss.json +++ b/domains/_vercel.idriss.json @@ -2,7 +2,7 @@ "owner": { "username": "AstroDriss", "email": "drisspennywise@gmail.com" -}, + }, "record": { "TXT": "vc-domain-verify=idriss.is-a.dev,375d6639e027c0907afd" } diff --git a/domains/_vercel.inputly.json b/domains/_vercel.inputly.json index 37ca7e0ba..550811aa7 100644 --- a/domains/_vercel.inputly.json +++ b/domains/_vercel.inputly.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NateNear", - "email": "matternate21@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=inputly.is-a.dev,650df8c4415b2035e3e3" - } -} \ No newline at end of file + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=inputly.is-a.dev,650df8c4415b2035e3e3" + } +} diff --git a/domains/_vercel.isaacrobert33.json b/domains/_vercel.isaacrobert33.json index b4cd6007d..2c67403dc 100644 --- a/domains/_vercel.isaacrobert33.json +++ b/domains/_vercel.isaacrobert33.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "isaacrobert33", - "email": "isaacrobertoluwaseun@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=isaacrobert33.is-a.dev,1688a3dfda585e08298e" - } + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=isaacrobert33.is-a.dev,1688a3dfda585e08298e" + } } diff --git a/domains/_vercel.isaiadriel.json b/domains/_vercel.isaiadriel.json deleted file mode 100644 index 59e6f6108..000000000 --- a/domains/_vercel.isaiadriel.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "AdrielValecillo", - "email": "", - "discord": "386501216504512514" - }, - "record": { - "TXT": "vc-domain-verify=isaiadriel.is-a.dev,bbb52dc1293221795089" - } -} diff --git a/domains/_vercel.itsjhonalex.json b/domains/_vercel.itsjhonalex.json index 44b1b4050..a1541f08d 100644 --- a/domains/_vercel.itsjhonalex.json +++ b/domains/_vercel.itsjhonalex.json @@ -1,11 +1,11 @@ { - "description": "itsjhonalex.is-a.dev", - "repo": "github.com/ItsJhonAlex/PortfolioDev", - "owner": { - "username": "ItsJhonAlex", - "email": "itsjhonalex@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=itsjhonalex.is-a.dev,8c4f4f96f1fa142804c7" - } + "description": "itsjhonalex.is-a.dev", + "repo": "github.com/ItsJhonAlex/PortfolioDev", + "owner": { + "username": "ItsJhonAlex", + "email": "itsjhonalex@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=itsjhonalex.is-a.dev,8c4f4f96f1fa142804c7" + } } diff --git a/domains/_vercel.jar.json b/domains/_vercel.jar.json index d304b6d09..607c01ff0 100644 --- a/domains/_vercel.jar.json +++ b/domains/_vercel.jar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jartf", - "email": "hi@jar.tf" - }, - "record": { - "TXT": "vc-domain-verify=jar.is-a.dev,faf9fc9ca0c53d380bd7" - } + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "record": { + "TXT": "vc-domain-verify=jar.is-a.dev,faf9fc9ca0c53d380bd7" + } } diff --git a/domains/_vercel.jeanclaude.json b/domains/_vercel.jeanclaude.json index 75c0aa258..e99b7b66d 100644 --- a/domains/_vercel.jeanclaude.json +++ b/domains/_vercel.jeanclaude.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jeanclaudegeagea", - "email": "jeanclaude.geagea@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=jeanclaude.is-a.dev,76b49022de3c560947e8" - } + "owner": { + "username": "jeanclaudegeagea", + "email": "jeanclaude.geagea@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=jeanclaude.is-a.dev,76b49022de3c560947e8" + } } diff --git a/domains/_vercel.jmc.json b/domains/_vercel.jmc.json index ac1990440..f2903e319 100644 --- a/domains/_vercel.jmc.json +++ b/domains/_vercel.jmc.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "josem430", - "email": "jmc300499@gmail.com", - "discord": "josem430" - }, - "record": { - "TXT": "vc-domain-verify=jmc.is-a.dev,27b92885b5a4c6e96615" - } + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "record": { + "TXT": "vc-domain-verify=jmc.is-a.dev,27b92885b5a4c6e96615" + } } diff --git a/domains/_vercel.jonathan-russ.json b/domains/_vercel.jonathan-russ.json deleted file mode 100644 index dddf4eabc..000000000 --- a/domains/_vercel.jonathan-russ.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "JonathanXDR", - "email": "jonathan.russ@bluewin.ch", - "discord": "494042822320717827" - }, - "record": { - "TXT": "vc-domain-verify=jonathan-russ.is-a.dev,298a207b5f94dffde572" - } -} diff --git a/domains/_vercel.juanpabloleonmaya.json b/domains/_vercel.juanpabloleonmaya.json index 305e434d8..6ba26c133 100644 --- a/domains/_vercel.juanpabloleonmaya.json +++ b/domains/_vercel.juanpabloleonmaya.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "juanleon8581", - "email": "juanleon8581@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=juanpabloleonmaya.is-a.dev,60444b8f6c0ae7c91c12" - } -} \ No newline at end of file +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=juanpabloleonmaya.is-a.dev,60444b8f6c0ae7c91c12" + } +} diff --git a/domains/_vercel.kareem.json b/domains/_vercel.kareem.json index fa317c31e..0e9a9caa1 100644 --- a/domains/_vercel.kareem.json +++ b/domains/_vercel.kareem.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kareem-m", - "email": "kareemmoh1911@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=kareem.is-a.dev,227f1873f5be3f29395e" - } + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=kareem.is-a.dev,227f1873f5be3f29395e" + } } diff --git a/domains/_vercel.ken-kuro.json b/domains/_vercel.ken-kuro.json index bb082b97a..99439a77c 100644 --- a/domains/_vercel.ken-kuro.json +++ b/domains/_vercel.ken-kuro.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ken-kuro", - "linkedin": "hieuhm2610" - }, - "record": { - "TXT": "vc-domain-verify=ken-kuro.is-a.dev,f7190a78aaa06c66bd44" - } + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "record": { + "TXT": "vc-domain-verify=ken-kuro.is-a.dev,f7190a78aaa06c66bd44" + } } diff --git a/domains/_vercel.kevinmolina.json b/domains/_vercel.kevinmolina.json index c30ac1bf5..5a3ee6a88 100644 --- a/domains/_vercel.kevinmolina.json +++ b/domains/_vercel.kevinmolina.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kevinmolinadev", - "email": "kevinmolina.dev@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=kevinmolina.is-a.dev,514e23dcdfedeb5ae4c5" - } -} \ No newline at end of file + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=kevinmolina.is-a.dev,514e23dcdfedeb5ae4c5" + } +} diff --git a/domains/_vercel.kilamieaz.json b/domains/_vercel.kilamieaz.json index 814a409fd..914ecfc7a 100644 --- a/domains/_vercel.kilamieaz.json +++ b/domains/_vercel.kilamieaz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kilamieaz", - "email": "im.sultaan05@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=kilamieaz.is-a.dev,43bb0e712f64dcb9c8a5" - } + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=kilamieaz.is-a.dev,43bb0e712f64dcb9c8a5" + } } diff --git a/domains/_vercel.layhout.json b/domains/_vercel.layhout.json index e17243f9c..5b4e0205d 100644 --- a/domains/_vercel.layhout.json +++ b/domains/_vercel.layhout.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "layhout", - "email": "layhoutworkmail@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=layhout.is-a.dev,be218a450dbf76cb68f1"] - } + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=layhout.is-a.dev,be218a450dbf76cb68f1"] + } } diff --git a/domains/_vercel.luvtoxic.json b/domains/_vercel.luvtoxic.json index 396c99bad..18e948862 100644 --- a/domains/_vercel.luvtoxic.json +++ b/domains/_vercel.luvtoxic.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "luvtoxic", - "email": "ammarbags2023@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=luvtoxic.is-a.dev,fe679dc4161b66e8e00f" - } -} +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=luvtoxic.is-a.dev,fe679dc4161b66e8e00f" + } +} diff --git a/domains/_vercel.lycoris.json b/domains/_vercel.lycoris.json index 969f26a4b..37a225862 100644 --- a/domains/_vercel.lycoris.json +++ b/domains/_vercel.lycoris.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lycorissss", - "email": "beelzebub5758@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=lycoris.is-a.dev,c3b18b1afc1e66757025" - } + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=lycoris.is-a.dev,c3b18b1afc1e66757025" + } } diff --git a/domains/_vercel.manhnguyen18.json b/domains/_vercel.manhnguyen18.json new file mode 100644 index 000000000..3e5ce4d3d --- /dev/null +++ b/domains/_vercel.manhnguyen18.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyenmanh18", + "email": "nguyenmanh1891997@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=manhnguyen18.is-a.dev,32b5b9a6627ffaa77e66" + } +} diff --git a/domains/_vercel.manishgun.json b/domains/_vercel.manishgun.json deleted file mode 100644 index bf60d0cb8..000000000 --- a/domains/_vercel.manishgun.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "manishgun", - "email": "mail.cto.manish@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=manishgun.is-a.dev,f13d291aacd89c0da59c"] - } -} diff --git a/domains/_vercel.marlonbaatjes.json b/domains/_vercel.marlonbaatjes.json index 2a2a81189..bb1c76446 100644 --- a/domains/_vercel.marlonbaatjes.json +++ b/domains/_vercel.marlonbaatjes.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "mdesignscode", - "email": "marlonbaatjes62@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=marlonbaatjes.is-a.dev,e393641c1319b97e701e" - } + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=marlonbaatjes.is-a.dev,e393641c1319b97e701e" + } } - diff --git a/domains/_vercel.mateogariboglio.json b/domains/_vercel.mateogariboglio.json index fdfca6250..2e6217207 100644 --- a/domains/_vercel.mateogariboglio.json +++ b/domains/_vercel.mateogariboglio.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mateo-404", - "discord": "gary_______" - }, - "record": { - "TXT": "vc-domain-verify=mateogariboglio.is-a.dev,5241b76c19e0f7de2f4a" - } + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "record": { + "TXT": "vc-domain-verify=mateogariboglio.is-a.dev,5241b76c19e0f7de2f4a" + } } diff --git a/domains/_vercel.menn.json b/domains/_vercel.menn.json index 01cd25955..127af943f 100644 --- a/domains/_vercel.menn.json +++ b/domains/_vercel.menn.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "hedgehog-menn", - "email": "kp.thananchai@gmail.com", - "discord": "26623men" - }, - "record": { - "TXT": "vc-domain-verify=menn.is-a.dev,888e516936e6a1278bc0" - } + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "record": { + "TXT": "vc-domain-verify=menn.is-a.dev,888e516936e6a1278bc0" + } } diff --git a/domains/_vercel.minhtan.json b/domains/_vercel.minhtan.json index 60f5234bc..8ff25ab80 100644 --- a/domains/_vercel.minhtan.json +++ b/domains/_vercel.minhtan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tanbaycu", - "email": "tanbaycu@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=minhtan.is-a.dev,7be64448654af271a7c5" - } + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=minhtan.is-a.dev,7be64448654af271a7c5" + } } diff --git a/domains/_vercel.monosen.json b/domains/_vercel.monosen.json index d3fa8c851..90f07ae1b 100644 --- a/domains/_vercel.monosen.json +++ b/domains/_vercel.monosen.json @@ -7,4 +7,4 @@ "record": { "TXT": "vc-domain-verify=monosen.is-a.dev,a2fd2dc04b730870b37c" } -} \ No newline at end of file +} diff --git a/domains/_vercel.mr-julus.json b/domains/_vercel.mr-julus.json index a1333e074..bc35f9022 100644 --- a/domains/_vercel.mr-julus.json +++ b/domains/_vercel.mr-julus.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "BougSoon-Studio", - "email": "bougsoon.studio@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=mr-julus.is-a.dev,caaed911982c75cb0961" - } + "owner": { + "username": "BougSoon-Studio", + "email": "bougsoon.studio@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=mr-julus.is-a.dev,caaed911982c75cb0961" + } } diff --git a/domains/_vercel.mrtspeedy.json b/domains/_vercel.mrtspeedy.json index bb5aed1e9..cce036d23 100644 --- a/domains/_vercel.mrtspeedy.json +++ b/domains/_vercel.mrtspeedy.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "mrtspeedy", - "email": "toxicspeedytv@gmail.com", - "discord": "1095502790534627348" - }, - "record": { - "TXT": "vc-domain-verify=mrtspeedy.is-a.dev,c168ba7b9bdca5dd1be8" - } -} \ No newline at end of file + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "record": { + "TXT": "vc-domain-verify=mrtspeedy.is-a.dev,c168ba7b9bdca5dd1be8" + } +} diff --git a/domains/_vercel.mudasir.json b/domains/_vercel.mudasir.json index f6281db7a..14bc33e4f 100644 --- a/domains/_vercel.mudasir.json +++ b/domains/_vercel.mudasir.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mirzamudassir", - "discord": "0xmudassir" - }, - "record": { - "TXT": "vc-domain-verify=mudasir.is-a.dev,2d0551deb0d92e5838a7" - } + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "record": { + "TXT": "vc-domain-verify=mudasir.is-a.dev,2d0551deb0d92e5838a7" + } } diff --git a/domains/_vercel.muhammed.json b/domains/_vercel.muhammed.json index 3a8cd8152..b58578cb6 100644 --- a/domains/_vercel.muhammed.json +++ b/domains/_vercel.muhammed.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "MhmdFais", - "email": "mofam534@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=muhammed.is-a.dev,98134514b3a6d270df4b" - } + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=muhammed.is-a.dev,98134514b3a6d270df4b" + } } diff --git a/domains/_vercel.nabin.json b/domains/_vercel.nabin.json index 48c57c535..40f80cb54 100644 --- a/domains/_vercel.nabin.json +++ b/domains/_vercel.nabin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nabinkatwal7", - "email": "mediocampistaa@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=nabin.is-a.dev,bfd13935a3cb2aaea0e5" - } + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=nabin.is-a.dev,bfd13935a3cb2aaea0e5" + } } diff --git a/domains/_vercel.namansethi.json b/domains/_vercel.namansethi.json index fb48c2e36..11e5c7e15 100644 --- a/domains/_vercel.namansethi.json +++ b/domains/_vercel.namansethi.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "namansethi13", - "discord": "namansethi", - "email": "namansethi1328@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=namansethi.is-a.dev,e0b892773250b43800c9" - } + "owner": { + "username": "namansethi13", + "discord": "namansethi", + "email": "namansethi1328@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=namansethi.is-a.dev,e0b892773250b43800c9" } - \ No newline at end of file +} diff --git a/domains/_vercel.newtun-code-cheat-sheet.json b/domains/_vercel.newtun-code-cheat-sheet.json new file mode 100644 index 000000000..73b172f57 --- /dev/null +++ b/domains/_vercel.newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=newtun-code-cheat-sheet.is-a.dev,d8b78b5284419c18ec16" + } +} diff --git a/domains/_vercel.newtun.json b/domains/_vercel.newtun.json index 5393e7666..60530537c 100644 --- a/domains/_vercel.newtun.json +++ b/domains/_vercel.newtun.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "VinhTin-AQUA", - "email": "tinhovinh@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=newtun.is-a.dev,4bb1f2ec7e540d7f7a2b" - } -} \ No newline at end of file +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=newtun.is-a.dev,4bb1f2ec7e540d7f7a2b" + } +} diff --git a/domains/_vercel.ngoutam.json b/domains/_vercel.ngoutam.json new file mode 100644 index 000000000..93eec5434 --- /dev/null +++ b/domains/_vercel.ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=ngoutam.is-a.dev,9c110859b66d7ddcd7b5"] + } +} diff --git a/domains/_vercel.nicolas.json b/domains/_vercel.nicolas.json new file mode 100644 index 000000000..cfe5b995d --- /dev/null +++ b/domains/_vercel.nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "record": { + "TXT": "vc-domain-verify=nicolas.is-a.dev,1acb257fda76a2df31ce" + } +} diff --git a/domains/_vercel.notzer0two.json b/domains/_vercel.notzer0two.json index 263514b6b..5126eb959 100644 --- a/domains/_vercel.notzer0two.json +++ b/domains/_vercel.notzer0two.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NotZer0Two", - "email": "lyonfan2010@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=notzer0two.is-a.dev,38a2a717010666874386" - } + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=notzer0two.is-a.dev,38a2a717010666874386" + } } diff --git a/domains/_vercel.onerandom.json b/domains/_vercel.onerandom.json index 3d1c81d2e..88dd53e8f 100644 --- a/domains/_vercel.onerandom.json +++ b/domains/_vercel.onerandom.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "OneRandom1509", - "email": "anantukid@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=onerandom.is-a.dev,e18318031614810f658f" - } + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=onerandom.is-a.dev,e18318031614810f658f" + } } diff --git a/domains/_vercel.paul8liveira.json b/domains/_vercel.paul8liveira.json new file mode 100644 index 000000000..45372957f --- /dev/null +++ b/domains/_vercel.paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=paul8liveira.is-a.dev,86dcef96f01c5029a229" + } +} diff --git a/domains/_vercel.raafey.json b/domains/_vercel.raafey.json index 0e7768b13..be0119b9b 100644 --- a/domains/_vercel.raafey.json +++ b/domains/_vercel.raafey.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "RaafeyRaza", - "email": "raafeyraza1@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=raafey.is-a.dev,aa0e06a894333b259a4b" - } + "owner": { + "username": "RaafeyRaza", + "email": "raafeyraza1@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=raafey.is-a.dev,aa0e06a894333b259a4b" + } } diff --git a/domains/_vercel.rajeshkumar.json b/domains/_vercel.rajeshkumar.json index ea9f3d565..5a228e0f1 100644 --- a/domains/_vercel.rajeshkumar.json +++ b/domains/_vercel.rajeshkumar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Dev-Rajeshkumar", - "email": "rajesh8778354586@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=rajeshkumar.is-a.dev,52cd27c94b7115d293d5" - } + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=rajeshkumar.is-a.dev,52cd27c94b7115d293d5" + } } diff --git a/domains/_vercel.rajeshreddy.json b/domains/_vercel.rajeshreddy.json index f4bfd865c..d9e8499ea 100644 --- a/domains/_vercel.rajeshreddy.json +++ b/domains/_vercel.rajeshreddy.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "rajesh-reddy1", - "email": "mrrajeshreddy1@gmail.com", - "discord": "suuiii_1" - }, - "record": { - "TXT": "vc-domain-verify=rajeshreddy.is-a.dev,400e697edc993cbbeab7" - } + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com", + "discord": "suuiii_1" + }, + "record": { + "TXT": "vc-domain-verify=rajeshreddy.is-a.dev,400e697edc993cbbeab7" + } } diff --git a/domains/_vercel.rajputshashank.json b/domains/_vercel.rajputshashank.json index 038a29181..1a277e35c 100644 --- a/domains/_vercel.rajputshashank.json +++ b/domains/_vercel.rajputshashank.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "rajputshashank003", - "email" : "hariomshashank@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=rajputshashank.is-a.dev,b54453fc10c77cf72c1d"] - } + "owner": { + "username": "rajputshashank003", + "email": "hariomshashank@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=rajputshashank.is-a.dev,b54453fc10c77cf72c1d"] } - \ No newline at end of file +} diff --git a/domains/_vercel.raynaldescala.json b/domains/_vercel.raynaldescala.json index 843e11542..cb6d3b8e2 100644 --- a/domains/_vercel.raynaldescala.json +++ b/domains/_vercel.raynaldescala.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "raynaldescala", - "email": "raynaldescala01@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=raynaldescala.is-a.dev,7c5440b0cdb643d66472" - } + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=raynaldescala.is-a.dev,7c5440b0cdb643d66472" + } } diff --git a/domains/_vercel.renant.json b/domains/_vercel.renant.json index f1f52c9d5..45de79fb6 100644 --- a/domains/_vercel.renant.json +++ b/domains/_vercel.renant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "renant", - "email": "renan_replay@live.com" - }, - "record": { - "TXT": "vc-domain-verify=renant.is-a.dev,fe738eebddc5a20097e6" - } + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "record": { + "TXT": "vc-domain-verify=renant.is-a.dev,fe738eebddc5a20097e6" + } } diff --git a/domains/_vercel.riccardo126.json b/domains/_vercel.riccardo126.json index 9f98c2832..c486602f9 100644 --- a/domains/_vercel.riccardo126.json +++ b/domains/_vercel.riccardo126.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "riccardo126", - "email": "riccardopassacantando@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=riccardo126.is-a.dev,408e1d0b2f39a662b0ae" - } + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=riccardo126.is-a.dev,408e1d0b2f39a662b0ae" + } } diff --git a/domains/_vercel.ridwan.json b/domains/_vercel.ridwan.json new file mode 100644 index 000000000..36fdbfd66 --- /dev/null +++ b/domains/_vercel.ridwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ridwan.is-a.dev,225e2c74c9221022a84f" + } +} diff --git a/domains/_vercel.risqiahmad.json b/domains/_vercel.risqiahmad.json index d543a0d55..193bb9876 100644 --- a/domains/_vercel.risqiahmad.json +++ b/domains/_vercel.risqiahmad.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "risqi17", - "email": "ahmadreys@gmail.com", - "discord": "risqi_ahmad9230" - }, - "record": { - "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4" - } + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4" } - \ No newline at end of file +} diff --git a/domains/_vercel.s1dd.json b/domains/_vercel.s1dd.json index d330bb369..157262262 100644 --- a/domains/_vercel.s1dd.json +++ b/domains/_vercel.s1dd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nots1dd", - "email": "sid9.karanam@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=s1dd.is-a.dev,e08de74daf627d6e653d" - } + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=s1dd.is-a.dev,e08de74daf627d6e653d" + } } diff --git a/domains/_vercel.saif.json b/domains/_vercel.saif.json index 0207cec10..6e2518c73 100644 --- a/domains/_vercel.saif.json +++ b/domains/_vercel.saif.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Saifkhanz", - "email": "saif137.khan@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=saif.is-a.dev,8f2dcd17056c670b7276" - } -} \ No newline at end of file + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=saif.is-a.dev,8f2dcd17056c670b7276" + } +} diff --git a/domains/_vercel.shimizu.json b/domains/_vercel.shimizu.json index f69c8f0a8..4f16f5a8c 100644 --- a/domains/_vercel.shimizu.json +++ b/domains/_vercel.shimizu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mikofoxie", - "email": "shimizulazy@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=shimizu.is-a.dev,3356672e8054fe9b4d65" - } + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=shimizu.is-a.dev,3356672e8054fe9b4d65" + } } diff --git a/domains/_vercel.siya.json b/domains/_vercel.siya.json index 38ec823e9..053ee8548 100644 --- a/domains/_vercel.siya.json +++ b/domains/_vercel.siya.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "rajputsiya", - "email" : "siyarajput9258@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"] - } + "owner": { + "username": "rajputsiya", + "email": "siyarajput9258@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"] } - \ No newline at end of file +} diff --git a/domains/_vercel.skibidi.json b/domains/_vercel.skibidi.json index 3c3d88a30..71ed2cfcb 100644 --- a/domains/_vercel.skibidi.json +++ b/domains/_vercel.skibidi.json @@ -4,6 +4,10 @@ "discord": "skibidibagel" }, "record": { - "TXT": ["vc-domain-verify=skibidi.is-a.dev,b75173107a422d2f8244", "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d", "vc-domain-verify=projects.skibidi.is-a.dev,33f08aa6e287f18f368b"] + "TXT": [ + "vc-domain-verify=skibidi.is-a.dev,b75173107a422d2f8244", + "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d", + "vc-domain-verify=projects.skibidi.is-a.dev,33f08aa6e287f18f368b" + ] } } diff --git a/domains/_vercel.sohag.json b/domains/_vercel.sohag.json index f8bb6eec8..36dd7e789 100644 --- a/domains/_vercel.sohag.json +++ b/domains/_vercel.sohag.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "sohag02", - "discord": "sohagjabed" - }, - "record": { - "TXT": "vc-domain-verify=sohag.is-a.dev,905a0fff3e8fdda0052e" - } -} \ No newline at end of file +{ + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "record": { + "TXT": "vc-domain-verify=sohag.is-a.dev,905a0fff3e8fdda0052e" + } +} diff --git a/domains/_vercel.sombochea.json b/domains/_vercel.sombochea.json index ee967eece..d5f0ee241 100644 --- a/domains/_vercel.sombochea.json +++ b/domains/_vercel.sombochea.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sombochea", - "email": "sombochea100@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=sombochea.is-a.dev,2cdc71284d8d8193f021" - } -} \ No newline at end of file + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=sombochea.is-a.dev,2cdc71284d8d8193f021" + } +} diff --git a/domains/_vercel.soul.json b/domains/_vercel.soul.json index c9f35bd01..f1616f878 100644 --- a/domains/_vercel.soul.json +++ b/domains/_vercel.soul.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "SoulDevs", - "email": "soulcosmic1406@proton.me", - "discord": "soulcosmic1406_" - }, - "record": { - "TXT": "vc-domain-verify=soul.is-a.dev,6f957e2edcd5bb791896" - } + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me", + "discord": "soulcosmic1406_" + }, + "record": { + "TXT": "vc-domain-verify=soul.is-a.dev,6f957e2edcd5bb791896" + } } diff --git a/domains/_vercel.supperfreddo.json b/domains/_vercel.supperfreddo.json index 66480369b..1ca14d6cc 100644 --- a/domains/_vercel.supperfreddo.json +++ b/domains/_vercel.supperfreddo.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "supperfreddo", - "email": "supperfreddoio@gmail.com", - "discord": "supperfreddo" - }, - "record": { - "TXT": "vc-domain-verify=supperfreddo.is-a.dev,68c20273ddb3ea11e1d6" - } -} \ No newline at end of file + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "record": { + "TXT": "vc-domain-verify=supperfreddo.is-a.dev,68c20273ddb3ea11e1d6" + } +} diff --git a/domains/_vercel.synthara.json b/domains/_vercel.synthara.json index 1c48f3e66..7dc7bfd57 100644 --- a/domains/_vercel.synthara.json +++ b/domains/_vercel.synthara.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArhanAnsari", - "email": "arhanansari2009@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=synthara.is-a.dev,5cfe1b6f6a8530d47a55" - } + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=synthara.is-a.dev,5cfe1b6f6a8530d47a55" + } } diff --git a/domains/_vercel.tanbaycu.json b/domains/_vercel.tanbaycu.json index 00e1f3e11..443f46f7a 100644 --- a/domains/_vercel.tanbaycu.json +++ b/domains/_vercel.tanbaycu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tanbaycu", - "email": "tanbaycu@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=tanbaycu.is-a.dev,39c822aec04365116c16" - } + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=tanbaycu.is-a.dev,39c822aec04365116c16" + } } diff --git a/domains/_vercel.terry.json b/domains/_vercel.terry.json index 19e0e060f..9fc9c6b92 100644 --- a/domains/_vercel.terry.json +++ b/domains/_vercel.terry.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "realyoterry", - "email": "theterrykim@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=terry.is-a.dev,77663b6ef45302529609" - } + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=terry.is-a.dev,77663b6ef45302529609" + } } diff --git a/domains/_vercel.thavirak.json b/domains/_vercel.thavirak.json index a9d574af4..1e65365c2 100644 --- a/domains/_vercel.thavirak.json +++ b/domains/_vercel.thavirak.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "thavirak", - "email": "thavirak@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=thavirak.is-a.dev,7a6a4ebd89476f7b339a"] - } + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=thavirak.is-a.dev,7a6a4ebd89476f7b339a"] + } } diff --git a/domains/_vercel.tobias.json b/domains/_vercel.tobias.json index 9910e6185..487856ea0 100644 --- a/domains/_vercel.tobias.json +++ b/domains/_vercel.tobias.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "smarterToby", - "discord": "724712767080235049" - }, - "record": { - "TXT": "vc-domain-verify=tobias.is-a.dev,21171b13f4596f6ef9ee" - } -} \ No newline at end of file + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "record": { + "TXT": "vc-domain-verify=tobias.is-a.dev,21171b13f4596f6ef9ee" + } +} diff --git a/domains/_vercel.tsania.json b/domains/_vercel.tsania.json index fff4ac588..4db7f51e2 100644 --- a/domains/_vercel.tsania.json +++ b/domains/_vercel.tsania.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tsnzzhr", - "email": "tsnzzhr102@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=tsania-az.is-a.dev,3cf74b208f3938a96f7b" - } + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=tsania-az.is-a.dev,3cf74b208f3938a96f7b" + } } diff --git a/domains/_vercel.udit.json b/domains/_vercel.udit.json index 5877b6aed..96f2e3ead 100644 --- a/domains/_vercel.udit.json +++ b/domains/_vercel.udit.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "uditdev", - "email" : "uditdev0008@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=udit.is-a.dev,8718c1c2a08417265d7e"] - } + "owner": { + "username": "uditdev", + "email": "uditdev0008@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=udit.is-a.dev,8718c1c2a08417265d7e"] } - \ No newline at end of file +} diff --git a/domains/_vercel.ujjvaljoshi.json b/domains/_vercel.ujjvaljoshi.json index f19d60b0c..09252807b 100644 --- a/domains/_vercel.ujjvaljoshi.json +++ b/domains/_vercel.ujjvaljoshi.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Website", - "repo": "https://github.com/ujjvaljoshi45/ujjvaljoshi45", - "owner": { - "username": "ujjvaljoshi45", - "email": "ujjvaljoshi45@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=ujjvaljoshi.is-a.dev,f7ed737aeb48311d634c" - } + "description": "Portfolio Website", + "repo": "https://github.com/ujjvaljoshi45/ujjvaljoshi45", + "owner": { + "username": "ujjvaljoshi45", + "email": "ujjvaljoshi45@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ujjvaljoshi.is-a.dev,f7ed737aeb48311d634c" + } } diff --git a/domains/_vercel.vdevanarayan.json b/domains/_vercel.vdevanarayan.json index 7310781ca..1f8b49254 100644 --- a/domains/_vercel.vdevanarayan.json +++ b/domains/_vercel.vdevanarayan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "CodeTitan7", - "email": "octavius1983bc@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=vdevanarayan.is-a.dev,0c0c081b89b565d7ece1" - } + "owner": { + "username": "CodeTitan7", + "email": "octavius1983bc@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=vdevanarayan.is-a.dev,0c0c081b89b565d7ece1" + } } diff --git a/domains/_vercel.voidvault.json b/domains/_vercel.voidvault.json index 9d09ef071..fd5702d80 100644 --- a/domains/_vercel.voidvault.json +++ b/domains/_vercel.voidvault.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Dev-Rajeshkumar", - "email": "rajesh8778354686@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=voidvault.is-a.dev,fdc2aadb068bd286d372"] - } + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354686@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=voidvault.is-a.dev,fdc2aadb068bd286d372"] + } } diff --git a/domains/_vercel.w3teal.json b/domains/_vercel.w3teal.json index 80199abbc..06e381c67 100644 --- a/domains/_vercel.w3teal.json +++ b/domains/_vercel.w3teal.json @@ -1,11 +1,11 @@ { - "description": "Used for my W3Teal's blog website.", - "repo": "https://github.com/w3teal/w3teal.github.io", - "owner": { - "username": "w3teal", - "email": "w3teal@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=w3teal.is-a.dev,d0cb532c15b16a993c2a" - } + "description": "Used for my W3Teal's blog website.", + "repo": "https://github.com/w3teal/w3teal.github.io", + "owner": { + "username": "w3teal", + "email": "w3teal@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=w3teal.is-a.dev,d0cb532c15b16a993c2a" + } } diff --git a/domains/_vercel.wasim.json b/domains/_vercel.wasim.json index 82edb123b..a5ce07365 100644 --- a/domains/_vercel.wasim.json +++ b/domains/_vercel.wasim.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "simbaig", - "email": "wasimbaig000@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=wasim.is-a.dev,6b4abdaf07b7f6517075" - } + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=wasim.is-a.dev,6b4abdaf07b7f6517075" + } } diff --git a/domains/_vercel.xenonrexo.json b/domains/_vercel.xenonrexo.json index 2a6c78644..b654d4a5b 100644 --- a/domains/_vercel.xenonrexo.json +++ b/domains/_vercel.xenonrexo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "shshahms", - "email": "shahadathossenshams@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=xenonrexo.is-a.dev,8fbb85bd77adeb090add" - } + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=xenonrexo.is-a.dev,8fbb85bd77adeb090add" + } } diff --git a/domains/_vercel.yohanesrioirsan.json b/domains/_vercel.yohanesrioirsan.json index 0edf88def..2f46c5930 100644 --- a/domains/_vercel.yohanesrioirsan.json +++ b/domains/_vercel.yohanesrioirsan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yohanesrioirsan", - "email": "rioirsan8@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=yohanesrioirsan.is-a.dev,2c8b157439c95db80770" - } + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=yohanesrioirsan.is-a.dev,2c8b157439c95db80770" + } } diff --git a/domains/_vercel.zara.json b/domains/_vercel.zara.json index e5e0538b0..e9024b750 100644 --- a/domains/_vercel.zara.json +++ b/domains/_vercel.zara.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tutupharirabu", - "email": "code.zharaurien@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=zara.is-a.dev,54fd6194f447f7c5295b" - } -} \ No newline at end of file + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=zara.is-a.dev,54fd6194f447f7c5295b" + } +} diff --git a/domains/aadityaa.json b/domains/aadityaa.json index 0609b2d10..c6f26b17c 100644 --- a/domains/aadityaa.json +++ b/domains/aadityaa.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Aadityaa2606", - "email": "aadityaa2606@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/aakashrawat.json b/domains/aakashrawat.json index 24c81cf1a..0f0a3ccfa 100644 --- a/domains/aakashrawat.json +++ b/domains/aakashrawat.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "aakashrawat04", - "email": "2004rawataakash@gmail.com", - "discord": "759817307957493800" - }, - "record": { - "CNAME": "aakashrawat.vercel.app" - } + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "record": { + "CNAME": "aakashrawat.vercel.app" + } } diff --git a/domains/aankit.json b/domains/aankit.json index 6f23070b9..76e46b9ae 100644 --- a/domains/aankit.json +++ b/domains/aankit.json @@ -1,4 +1,3 @@ - { "description": "Ankit's GitHub page", "repo": "https://github.com/Ankit-0310", diff --git a/domains/abdullah-al-mridul.json b/domains/abdullah-al-mridul.json index eecee44a1..2fcb83694 100644 --- a/domains/abdullah-al-mridul.json +++ b/domains/abdullah-al-mridul.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "abdullah-al-mridul", - "email": "rim89987@gmail.com" - }, - "record": { - "CNAME": "abdullah-al-mridul-dev.vercel.app" - } + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "record": { + "CNAME": "abdullah-al-mridul-dev.vercel.app" + } } diff --git a/domains/abdulquddus.json b/domains/abdulquddus.json index 84b383608..11a3677f4 100644 --- a/domains/abdulquddus.json +++ b/domains/abdulquddus.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "aqdev-tech", - "email": "abdulquddusinda@gmail.com" - }, - "record": { - "CNAME": "abdulquddus.onrender.com" - } + "owner": { + "username": "aqdev-tech", + "email": "abdulquddusinda@gmail.com" + }, + "record": { + "CNAME": "abdulquddus.onrender.com" } - +} diff --git a/domains/abeer.json b/domains/abeer.json index c78b73e57..aa0f9620c 100644 --- a/domains/abeer.json +++ b/domains/abeer.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "abeer555", - "email": "abeergupta555@gmail.com" - }, - "record": { - "CNAME": "abeer555.github.io" - } + "owner": { + "username": "abeer555", + "email": "abeergupta555@gmail.com" + }, + "record": { + "CNAME": "abeer555.github.io" + } } diff --git a/domains/abhinav-shyju.json b/domains/abhinav-shyju.json index 24d2c8bbe..62b8b15b9 100644 --- a/domains/abhinav-shyju.json +++ b/domains/abhinav-shyju.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "abhinavshyju", - "email":"abhinavshyjupc@gmail.com" - }, - "record": { - "CNAME": "portfolio-6ns.pages.dev" - } + "owner": { + "username": "abhinavshyju", + "email": "abhinavshyjupc@gmail.com" + }, + "record": { + "CNAME": "portfolio-6ns.pages.dev" + } } diff --git a/domains/abidraza.json b/domains/abidraza.json index 7be5b4881..ee456e6dd 100644 --- a/domains/abidraza.json +++ b/domains/abidraza.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ariabid", - "email": "ari.abid@gmail.com" - }, - "record": { - "URL": "https://abidraza.com" - } + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "record": { + "URL": "https://abidraza.com" + } } diff --git a/domains/about.harshshah.json b/domains/about.harshshah.json deleted file mode 100644 index 4adaaf31d..000000000 --- a/domains/about.harshshah.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Harsh-0986", - "email": "harsh2102.dev@gmail.com", - "discord": "889700837520199761" - }, - "record": { - "A": ["76.76.21.21"] - } -} diff --git a/domains/abu.json b/domains/abu.json index 62c3163d8..7fae28ec1 100644 --- a/domains/abu.json +++ b/domains/abu.json @@ -1,10 +1,9 @@ -{ - "owner": { - "username": "Mohamed-faaris", - "email": "mohammedfaaris2005@gmail.com" - }, - "record": { - "URL": "https://github.com/Mohamed-Abu-Bakkar" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "record": { + "URL": "https://github.com/Mohamed-Abu-Bakkar" + } +} diff --git a/domains/ad.lver.json b/domains/ad.lver.json index 2ae1da6dc..93c4db3e7 100644 --- a/domains/ad.lver.json +++ b/domains/ad.lver.json @@ -1,11 +1,11 @@ -{ - "github": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, - "record": { + }, + "record": { "A": ["52.72.49.79"] - }, - "proxied": true -} + }, + "proxied": true +} diff --git a/domains/affan.json b/domains/affan.json index 9930f2698..c24952ed8 100644 --- a/domains/affan.json +++ b/domains/affan.json @@ -5,10 +5,7 @@ }, "record": { "A": ["75.2.60.5"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": [ "v=spf1 include:_spf.mx.cloudflare.net include:spf.improvmx.com ~all", "dh=92c9945830f32cb180df547af9f491ff1a4c75a9", diff --git a/domains/afnan.json b/domains/afnan.json index 3974d2c22..fc62c307c 100644 --- a/domains/afnan.json +++ b/domains/afnan.json @@ -1,11 +1,11 @@ { - "description": "My portfolio website", - "repo": "https://github.com/Sayed-Afnan-Khazi/sayed-afnan-khazi.github.io", - "owner": { - "username": "Sayed-Afnan-Khazi", - "email": "oofnanfake1@gmail.com" - }, - "record": { - "CNAME": "sayed-afnan-khazi.github.io" - } + "description": "My portfolio website", + "repo": "https://github.com/Sayed-Afnan-Khazi/sayed-afnan-khazi.github.io", + "owner": { + "username": "Sayed-Afnan-Khazi", + "email": "oofnanfake1@gmail.com" + }, + "record": { + "CNAME": "sayed-afnan-khazi.github.io" + } } diff --git a/domains/ahios.json b/domains/ahios.json new file mode 100644 index 000000000..534cf419b --- /dev/null +++ b/domains/ahios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ai.devmatei.json b/domains/ai.devmatei.json index e7aef920e..4b150d5ab 100644 --- a/domains/ai.devmatei.json +++ b/domains/ai.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/aishik999.json b/domains/aishik999.json index 2e09e3b16..175c6af92 100644 --- a/domains/aishik999.json +++ b/domains/aishik999.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aishik999", - "email": "aishikm2002@gmail.com" - }, - "record": { - "CNAME": "aishik999.vercel.app" - } + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "record": { + "CNAME": "aishik999.vercel.app" + } } diff --git a/domains/aitji.json b/domains/aitji.json index a7c793f2f..7d7b38413 100644 --- a/domains/aitji.json +++ b/domains/aitji.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aitji", - "email": "ait.suriya@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/ak-profile.json b/domains/ak-profile.json index cf97a0f79..3734127ed 100644 --- a/domains/ak-profile.json +++ b/domains/ak-profile.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Akash0816", - "email": "akashoffical321@gmail.com" - }, - "record": { - "CNAME": "akash0816.github.io" - } + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "record": { + "CNAME": "akash0816.github.io" + } } diff --git a/domains/akashj.json b/domains/akashj.json index 5e52375e9..1153fa421 100644 --- a/domains/akashj.json +++ b/domains/akashj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akash-janapati", - "email": "akash2009janapati@gmail.com" - }, - "record": { - "CNAME": "akash-janapati.github.io" - } + "owner": { + "username": "akash-janapati", + "email": "akash2009janapati@gmail.com" + }, + "record": { + "CNAME": "akash-janapati.github.io" + } } diff --git a/domains/akashkumar.json b/domains/akashkumar.json index 4d28c8345..f5ce94745 100644 --- a/domains/akashkumar.json +++ b/domains/akashkumar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akash-kumar-dev", - "email": "akashkumar.dev00@gmail.com" - }, - "record": { - "CNAME": "akashkumar-dev.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "record": { + "CNAME": "akashkumar-dev.vercel.app" + } +} diff --git a/domains/akk1to.json b/domains/akk1to.json index 5f3997d5b..a2a8e777b 100644 --- a/domains/akk1to.json +++ b/domains/akk1to.json @@ -7,7 +7,12 @@ "discord": "727497287777124414" }, "record": { - "A": ["185.199.108.153", "185.199.111.153", "185.199.110.153"], + "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/akprofile.json b/domains/akprofile.json index 6beabd313..04b0255a3 100644 --- a/domains/akprofile.json +++ b/domains/akprofile.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Akash0816", - "email": "akashoffical321@gmail.com" - }, - "record": { - "CNAME": "Akash0816.github.io" - } + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "record": { + "CNAME": "Akash0816.github.io" + } } diff --git a/domains/albertodm.json b/domains/albertodm.json index 868ccddca..af96c304c 100644 --- a/domains/albertodm.json +++ b/domains/albertodm.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/MonforteGG/portfolio", - "owner": { - "username": "MonforteGG", - "email": "albdiamun@gmail.com" - }, - "description": "portfolio website", - "record": { - "CNAME": "albertodm.netlify.app" - } + "repo": "https://github.com/MonforteGG/portfolio", + "owner": { + "username": "MonforteGG", + "email": "albdiamun@gmail.com" + }, + "description": "portfolio website", + "record": { + "CNAME": "albertodm.netlify.app" + } } diff --git a/domains/alec.json b/domains/alec.json index 8bd61cf74..5a5839ade 100644 --- a/domains/alec.json +++ b/domains/alec.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "asidsdamad1" - }, - "record": { - "CNAME": "asidsdamad1.github.io" - } + "owner": { + "username": "asidsdamad1" + }, + "record": { + "CNAME": "asidsdamad1.github.io" + } } diff --git a/domains/alen.json b/domains/alen.json index 4fe388df4..6c4930fb5 100644 --- a/domains/alen.json +++ b/domains/alen.json @@ -1,11 +1,11 @@ { - "description": "Alen's page", - "repo": "https://github.com/alenseeman/dev.github.io", - "owner": { - "username": "alenseeman", - "email": "alenseeman@hotmail.com" - }, - "record": { - "CNAME": "alenseeman.github.io" - } + "description": "Alen's page", + "repo": "https://github.com/alenseeman/alenseeman.github.io", + "owner": { + "username": "alenseeman", + "email": "alenseeman@hotmail.com" + }, + "record": { + "CNAME": "alenseeman.github.io" + } } diff --git a/domains/alfredjophy.json b/domains/alfredjophy.json new file mode 100644 index 000000000..f852093a0 --- /dev/null +++ b/domains/alfredjophy.json @@ -0,0 +1,10 @@ +{ + "description": "Redirect for my personal website.", + "owner": { + "username": "alfredjophy", + "email": "mail@alfredjophy.com" + }, + "record": { + "CNAME": "alfredjophy.com" + } +} diff --git a/domains/allen-xavier.json b/domains/allen-xavier.json index 9498d4c59..2c8121245 100644 --- a/domains/allen-xavier.json +++ b/domains/allen-xavier.json @@ -1,11 +1,11 @@ { - "description": "For Portfolio Website", - "repo": "https://github.com/xavierallem/AllenXavier", - "owner": { - "username": "xavierallem", - "email": "xavierallem1999@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "For Portfolio Website", + "repo": "https://github.com/xavierallem/AllenXavier", + "owner": { + "username": "xavierallem", + "email": "xavierallem1999@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/alrakib.json b/domains/alrakib.json index 75d580d88..3ee2d4b4a 100644 --- a/domains/alrakib.json +++ b/domains/alrakib.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "alrakibthedev", - "email": "alrakibthedev@gmail.com" - }, - "record": { - "CNAME": "alrakibthedev.vercel.app" - } + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "record": { + "CNAME": "alrakibthedev.vercel.app" + } } diff --git a/domains/alvaro14.json b/domains/alvaro14.json index cdc63ec9d..d11b61a8f 100644 --- a/domains/alvaro14.json +++ b/domains/alvaro14.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lovian", - "email": "stikamera26@gmail.com" - }, - "record": { - "CNAME": "cfpages-4pw.pages.dev" - } + "owner": { + "username": "lovian", + "email": "stikamera26@gmail.com" + }, + "record": { + "CNAME": "cfpages-4pw.pages.dev" + } } diff --git a/domains/anand.json b/domains/anand.json index 9eeb9637a..5a627fafc 100644 --- a/domains/anand.json +++ b/domains/anand.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anandd17", - "email": "avdoddamani123@gmail.com" - }, - "record": { - "CNAME": "anandd17.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "record": { + "CNAME": "anandd17.vercel.app" + } +} diff --git a/domains/andresarr.json b/domains/andresarr.json index 278122706..31c5e2b16 100644 --- a/domains/andresarr.json +++ b/domains/andresarr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Anonymous1223334444", - "email": "replit005@gmail.com" - }, - "record": { - "CNAME": "portofoliowebdev.vercel.app" - } - } + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "record": { + "CNAME": "portofoliowebdev.vercel.app" + } +} diff --git a/domains/andriampeno.json b/domains/andriampeno.json index e613e77d6..18e54c391 100644 --- a/domains/andriampeno.json +++ b/domains/andriampeno.json @@ -1,12 +1,11 @@ { - "description": "Domain for my personal portfolio", - "repo": "https://github.com/odie100/odie100.github.io", - "owner": { - "username": "odie100", - "email": "andriampeno.odilon@gmail.com" - }, - "record": { - "CNAME": "odie100.github.io" - } + "description": "Domain for my personal portfolio", + "repo": "https://github.com/odie100/odie100.github.io", + "owner": { + "username": "odie100", + "email": "andriampeno.odilon@gmail.com" + }, + "record": { + "CNAME": "odie100.github.io" } - \ No newline at end of file +} diff --git a/domains/angganix.json b/domains/angganix.json index 36563d7e5..9c87dedd8 100644 --- a/domains/angganix.json +++ b/domains/angganix.json @@ -1,13 +1,13 @@ { - "description": "For personal site, blogging, and displayed portofolio", - "repo": "https://github.com/angganix/angganix.github.io", - "owner": { - "username": "angganix", - "email": "angganix@gmail.com" - }, - "record": { - "CNAME": "angganix.github.io", - "TXT": "google-site-verification=q5JulUF0tB8rSEi7z2cnvV6IgMZr5En3l_O_uq70ijI" - }, - "proxied": true + "description": "For personal site, blogging, and displayed portofolio", + "repo": "https://github.com/angganix/angganix.github.io", + "owner": { + "username": "angganix", + "email": "angganix@gmail.com" + }, + "record": { + "CNAME": "angganix.github.io", + "TXT": "google-site-verification=q5JulUF0tB8rSEi7z2cnvV6IgMZr5En3l_O_uq70ijI" + }, + "proxied": true } diff --git a/domains/anhvt.json b/domains/anhvt.json index 3200b804f..0fe602a8c 100644 --- a/domains/anhvt.json +++ b/domains/anhvt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anhvt3010", - "email": "anh.vt.3010@gmail.com" - }, - "record": { - "CNAME": "build-cv.vercel.app" - } + "owner": { + "username": "anhvt3010", + "email": "anh.vt.3010@gmail.com" + }, + "record": { + "CNAME": "build-cv.vercel.app" + } } diff --git a/domains/anime.girl.json b/domains/anime.girl.json new file mode 100644 index 000000000..00ab0224a --- /dev/null +++ b/domains/anime.girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/ankit-kelkar.json b/domains/ankit-kelkar.json new file mode 100644 index 000000000..1f43baee6 --- /dev/null +++ b/domains/ankit-kelkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akelkar3", + "email": "ankit.kelkar@gmail.com" + }, + "record": { + "CNAME": "akelkar3.github.io" + } +} diff --git a/domains/anony.json b/domains/anony.json new file mode 100644 index 000000000..e47ce1d74 --- /dev/null +++ b/domains/anony.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "celestix", + "email": "i@anodite.me" + }, + "record": { + "URL": "https://anodite.me/" + } +} diff --git a/domains/ansh.json b/domains/ansh.json index f883bd6d9..7a29bba12 100644 --- a/domains/ansh.json +++ b/domains/ansh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anshaneja5", - "email": "anshanejaa@gmail.com" - }, - "record": { - "CNAME": "portfolio-xi-liard-96.vercel.app" - } + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "record": { + "CNAME": "portfolio-xi-liard-96.vercel.app" + } } diff --git a/domains/anveshraman.json b/domains/anveshraman.json index 89f6b3639..6034749a5 100644 --- a/domains/anveshraman.json +++ b/domains/anveshraman.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SA-Army", - "email": "anveshraman.ae@gmail.com" - }, - "record": { - "CNAME": "sa-army.github.io" - } + "owner": { + "username": "SA-Army", + "email": "anveshraman.ae@gmail.com" + }, + "record": { + "CNAME": "developeranveshraman.github.io" + } } diff --git a/domains/anw.json b/domains/anw.json new file mode 100644 index 000000000..aa02d7f37 --- /dev/null +++ b/domains/anw.json @@ -0,0 +1,11 @@ +{ + "description": "ANW's (Subhrajit Sain) Personal Site", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "record": { + "URL": "https://subhrajitsain.pythonanywhere.com" + }, + "proxied": false +} diff --git a/domains/api.devmatei.json b/domains/api.devmatei.json index ce8b67096..e84cdfd7f 100644 --- a/domains/api.devmatei.json +++ b/domains/api.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://docs.devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://docs.devmatei.is-a.dev/" + } +} diff --git a/domains/arca.json b/domains/arca.json index 43fe7a2d5..9cdd568b0 100644 --- a/domains/arca.json +++ b/domains/arca.json @@ -1,11 +1,10 @@ { - "repo": "https://github.com/anibalCApaza/anibalcapaza.github.io", - "owner": { - "username": "anibalCApaza", - "email": "arcacorini@gmail.com" - }, - "record": { - "CNAME": "anibalcapaza.github.io" - } + "repo": "https://github.com/anibalCApaza/anibalcapaza.github.io", + "owner": { + "username": "anibalCApaza", + "email": "arcacorini@gmail.com" + }, + "record": { + "CNAME": "anibalcapaza.github.io" } - +} diff --git a/domains/arhanansari.json b/domains/arhanansari.json index fb16e46e7..39c01c9a0 100644 --- a/domains/arhanansari.json +++ b/domains/arhanansari.json @@ -1,13 +1,13 @@ { - "description": "A sleek and 3D portfolio website for Arhan Ansari.", - "repo": "https://github.com/ArhanAnsari/Arhans-Portfolio", - "owner": { - "username": "ArhanAnsari", - "email": "arhanansari2009@gmail.com", - "x": "https://x.com/codewitharhan", - "discord": "@codewitharhan" - }, - "record": { - "CNAME": "arhanansari.vercel.app" - } + "description": "A sleek and 3D portfolio website for Arhan Ansari.", + "repo": "https://github.com/ArhanAnsari/Arhans-Portfolio", + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com", + "x": "https://x.com/codewitharhan", + "discord": "@codewitharhan" + }, + "record": { + "CNAME": "arhanansari.vercel.app" + } } diff --git a/domains/ariabid.json b/domains/ariabid.json index 300f6555d..5d0b9f54c 100644 --- a/domains/ariabid.json +++ b/domains/ariabid.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ariabid", - "email": "ari.abid@gmail.com" - }, - "record": { - "URL": "https://ariabid.github.io" - } + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "record": { + "URL": "https://ariabid.github.io" + } } diff --git a/domains/arkan.json b/domains/arkan.json index f75aa7d8f..e79671df3 100644 --- a/domains/arkan.json +++ b/domains/arkan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArizalArkan", - "email": "arizalarkan@gmail.com" - }, - "record": { - "CNAME": "arkan-potofolio.vercel.app" - } + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "record": { + "CNAME": "arkan-potofolio.vercel.app" + } } diff --git a/domains/arlan.json b/domains/arlan.json index ba3c9bb28..82484a9f5 100644 --- a/domains/arlan.json +++ b/domains/arlan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "handikatriarlan", - "email": "handikaarlan@gmail.com" - }, - "record": { - "CNAME": "handikatriarlan.vercel.app" - } + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "CNAME": "handikatriarlan.vercel.app" + } } diff --git a/domains/armaan44.json b/domains/armaan44.json index 9d9c048e8..bf2d5a192 100644 --- a/domains/armaan44.json +++ b/domains/armaan44.json @@ -1,11 +1,11 @@ { - "description": "Portfolio-Website", - "repo": "https://github.com/Armaan4477/Portfolio", - "owner": { - "username": "Armaan4477", - "email": "nakhudaarmaan66@gmail.com" - }, - "record": { - "CNAME": "armaan4477.github.io" - } - } + "description": "Portfolio-Website", + "repo": "https://github.com/Armaan4477/Portfolio", + "owner": { + "username": "Armaan4477", + "email": "nakhudaarmaan66@gmail.com" + }, + "record": { + "CNAME": "armaan4477.github.io" + } +} diff --git a/domains/armandosalcedo.json b/domains/armandosalcedo.json index baae0c54d..93d1f4777 100644 --- a/domains/armandosalcedo.json +++ b/domains/armandosalcedo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "asd1495", - "email": "armando.salcedo95@gmail.com" - }, - "record": { - "CNAME": "asd1495.github.io" - } + "owner": { + "username": "asd1495", + "email": "armando.salcedo95@gmail.com" + }, + "record": { + "CNAME": "asd1495.github.io" + } } diff --git a/domains/arsenobetaine.json b/domains/arsenobetaine.json index f2e96f391..14207d31f 100644 --- a/domains/arsenobetaine.json +++ b/domains/arsenobetaine.json @@ -1,11 +1,11 @@ { - "description": "A personal website for information on me and my projects.", - "repo": "https://github.com/arsenobetaine/arsenobetaine.is-a.dev", - "owner": { - "username": "arsenobetaine", - "email": "arsenobetaine@gmail.com" - }, - "record": { - "CNAME": "arsenobetaine.github.io" - } + "description": "A personal website for information on me and my projects.", + "repo": "https://github.com/arsenobetaine/arsenobetaine.is-a.dev", + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "record": { + "CNAME": "arsenobetaine.github.io" + } } diff --git a/domains/arvind.json b/domains/arvind.json index bf9ab69c0..dc3f90151 100644 --- a/domains/arvind.json +++ b/domains/arvind.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "coderman400", - "email": "achurox1121@gmail.com" - }, - "record": { - "CNAME": "portfolio-nine-sigma-65.vercel.app" - } + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "record": { + "CNAME": "portfolio-nine-sigma-65.vercel.app" + } } diff --git a/domains/ashkan.json b/domains/ashkan.json index c0f2d160b..46d16df50 100644 --- a/domains/ashkan.json +++ b/domains/ashkan.json @@ -1,11 +1,11 @@ { - "description": "Welcome to Ashkan's portfolio – a full-stack developer specializing in Angular, React, NestJS, Go, and cloud-native applications", - "repo": "https://github.com/Ashkan4472/ashkan4472.github.io", - "owner": { - "username": "ashkan4472", - "email": "ashkan4472@gmail.com" - }, - "record": { - "CNAME": "ashkan4472.github.io" - } + "description": "Welcome to Ashkan's portfolio – a full-stack developer specializing in Angular, React, NestJS, Go, and cloud-native applications", + "repo": "https://github.com/Ashkan4472/ashkan4472.github.io", + "owner": { + "username": "ashkan4472", + "email": "ashkan4472@gmail.com" + }, + "record": { + "CNAME": "ashkan4472.github.io" + } } diff --git a/domains/athulanoop.json b/domains/athulanoop.json index 2f7f02f33..3fc576c1c 100644 --- a/domains/athulanoop.json +++ b/domains/athulanoop.json @@ -1,11 +1,11 @@ { - "description": "Portfolio website", - "repo": "https://github.com/alpha-og/portfolio", - "owner": { - "username": "alpha-og", - "email": "athulanoop2020@gmail.com" - }, - "record": { - "CNAME": "alpha-og.github.io" - } + "description": "Portfolio website", + "repo": "https://github.com/alpha-og/portfolio", + "owner": { + "username": "alpha-og", + "email": "athulanoop2020@gmail.com" + }, + "record": { + "CNAME": "alpha-og.github.io" + } } diff --git a/domains/atomtr.json b/domains/atomtr.json index 0cea42150..c9aacaa60 100644 --- a/domains/atomtr.json +++ b/domains/atomtr.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "atom-tr", - "email": "thai.tr@hotmail.com", - "discord": "423327141921423361" - }, - "record": { - "CNAME": "astro-erudite.pages.dev" - }, - "repo": "https://github.com/atom-tr/astro-erudite" + "owner": { + "username": "atom-tr", + "email": "thai.tr@hotmail.com", + "discord": "423327141921423361" + }, + "record": { + "CNAME": "astro-erudite.pages.dev" + }, + "repo": "https://github.com/atom-tr/astro-erudite" } diff --git a/domains/axay.json b/domains/axay.json index 8866d2386..0443203ea 100644 --- a/domains/axay.json +++ b/domains/axay.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mraxays", - "discord": "mrakshayas" - }, - "record": { - "URL": "https://mraxays.github.io/" - } + "owner": { + "username": "mraxays", + "discord": "mrakshayas" + }, + "record": { + "URL": "https://mraxays.github.io/" + } } diff --git a/domains/ayberk.json b/domains/ayberk.json new file mode 100644 index 000000000..c89fc485c --- /dev/null +++ b/domains/ayberk.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/ayberktandogan/ayberktandogan.github.io", + "owner": { + "username": "ayberktandogan", + "email": "ayberk.tandogan@outlook.com" + }, + "record": { + "CNAME": "ayberktandogan.github.io" + } +} diff --git a/domains/bala.json b/domains/bala.json index 7e2863e38..3f61f6f0b 100644 --- a/domains/bala.json +++ b/domains/bala.json @@ -1,11 +1,11 @@ { - "description": "For my github page", - "repo": "https://https://github.com/parzi-val/parzi-val", - "owner": { - "username": "parzi-val", - "email": "krbala1511@gmail.com" - }, - "record": { - "CNAME": "parzi-val.github.io" - } -} \ No newline at end of file + "description": "For my github page", + "repo": "https://https://github.com/parzi-val/parzi-val", + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "CNAME": "parzi-val.github.io" + } +} diff --git a/domains/barry-hammer.json b/domains/barry-hammer.json index a19403a2b..83c35ae48 100644 --- a/domains/barry-hammer.json +++ b/domains/barry-hammer.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "barry-hammer" - }, - "record": { - "CNAME": "barry-hammer.github.io" - } + "owner": { + "username": "barry-hammer" + }, + "record": { + "CNAME": "barry-hammer.github.io" + } } diff --git a/domains/baturalp.json b/domains/baturalp.json index 9707e7d66..40373949d 100644 --- a/domains/baturalp.json +++ b/domains/baturalp.json @@ -1,11 +1,11 @@ { - "description": "Baturalp Sönmez Portfolio website", - "repo": "https://github.com/Baturalp52/Baturalp52.github.io", - "owner": { - "username": "Baturalp52", - "email": "baturalpsonmez2002@gmail.com" - }, - "record": { - "CNAME": "baturalp52.github.io" - } + "description": "Baturalp Sönmez Portfolio website", + "repo": "https://github.com/Baturalp52/Baturalp52.github.io", + "owner": { + "username": "Baturalp52", + "email": "baturalpsonmez2002@gmail.com" + }, + "record": { + "CNAME": "baturalp52.github.io" + } } diff --git a/domains/bayu.json b/domains/bayu.json index 1a28a3df2..7ae7c1030 100644 --- a/domains/bayu.json +++ b/domains/bayu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ByeByu07", - "email":"muhammadbaharuddin08123@gmail.com" - }, - "record": { - "CNAME": "byebyu07.github.io" - } + "owner": { + "username": "ByeByu07", + "email": "muhammadbaharuddin08123@gmail.com" + }, + "record": { + "CNAME": "byebyu07.github.io" + } } diff --git a/domains/beoo.json b/domains/beoo.json index c42f729af..c364ad11f 100644 --- a/domains/beoo.json +++ b/domains/beoo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "16-thag5", - "email": "truongvan1605.yahoo@gmail.com" - }, - "record": { - "CNAME": "16-thag5.github.io" - } + "owner": { + "username": "16-thag5", + "email": "truongvan1605.yahoo@gmail.com" + }, + "record": { + "CNAME": "16-thag5.github.io" + } } diff --git a/domains/billion.json b/domains/billion.json index 021d46279..85f0b2c7e 100644 --- a/domains/billion.json +++ b/domains/billion.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "billionbucks", - "discord": "mrbillion_bucks", - "email": "mrbillionbucks@gmail.com" - }, - "record": { - "CNAME": "billionbucks.github.io" - } + "owner": { + "username": "billionbucks", + "discord": "mrbillion_bucks", + "email": "mrbillionbucks@gmail.com" + }, + "record": { + "CNAME": "billionbucks.github.io" + } } diff --git a/domains/bio.json b/domains/bio.json index b76f092fc..53c17e34b 100644 --- a/domains/bio.json +++ b/domains/bio.json @@ -1,11 +1,11 @@ { - "description": "Personal Bio", - "repo": "https://github.com/is-a-dev/docs", - "owner": { - "username": "octyn-yt", - "email": "simplelogin-newsletter.idealize471@simplelogin.com" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } + "description": "Personal Bio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } } diff --git a/domains/bitbend.json b/domains/bitbend.json index 7d6db789d..f25942387 100644 --- a/domains/bitbend.json +++ b/domains/bitbend.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bitbend", - "email": "arkamdev@gmail.com" - }, - "record": { - "CNAME": "bitbend.github.io" - } + "owner": { + "username": "bitbend", + "email": "arkamdev@gmail.com" + }, + "record": { + "CNAME": "bitbend.github.io" + } } diff --git a/domains/blkdang1.json b/domains/blkdang1.json index eea2ecdea..ddb3956cf 100644 --- a/domains/blkdang1.json +++ b/domains/blkdang1.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "lmlmdf404" - }, - "record": { - "CNAME": "lmlmdf404.github.io" - } + "owner": { + "username": "lmlmdf404" + }, + "record": { + "CNAME": "lmlmdf404.github.io" + } } diff --git a/domains/blogs.akk1to.json b/domains/blogs.akk1to.json index 4ceb0bc1e..f83bf1fca 100644 --- a/domains/blogs.akk1to.json +++ b/domains/blogs.akk1to.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com" - }, - "record": { - "CNAME": "blogs-chi-pearl.vercel.app" - } + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "CNAME": "blogs-chi-pearl.vercel.app" + } } diff --git a/domains/botlab.json b/domains/botlab.json index e2481ebe3..556257bc2 100644 --- a/domains/botlab.json +++ b/domains/botlab.json @@ -2,7 +2,7 @@ "description": "DBD(NO CODE)", "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, "record": { "A": ["75.2.60.5"] diff --git a/domains/breakertws.json b/domains/breakertws.json index 76346dedd..f457a5ded 100644 --- a/domains/breakertws.json +++ b/domains/breakertws.json @@ -1,11 +1,11 @@ { - "description": "Portfolio by Breaker TWS", - "repo": "https://github.com/BreakerTWS/breakertws.github.io", - "owner": { - "username": "BreakerTWS", - "email": "breakingtws@gmail.com" - }, - "record": { - "CNAME": "breakertws.github.io" - } + "description": "Portfolio by Breaker TWS", + "repo": "https://github.com/BreakerTWS/breakertws.github.io", + "owner": { + "username": "BreakerTWS", + "email": "breakingtws@gmail.com" + }, + "record": { + "CNAME": "breakertws.github.io" + } } diff --git a/domains/brint.json b/domains/brint.json index 2cc468c60..24fd52854 100644 --- a/domains/brint.json +++ b/domains/brint.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "brint97" - }, - "record": { - "CNAME": "brint97.github.io" - } + "owner": { + "username": "brint97" + }, + "record": { + "CNAME": "brint97.github.io" + } } diff --git a/domains/bryanj.json b/domains/bryanj.json index 951f8c692..f010dc11d 100644 --- a/domains/bryanj.json +++ b/domains/bryanj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bryanj0410", - "email": "bryanj0410@gmail.com" - }, - "record": { - "CNAME": "portfolio-holy-fog-2069.fly.dev" - } + "owner": { + "username": "bryanj0410", + "email": "bryanj0410@gmail.com" + }, + "record": { + "CNAME": "portfolio-holy-fog-2069.fly.dev" + } } diff --git a/domains/bumidenpasar.json b/domains/bumidenpasar.json index afdd3d4ca..206faafaf 100644 --- a/domains/bumidenpasar.json +++ b/domains/bumidenpasar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "BumiDenpasar", - "instagram": "ibummmbumi" - }, - "record": { - "CNAME": "portofolio-gray-nine.vercel.app" - } + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "record": { + "CNAME": "portofolio-gray-nine.vercel.app" + } } diff --git a/domains/cdn.evelio.json b/domains/cdn.evelio.json new file mode 100644 index 000000000..06316fe71 --- /dev/null +++ b/domains/cdn.evelio.json @@ -0,0 +1,11 @@ +{ + "description": "Will be used for Zipline purposes", + "owner": { + "username": "SrEvelio", + "email": "alphaevelio@gmail.com", + "discord": "srevelio" + }, + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/cescdev.json b/domains/cescdev.json index a6b71ceae..7314a7492 100644 --- a/domains/cescdev.json +++ b/domains/cescdev.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "GitCesc07", - "email": "cesar0407197@gmail.com" - }, - "record": { - "CNAME": "cescdev-portafolio.netlify.app" - } + "owner": { + "username": "GitCesc07", + "email": "cesar0407197@gmail.com" + }, + "record": { + "CNAME": "cescdev-portafolio.netlify.app" + } } diff --git a/domains/cirno.json b/domains/cirno.json index 37a73adae..4e82f95b6 100644 --- a/domains/cirno.json +++ b/domains/cirno.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "orangci", - "discord": "orangc" - }, - "record": { - "URL": "https://orangc.net" - } + "owner": { + "username": "orangci", + "discord": "orangc" + }, + "record": { + "URL": "https://orangc.net" } - \ No newline at end of file +} diff --git a/domains/code-vista.json b/domains/code-vista.json index cba571c63..d84672805 100644 --- a/domains/code-vista.json +++ b/domains/code-vista.json @@ -1,12 +1,12 @@ { - "description": "Just a personal website to use with this is-a.dev subdomain", - "repo": "https://github.com/JavaVista/code-vista-site", - "owner": { - "username": "JavaVista", - "discord": "codevista", - "email": "code-vista@outlook.com" - }, - "record": { - "CNAME": "javavista.github.io" - } + "description": "Just a personal website to use with this is-a.dev subdomain", + "repo": "https://github.com/JavaVista/code-vista-site", + "owner": { + "username": "JavaVista", + "discord": "codevista", + "email": "code-vista@outlook.com" + }, + "record": { + "CNAME": "javavista.github.io" + } } diff --git a/domains/codexisme.json b/domains/codexisme.json new file mode 100644 index 000000000..b7174ba69 --- /dev/null +++ b/domains/codexisme.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codexart-lab", + "email": "atmostechnexa@gmail.com" + }, + "record": { + "CNAME": "codexart-lab.github.io" + } +} diff --git a/domains/codexkun.json b/domains/codexkun.json index a10cfd30e..c625ca52a 100644 --- a/domains/codexkun.json +++ b/domains/codexkun.json @@ -2,10 +2,10 @@ "description": "Personal Portfolio", "repo": "https://github.com/KunalBishwal/Portfolio_IDE", "owner": { - "username": "KunalBishwal", - "email": "kunalbishwal2004@gmail.com" + "username": "KunalBishwal", + "email": "kunalbishwal2004@gmail.com" }, "record": { - "CNAME": "portfolio-ide-zeta.vercel.app" + "CNAME": "portfolio-ide-zeta.vercel.app" } } diff --git a/domains/colin.json b/domains/colin.json index afeee8671..d3c365a23 100644 --- a/domains/colin.json +++ b/domains/colin.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "ColinLeDev", - "email": "spam+isadev@col1n.fr" - }, - "record": { - "CNAME": "proxy.col1n.fr" - } + "owner": { + "username": "ColinLeDev", + "email": "spam+isadev@col1n.fr" + }, + "record": { + "CNAME": "proxy.col1n.fr" } - \ No newline at end of file +} diff --git a/domains/coolify-app.json b/domains/coolify-app.json index bfadfe245..2f614d496 100644 --- a/domains/coolify-app.json +++ b/domains/coolify-app.json @@ -1,10 +1,10 @@ -{ - "owner": { - "username": "umarsidiki", - "email": "siddiquiumar0007@gmail.com" - }, - "record": { - "A": ["89.168.88.28"] - }, - "proxied": true -} \ No newline at end of file +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "record": { + "A": ["89.168.88.28"] + }, + "proxied": true +} diff --git a/domains/darsshan.json b/domains/darsshan.json index a25d97bdf..dab8ddf9e 100644 --- a/domains/darsshan.json +++ b/domains/darsshan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DotEnvv", - "email": "nahsrad04@gmail.com" - }, - "record": { - "CNAME": "dotenvv.github.io" - } + "owner": { + "username": "DotEnvv", + "email": "nahsrad04@gmail.com" + }, + "record": { + "CNAME": "dotenvv.github.io" + } } diff --git a/domains/dauvet.json b/domains/dauvet.json index 86909dbb3..9ae8a6075 100644 --- a/domains/dauvet.json +++ b/domains/dauvet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dauvet", - "email": "vanhieu85@gmail.com" - }, - "record": { - "CNAME": "dauvet.github.io" - } + "owner": { + "username": "dauvet", + "email": "vanhieu85@gmail.com" + }, + "record": { + "CNAME": "dauvet.github.io" + } } diff --git a/domains/davidpizarro.json b/domains/davidpizarro.json index 438da7cfe..58664efd0 100644 --- a/domains/davidpizarro.json +++ b/domains/davidpizarro.json @@ -1,11 +1,11 @@ { - "description": "Use the domain for my porfolio", - "repo": "https://github.com/DavidPPizarro/davidppizarro.github.io", - "owner": { - "username": "DavidPPizarro", - "email": "paulpizarro151@gmail.com" - }, - "record": { - "CNAME": "davidppizarro.github.io" - } + "description": "Use the domain for my porfolio", + "repo": "https://github.com/DavidPPizarro/davidppizarro.github.io", + "owner": { + "username": "DavidPPizarro", + "email": "paulpizarro151@gmail.com" + }, + "record": { + "CNAME": "davidppizarro.github.io" + } } diff --git a/domains/davidrivas.json b/domains/davidrivas.json new file mode 100644 index 000000000..37a4a3ce6 --- /dev/null +++ b/domains/davidrivas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DavidRDevs", + "email": "ing.davidrivas96@gmail.com" + }, + "record": { + "URL": "https://github.com/DavidRDevs" + } +} diff --git a/domains/davidsneighbour.json b/domains/davidsneighbour.json index ad352b6a0..6952ce03b 100644 --- a/domains/davidsneighbour.json +++ b/domains/davidsneighbour.json @@ -6,8 +6,6 @@ }, "record": { "URL": "https://github.com/davidsneighbour/", - "MX": [ - "smtp.google.com" - ] + "MX": ["smtp.google.com"] } } diff --git a/domains/davr.json b/domains/davr.json index c69904dd2..3c07b5a70 100644 --- a/domains/davr.json +++ b/domains/davr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "cernoh", - "email": "davincey06@gmail.com" - }, - "record": { - "CNAME": "neobrutal-resume-vercel.vercel.app" - } + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "record": { + "CNAME": "neobrutal-resume-vercel.vercel.app" + } } diff --git a/domains/deeptanshu.json b/domains/deeptanshu.json index 1873c86ef..603733909 100644 --- a/domains/deeptanshu.json +++ b/domains/deeptanshu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Deeptanshuu", - "email": "laldeeptanshu96@gmail.com" - }, - "record": { - "CNAME": "deeptanshu.vercel.app" - } + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "record": { + "CNAME": "deeptanshu.vercel.app" + } } diff --git a/domains/denblo.json b/domains/denblo.json index b639fb837..2b03ac82b 100644 --- a/domains/denblo.json +++ b/domains/denblo.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/DenisBlokhin/DenisBlokhin.github.io", - "owner": { - "username": "DenisBlokhin", - "email": "denis.blokhin@outlook.com" - }, - "record": { - "CNAME": "denisblokhin.github.io" - } + "repo": "https://github.com/DenisBlokhin/DenisBlokhin.github.io", + "owner": { + "username": "DenisBlokhin", + "email": "denis.blokhin@outlook.com" + }, + "record": { + "CNAME": "denisblokhin.github.io" + } } diff --git a/domains/devghost.json b/domains/devghost.json index ccb16cce9..d28397cfe 100644 --- a/domains/devghost.json +++ b/domains/devghost.json @@ -1,14 +1,11 @@ { - "repo": "https://github.com/thecodingwizardx/register.git", - "owner": { - "username": "thecodingwizardx", - "email": "murkyaxe@gmail.com" - }, - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "repo": "https://github.com/thecodingwizardx/register.git", + "owner": { + "username": "thecodingwizardx", + "email": "murkyaxe@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/devm.json b/domains/devm.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devm.json +++ b/domains/devm.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devma.json b/domains/devma.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devma.json +++ b/domains/devma.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmai.json b/domains/devmai.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devmai.json +++ b/domains/devmai.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmat.json b/domains/devmat.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devmat.json +++ b/domains/devmat.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmate.json b/domains/devmate.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devmate.json +++ b/domains/devmate.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmatei-again.json b/domains/devmatei-again.json index 95adeb76e..b2447dc4b 100644 --- a/domains/devmatei-again.json +++ b/domains/devmatei-again.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dhruvkoshta.json b/domains/dhruvkoshta.json index 2dc4ca279..73f56b446 100644 --- a/domains/dhruvkoshta.json +++ b/domains/dhruvkoshta.json @@ -1,11 +1,11 @@ { - "repo" : "https://github.com/Dhruvkoshta/Dhruvkoshta.github.io", - "description": "portfolio site", - "owner": { - "username": "Dhruvkoshta", - "email": "dhruvkoshta@gmail.com" - }, - "record": { - "CNAME": "dhruvkoshta.github.io" - } + "repo": "https://github.com/Dhruvkoshta/Dhruvkoshta.github.io", + "description": "portfolio site", + "owner": { + "username": "Dhruvkoshta", + "email": "dhruvkoshta@gmail.com" + }, + "record": { + "CNAME": "dhruvkoshta.github.io" + } } diff --git a/domains/dikshantsingh.json b/domains/dikshantsingh.json index 9f2685748..f37339670 100644 --- a/domains/dikshantsingh.json +++ b/domains/dikshantsingh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dikshantsingh510", - "email":"dikshantsingh510@gmail.com" - }, - "record": { - "CNAME": "dikshantsingh510.github.io" - } + "owner": { + "username": "dikshantsingh510", + "email": "dikshantsingh510@gmail.com" + }, + "record": { + "CNAME": "dikshantsingh510.github.io" + } } diff --git a/domains/discord-lakshishere.json b/domains/discord-lakshishere.json new file mode 100644 index 000000000..7a03c091c --- /dev/null +++ b/domains/discord-lakshishere.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/discord.devmatei.json b/domains/discord.devmatei.json index 417c6f9a7..92923422a 100644 --- a/domains/discord.devmatei.json +++ b/domains/discord.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://discord.com/users/784443338627612673" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://discord.com/users/784443338627612673" + } +} diff --git a/domains/discord.winbo.json b/domains/discord.winbo.json deleted file mode 100644 index 8d30e3739..000000000 --- a/domains/discord.winbo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "komaru-meow", - "email": "winbo-yml-exe@outlook.com" - }, - "record": { - "CNAME": "komaru-discord.github.io" - } -} diff --git a/domains/discordlakshishere.json b/domains/discordlakshishere.json new file mode 100644 index 000000000..7a03c091c --- /dev/null +++ b/domains/discordlakshishere.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/dishant.json b/domains/dishant.json index 5d91b89b7..cc84bd77c 100644 --- a/domains/dishant.json +++ b/domains/dishant.json @@ -1,10 +1,10 @@ { - "repo":"https://github.com/Dishant402955/Portfolio", - "owner":{ + "repo": "https://github.com/Dishant402955/Portfolio", + "owner": { "username": "Dishant402955", - "email":"dishantradadiya3036@gmail.com" + "email": "dishantradadiya3036@gmail.com" }, - "record":{ - "CNAME":"portfolio-dishants-projects-6881d6c0.vercel.app" + "record": { + "CNAME": "portfolio-dishants-projects-6881d6c0.vercel.app" } } diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json index 51defdcd6..351a5b287 100644 --- a/domains/divyanshudhruv.json +++ b/domains/divyanshudhruv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "divyanshudhruv", - "email": "divyanshudhruv24@gmail.com" - }, - "record": { - "CNAME": "divyanshudhruv.vercel.app" - } + "owner": { + "username": "divyanshudhruv", + "email": "divyanshudhruv24@gmail.com" + }, + "record": { + "CNAME": "divyanshudhruv.vercel.app" + } } diff --git a/domains/dm.devmatei.json b/domains/dm.devmatei.json index 417c6f9a7..92923422a 100644 --- a/domains/dm.devmatei.json +++ b/domains/dm.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://discord.com/users/784443338627612673" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://discord.com/users/784443338627612673" + } +} diff --git a/domains/dm.json b/domains/dm.json index 2d103b341..b2447dc4b 100644 --- a/domains/dm.json +++ b/domains/dm.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } } - \ No newline at end of file diff --git a/domains/dmi.json b/domains/dmi.json index 95adeb76e..b2447dc4b 100644 --- a/domains/dmi.json +++ b/domains/dmi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/doansilinh.json b/domains/doansilinh.json index 9001d14a2..1d8747c17 100644 --- a/domains/doansilinh.json +++ b/domains/doansilinh.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "doansilinh" - }, - "record": { - "CNAME": "doansilinh.github.io" - } + "owner": { + "username": "doansilinh" + }, + "record": { + "CNAME": "doansilinh.github.io" + } } diff --git a/domains/doc.devmatei.json b/domains/doc.devmatei.json index ce8b67096..e84cdfd7f 100644 --- a/domains/doc.devmatei.json +++ b/domains/doc.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://docs.devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://docs.devmatei.is-a.dev/" + } +} diff --git a/domains/docs.abdullahcxd.json b/domains/docs.abdullahcxd.json index 7a74ca4f7..0364a1347 100644 --- a/domains/docs.abdullahcxd.json +++ b/domains/docs.abdullahcxd.json @@ -1,10 +1,10 @@ -{ - "owner": { - "username": "abdullahcxd", - "email": "sabdullahcxd@gmail.com", - "discord": "sabdullahcxd" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } -} \ No newline at end of file +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/dodongduc.json b/domains/dodongduc.json new file mode 100644 index 000000000..fc67b2dc4 --- /dev/null +++ b/domains/dodongduc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duc3d-hus", + "email": "duc3d.hus@gmail.com" + }, + "record": { + "CNAME": "duc3d-hus.github.io" + } +} diff --git a/domains/dongtran.json b/domains/dongtran.json index c21d9cdcc..e3ba5a3da 100644 --- a/domains/dongtran.json +++ b/domains/dongtran.json @@ -1,10 +1,10 @@ { - "description": "dongtran.is-a.dev : This is my personal notebook", - "owner": { - "username": "dongitran", - "email": "thiendong.iuh@gmail.com" - }, - "record": { - "URL": "https://devvui.one" - } + "description": "dongtran.is-a.dev : This is my personal notebook", + "owner": { + "username": "dongitran", + "email": "thiendong.iuh@gmail.com" + }, + "record": { + "URL": "https://devvui.one" } +} diff --git a/domains/drbaph.json b/domains/drbaph.json index f3166ee6a..1660188a8 100644 --- a/domains/drbaph.json +++ b/domains/drbaph.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Saganaki22", - "email": "info@drbaph.dev" - }, - "record": { - "CNAME": "drbaph-srj.pages.dev" - } + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "record": { + "CNAME": "saganaki22.github.io" + } } diff --git a/domains/dtdung.json b/domains/dtdung.json index db2e7f5e9..e275ee0c9 100644 --- a/domains/dtdung.json +++ b/domains/dtdung.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "dtdung07" - }, - "record": { - "URL": "https://dtdung.us.to" - } + "owner": { + "username": "dtdung07" + }, + "record": { + "URL": "https://dtdung.us.to" + } } diff --git a/domains/duanyang.json b/domains/duanyang.json index 1d80f4940..c9cc5fa86 100644 --- a/domains/duanyang.json +++ b/domains/duanyang.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Mrliduanyang", - "email": "duanyangchn@gmail.com" - }, - "record": { - "CNAME": "duanyang.cool" - }, - "proxied": false + "owner": { + "username": "Mrliduanyang", + "email": "duanyangchn@gmail.com" + }, + "record": { + "CNAME": "duanyang.cool" + }, + "proxied": false } diff --git a/domains/duc.json b/domains/duc.json index dcdd0bddb..c4e199714 100644 --- a/domains/duc.json +++ b/domains/duc.json @@ -1,11 +1,11 @@ { - "description": "duc.is-a.dev", - "repo": "https://github.com/duc-ios/duc-ios.github.io", - "owner": { - "username": "duc-ios", - "email": "hi@duk.one" - }, - "record": { - "CNAME": "duc-ios.github.io" - } + "description": "duc.is-a.dev", + "repo": "https://github.com/duc-ios/duc-ios.github.io", + "owner": { + "username": "duc-ios", + "email": "hi@duk.one" + }, + "record": { + "CNAME": "duc-ios.github.io" + } } diff --git a/domains/duyhandsome.json b/domains/duyhandsome.json index aaefa83e0..0210a29ec 100644 --- a/domains/duyhandsome.json +++ b/domains/duyhandsome.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "dominhduy09" - }, - "record": { - "URL": "https://dominhduy09.github.io/profile/" - } + "owner": { + "username": "dominhduy09" + }, + "record": { + "URL": "https://dominhduy09.github.io/profile/" + } } diff --git a/domains/duypt14.json b/domains/duypt14.json index 27ff91f37..5fe5977e1 100644 --- a/domains/duypt14.json +++ b/domains/duypt14.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ptduy14", - "email": "phantanduy14@gmail.com" - }, - "record": { - "CNAME": "portfolio-ptduy14s-projects.vercel.app" - } + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "record": { + "CNAME": "portfolio-ptduy14s-projects.vercel.app" + } } diff --git a/domains/dvm.json b/domains/dvm.json index 95adeb76e..b2447dc4b 100644 --- a/domains/dvm.json +++ b/domains/dvm.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dvmi.json b/domains/dvmi.json index 95adeb76e..b2447dc4b 100644 --- a/domains/dvmi.json +++ b/domains/dvmi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json index 76a51d94e..a4d17f0c7 100644 --- a/domains/educatedsuddenbucket.json +++ b/domains/educatedsuddenbucket.json @@ -4,7 +4,18 @@ "email": "educatedsuddenbucket@gmail.com" }, "record": { - "A": ["185.199.108.153"], + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], "TXT": [ "google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE", "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/elbek.json b/domains/elbek.json index 3a366e598..615779395 100644 --- a/domains/elbek.json +++ b/domains/elbek.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "khamdullaevuz", - "email": "elbek.khamdullaev@gmail.com" - }, - "record": { - "CNAME": "khamdullaevuz.github.io" - } + "owner": { + "username": "khamdullaevuz", + "email": "elbek.khamdullaev@gmail.com" + }, + "record": { + "CNAME": "khamdullaevuz.github.io" + } } diff --git a/domains/element.json b/domains/element.json index 7d1ba136e..8b0d30fa5 100644 --- a/domains/element.json +++ b/domains/element.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/playreaver/reaverlauncher", - "owner": { - "username": "playreaver", - "email": "reaver.entertainment@hotmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "repo": "https://github.com/playreaver/reaverlauncher", + "owner": { + "username": "playreaver", + "email": "reaver.entertainment@hotmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/eli.json b/domains/eli.json index 6d8c06c49..264a680fc 100644 --- a/domains/eli.json +++ b/domains/eli.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "elisoreal" - }, - "record": { - "CNAME": "elisoreal.github.io" - } + "owner": { + "username": "elisoreal" + }, + "record": { + "CNAME": "elisoreal.github.io" + } } diff --git a/domains/emanuel-prado.json b/domains/emanuel-prado.json index 378746fe6..15fd64130 100644 --- a/domains/emanuel-prado.json +++ b/domains/emanuel-prado.json @@ -6,4 +6,4 @@ "record": { "CNAME": "meteoric-swarm.vercel.app" } -} \ No newline at end of file +} diff --git a/domains/etercore.json b/domains/etercore.json index 09e81b792..a20c97deb 100644 --- a/domains/etercore.json +++ b/domains/etercore.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ramirosanchezaranda", - "email": "etercoredesignweb@gmail.com" - }, - "record": { - "CNAME": "etercore.vercel.app" - } - } \ No newline at end of file + "owner": { + "username": "ramirosanchezaranda", + "email": "etercoredesignweb@gmail.com" + }, + "record": { + "CNAME": "etercore.vercel.app" + } +} diff --git a/domains/ethantran.json b/domains/ethantran.json index fd2b34f39..37f12fdb7 100644 --- a/domains/ethantran.json +++ b/domains/ethantran.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Ethanxcode", - "email": "trannguyendanhuy2904@gmail.com" - }, - "record": { - "CNAME": "ethanxcode.vercel.app" - } + "owner": { + "username": "Ethanxcode", + "email": "trannguyendanhuy2904@gmail.com" + }, + "record": { + "CNAME": "ethanxcode.vercel.app" + } } diff --git a/domains/euler.json b/domains/euler.json index 2765bcc02..c54107065 100644 --- a/domains/euler.json +++ b/domains/euler.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Euler-B", - "email": "eduardojosebb.matescience@gmail.com" -}, - "record": { - "CNAME": "euler-b.pages.dev" - } -} \ No newline at end of file + "owner": { + "username": "Euler-B", + "email": "eduardojosebb.matescience@gmail.com" + }, + "record": { + "CNAME": "euler-b.pages.dev" + } +} diff --git a/domains/existing.json b/domains/existing.json index 9444e0ff2..fe83dde20 100644 --- a/domains/existing.json +++ b/domains/existing.json @@ -9,4 +9,3 @@ "CNAME": "existing-dev.github.io" } } - diff --git a/domains/faaris.json b/domains/faaris.json index b4786320d..42f60a334 100644 --- a/domains/faaris.json +++ b/domains/faaris.json @@ -1,10 +1,9 @@ -{ - "owner": { - "username": "Mohamed-faaris", - "email": "mohammedfaaris2005@gmail.com" - }, - "record": { - "URL": "https://github.com/Mohamed-faaris" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "record": { + "URL": "https://github.com/Mohamed-faaris" + } +} diff --git a/domains/farouk.json b/domains/farouk.json index 95a5a3edb..bb69e4d6b 100644 --- a/domains/farouk.json +++ b/domains/farouk.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "faroukchebaiki", - "email": "farouk.chebaiki@gmail.com" - }, - "record": { - "CNAME": "faroukchebaiki.vercel.app" - } + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "record": { + "CNAME": "faroukchebaiki.vercel.app" + } } diff --git a/domains/faultywindows.json b/domains/faultywindows.json index 7df656cab..c0411c20a 100644 --- a/domains/faultywindows.json +++ b/domains/faultywindows.json @@ -5,6 +5,17 @@ "discord": "1041028534690386051" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/febs.json b/domains/febs.json index 57a535b1d..cc98d842e 100644 --- a/domains/febs.json +++ b/domains/febs.json @@ -5,6 +5,6 @@ "email": "febrian.xiii@gmail.com" }, "record": { - "CNAME": "febriansf.netlify.app" + "CNAME": "www.febss.web.id" } } diff --git a/domains/fendimohamed.json b/domains/fendimohamed.json index c1298253f..b726d9c23 100644 --- a/domains/fendimohamed.json +++ b/domains/fendimohamed.json @@ -1,11 +1,9 @@ -{ - "owner": { - "username": "FendiMohamed", - "email": "fendimohamed615@gmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ] - } +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/finch.json b/domains/finch.json index d074436de..228d1dfd8 100644 --- a/domains/finch.json +++ b/domains/finch.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "metalespesados", - "email": "bengfm@icloud.com" - }, - "record": { - "CNAME": "ebn.netlify.app" - } + "owner": { + "username": "metalespesados", + "email": "bengfm@icloud.com" + }, + "record": { + "CNAME": "ebn.netlify.app" + } } diff --git a/domains/florent.json b/domains/florent.json index 60009a9bd..8d6922a6c 100644 --- a/domains/florent.json +++ b/domains/florent.json @@ -8,4 +8,4 @@ "CNAME": "flobsx.github.io" }, "proxied": true -} \ No newline at end of file +} diff --git a/domains/fongg.json b/domains/fongg.json index ebf63ec29..55405c792 100644 --- a/domains/fongg.json +++ b/domains/fongg.json @@ -1,11 +1,11 @@ { - "description": "nphng15.is-a.dev", - "repo": "https://github.com/nphng15/nphng15.github.io", - "owner": { - "username": "nphng15", - "email": "23521172@gm.uit.edu.vn" - }, - "record": { - "CNAME": "nphng15.github.io" - } + "description": "nphng15.is-a.dev", + "repo": "https://github.com/nphng15/nphng15.github.io", + "owner": { + "username": "nphng15", + "email": "23521172@gm.uit.edu.vn" + }, + "record": { + "CNAME": "nphng15.github.io" + } } diff --git a/domains/franlo42.json b/domains/franlo42.json index 040d16740..5117f63b1 100644 --- a/domains/franlo42.json +++ b/domains/franlo42.json @@ -1,8 +1,8 @@ { - "owner":{ - "username": "franlo42" + "owner": { + "username": "franlo42" }, "record": { - "CNAME": "franlo42.github.io" + "CNAME": "franlo42.github.io" } } diff --git a/domains/freewill.devmatei.json b/domains/freewill.devmatei.json index 95adeb76e..b2447dc4b 100644 --- a/domains/freewill.devmatei.json +++ b/domains/freewill.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/fsoft72.json b/domains/fsoft72.json index b97e6ff7d..9fcef0e3f 100644 --- a/domains/fsoft72.json +++ b/domains/fsoft72.json @@ -1,10 +1,10 @@ { - "description": "👋 Hello! I'm Fabio, a passionate developer with 30+ years experience in programming. In my career I have done almost everything, from shared objects for Linux in C to complex web applications and efficient web solutions. Explore my portfolio and contact me on GitHub.", - "owner": { - "username": "fsoft72", - "email": "fabio.rotondo@gmail.com" - }, - "record": { - "URL": "https://fsoft.dev" - } + "description": "👋 Hello! I'm Fabio, a passionate developer with 30+ years experience in programming. In my career I have done almost everything, from shared objects for Linux in C to complex web applications and efficient web solutions. Explore my portfolio and contact me on GitHub.", + "owner": { + "username": "fsoft72", + "email": "fabio.rotondo@gmail.com" + }, + "record": { + "URL": "https://fsoft.dev" + } } diff --git a/domains/funinkina.json b/domains/funinkina.json index 95986c38b..79248d131 100644 --- a/domains/funinkina.json +++ b/domains/funinkina.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "funinkina", - "email": "aryankushwaha3101@gmail.com" - }, - "record": { - "CNAME": "funinkina.vercel.app" - } + "owner": { + "username": "funinkina", + "email": "aryankushwaha3101@gmail.com" + }, + "record": { + "CNAME": "funinkina.vercel.app" + } } diff --git a/domains/fusoras.json b/domains/fusoras.json index 4be4671cb..347f07eac 100644 --- a/domains/fusoras.json +++ b/domains/fusoras.json @@ -1,11 +1,11 @@ { - "description": "Porfolio website", - "repo": "https://github.com/FuSoraS/portfolio", - "owner": { - "username": "FuSoraS", - "email": "developer.FuSoraS@gmail.com" - }, - "record": { - "CNAME": "fusoras.github.io" - } + "description": "Porfolio website", + "repo": "https://github.com/FuSoraS/portfolio", + "owner": { + "username": "FuSoraS", + "email": "developer.FuSoraS@gmail.com" + }, + "record": { + "CNAME": "fusoras.github.io" + } } diff --git a/domains/fynnlukah.json b/domains/fynnlukah.json index 7b49a8bc8..5652527f3 100644 --- a/domains/fynnlukah.json +++ b/domains/fynnlukah.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "fynnlukah", - "discord": "727590288209608824" - }, - "record": { - "CNAME": "fynnlukah.vercel.app" - } + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "record": { + "CNAME": "fynnlukah.vercel.app" + } } diff --git a/domains/gabriel-iturre.json b/domains/gabriel-iturre.json index 4876467f9..be43ac2f8 100644 --- a/domains/gabriel-iturre.json +++ b/domains/gabriel-iturre.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "GabrielIturreCs", - "email": "gabriel13iturre@gmail.com" - }, - "record": { - "CNAME": "gabrieliturre.netlify.app" - } + "owner": { + "username": "GabrielIturreCs", + "email": "gabriel13iturre@gmail.com" + }, + "record": { + "CNAME": "gabrieliturre.netlify.app" + } } diff --git a/domains/ganeswarv.json b/domains/ganeswarv.json index 1bcc92bed..921e50bee 100644 --- a/domains/ganeswarv.json +++ b/domains/ganeswarv.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/ganeswar-velvadapu/portfolio", - "description": "My Portfolio Webiste", - "owner": { - "username": "ganeswar-velvadapu", - "email": "ganeshvelvadapu@gmail.com" - }, - "record": { - "CNAME": "portfolio-tau-mauve-63.vercel.app" - } + "repo": "https://github.com/ganeswar-velvadapu/portfolio", + "description": "My Portfolio Webiste", + "owner": { + "username": "ganeswar-velvadapu", + "email": "ganeshvelvadapu@gmail.com" + }, + "record": { + "CNAME": "portfolio-tau-mauve-63.vercel.app" + } } diff --git a/domains/ghsearch.json b/domains/ghsearch.json index a5b257566..38aa8f6d9 100644 --- a/domains/ghsearch.json +++ b/domains/ghsearch.json @@ -1,11 +1,11 @@ { - "description": "Aplicación web para buscar repositorios en GitHub por tema, utilizando la API de GitHub. Construida con HTML, CSS y JavaScript.", - "repo": "https://https://github.com/herwingx/awesome-github-search", - "owner": { - "username": "herwingx", - "email": "herwingmacias@gmail.com" - }, - "record": { - "CNAME": "herwingx.github.io" - } + "description": "Aplicación web para buscar repositorios en GitHub por tema, utilizando la API de GitHub. Construida con HTML, CSS y JavaScript.", + "repo": "https://https://github.com/herwingx/awesome-github-search", + "owner": { + "username": "herwingx", + "email": "herwingmacias@gmail.com" + }, + "record": { + "CNAME": "herwingx.github.io" + } } diff --git a/domains/girl.json b/domains/girl.json new file mode 100644 index 000000000..00ab0224a --- /dev/null +++ b/domains/girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/glitched-da-kitty-cat.json b/domains/glitched-da-kitty-cat.json index 18dc8b2e1..be310fb86 100644 --- a/domains/glitched-da-kitty-cat.json +++ b/domains/glitched-da-kitty-cat.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "GlitchedDaKittyCatSchoolaccount", - "email": "glitcheddacat@gmail.com" - }, - "record": { - "CNAME": "glitched-da-kitty-cat.vercel.app" - } + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "record": { + "CNAME": "glitched-da-kitty-cat.vercel.app" + } } diff --git a/domains/goddy.json b/domains/goddy.json index 8c6f689cd..7735a6c4d 100644 --- a/domains/goddy.json +++ b/domains/goddy.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "Owinogoddie", - "email": "owinogoddie@gmail.com" - }, - "record": { - "URL": "https://goddy-the-dev.vercel.app" - } + "owner": { + "username": "Owinogoddie", + "email": "owinogoddie@gmail.com" + }, + "record": { + "URL": "https://goddy-the-dev.vercel.app" } - \ No newline at end of file +} diff --git a/domains/godkode.json b/domains/godkode.json new file mode 100644 index 000000000..e290738b3 --- /dev/null +++ b/domains/godkode.json @@ -0,0 +1,11 @@ +{ + "description": "Flex", + "repo": "https://github.com/GodKode69/GodKode69.github.io", + "owner": { + "username": "GodKode69", + "email": "knownasraghav@gmail.com" + }, + "record": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/guillelm.json b/domains/guillelm.json index 5baef4118..361bf23d1 100644 --- a/domains/guillelm.json +++ b/domains/guillelm.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio Tech Website...", - "repo": "https://github.com/guilleLM71/portafolio", - "owner": { - "username": "guilleLM71", - "email": "jlauram3@fcpn.edu.bo" - }, - "record": { - "CNAME": "guillelm71.github.io" - } + "description": "Personal Portfolio Tech Website...", + "repo": "https://github.com/guilleLM71/portafolio", + "owner": { + "username": "guilleLM71", + "email": "jlauram3@fcpn.edu.bo" + }, + "record": { + "CNAME": "guillelm71.github.io" + } } diff --git a/domains/guvent.json b/domains/guvent.json index 470563897..49d231992 100644 --- a/domains/guvent.json +++ b/domains/guvent.json @@ -1,12 +1,11 @@ { - "description": "The portfolio site of Guven Topal", - "repo": "https://github.com/guvent/guvent", - "owner": { - "username": "guvent", - "email": "me@guvent.com" - }, - "record": { - "CNAME": "guvent.com" - } + "description": "The portfolio site of Guven Topal", + "repo": "https://github.com/guvent/guvent", + "owner": { + "username": "guvent", + "email": "me@guvent.com" + }, + "record": { + "CNAME": "guvent.com" } - \ No newline at end of file +} diff --git a/domains/gwly.json b/domains/gwly.json index 26e78f64a..4f99b36f7 100644 --- a/domains/gwly.json +++ b/domains/gwly.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "cyrilguocode" - }, - "record": { - "CNAME": "gwlyweb.pages.dev" - } + "owner": { + "username": "cyrilguocode" + }, + "record": { + "CNAME": "gwlyweb.pages.dev" + } } diff --git a/domains/h3lios.json b/domains/h3lios.json deleted file mode 100644 index 088090649..000000000 --- a/domains/h3lios.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "NinjaXility", - "discord": "511106356267319296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IBR3ZrvHG0dyQ1OU_ThEq2VbB_gvPhqPJkyPtwwbODCQENB-T2fstb7JrqYXG9lNaBWBrkeUzrheB5HY5tgEmPDAe6eDnN1D0dk0HKwxySEO7I1wbJsoJUnrWXigmuIYYkCPqHO9bBBD3seh4Y-REvCFI_xjNxBOIkqYiISDG4SJZW_AMoM-4ZwWJOS30ASQA3IM1DrvS3cNeamN0vmy2W16z7PUQxfn3UpwhdalfbzZKgiPowTVnbMT8OZ0IL45VZCmqeikraFf7fUv0PPCk54c07A8mIpYepzyy4hUftsF-ILHDLU_iOMZDHPrMDpPeyFXgYjA1iv1AfgFj6lshA.CFjZ-C3qr_js2SqYJQruNQ.j12mMFCkJhwZpCJXE_JDaY1XgeCUkSwhowfAvMEFrxvTdeqGbeEaHiXN4-oXfM0FuPLNgfsJDTwmva-ekWTAeOtX4a3IBlJ0uuj65_tdMOw.NDTU5ISRijrUIUoDvdYXJw" - }, - "record": { - "CNAME": "ninjaxility.github.io" - } -} diff --git a/domains/hamdi.json b/domains/hamdi.json index b718fb161..8790624d9 100644 --- a/domains/hamdi.json +++ b/domains/hamdi.json @@ -1,11 +1,11 @@ { - "description": "Portfolio", - "repo": "https://github.com/hb12devtn/Portfolio", - "owner": { - "username": "hb12devtn", - "email": "h.bougattaya1212@gmail.com" - }, - "record": { - "CNAME": "hb12devtn.github.io" - } + "description": "Portfolio", + "repo": "https://github.com/hb12devtn/Portfolio", + "owner": { + "username": "hb12devtn", + "email": "h.bougattaya1212@gmail.com" + }, + "record": { + "CNAME": "hb12devtn.github.io" + } } diff --git a/domains/haohoang.json b/domains/haohoang.json index f17d61b10..547ff761f 100644 --- a/domains/haohoang.json +++ b/domains/haohoang.json @@ -1,10 +1,10 @@ { - "description": "The blog of Hao Hoang", - "owner": { - "username": "vanhaohoang", - "email": "hoangvanhao99.01@gmail.com" - }, - "record": { - "CNAME": "vanhaohoang.github.io" - } + "description": "The blog of Hao Hoang", + "owner": { + "username": "vanhaohoang", + "email": "hoangvanhao99.01@gmail.com" + }, + "record": { + "CNAME": "vanhaohoang.github.io" + } } diff --git a/domains/hareesh.json b/domains/hareesh.json index ec4c3873f..f6906c0e0 100644 --- a/domains/hareesh.json +++ b/domains/hareesh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Hareesh108", - "email": "hareeshbhittam@gmail.com" - }, - "record": { - "CNAME": "me-hazel-delta.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "record": { + "CNAME": "me-hazel-delta.vercel.app" + } +} diff --git a/domains/harunabdullah.json b/domains/harunabdullah.json index 16e71771f..f535533c9 100644 --- a/domains/harunabdullah.json +++ b/domains/harunabdullah.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "harunabdullahrakin" - }, - + "owner": { + "username": "harunabdullahrakin" + }, + "record": { - "A": [ - "185.31.40.12" - ] - -} + "A": ["185.31.40.12"] + } } diff --git a/domains/haydenpc.json b/domains/haydenpc.json index 146ecd899..771561aab 100644 --- a/domains/haydenpc.json +++ b/domains/haydenpc.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "haydenpc", - "email": "haydenpc369@gmail.com" - }, - "record": { - "CNAME": "haydenpc.github.io" - } + "owner": { + "username": "haydenpc", + "email": "haydenpc369@gmail.com" + }, + "record": { + "CNAME": "haydenpc.github.io" + } } diff --git a/domains/hemath.json b/domains/hemath.json index 4328e6a63..97e97e053 100644 --- a/domains/hemath.json +++ b/domains/hemath.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "djhemath", - "email": "djhemath@gmail.com" - }, - "record": { - "URL": "https://hemath.dev" - } + "owner": { + "username": "djhemath", + "email": "djhemath@gmail.com" + }, + "record": { + "URL": "https://hemath.dev" } - \ No newline at end of file +} diff --git a/domains/henderythmix.json b/domains/henderythmix.json index ca1a63df4..601c86ad4 100644 --- a/domains/henderythmix.json +++ b/domains/henderythmix.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "henderythmix", - "email": "robertoselleswork@gmail.com" - }, - "record": { - "CNAME": "henderythmix.vercel.app" - } + "owner": { + "username": "henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "record": { + "CNAME": "henderythmix.vercel.app" + } } diff --git a/domains/hercase.json b/domains/hercase.json index b76e8c2b2..8c14dc06a 100644 --- a/domains/hercase.json +++ b/domains/hercase.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hercase", - "email": "hercase92@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "owner": { + "username": "hercase", + "email": "hercase92@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/herve.json b/domains/herve.json index 883675cff..3898aae8b 100644 --- a/domains/herve.json +++ b/domains/herve.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "herveleclerc", - "email": "herve.leclerc@gmail.com" - }, - "record": { - "CNAME": "herveleclerc.github.io" - } + "owner": { + "username": "herveleclerc", + "email": "herve.leclerc@gmail.com" + }, + "record": { + "CNAME": "herveleclerc.github.io" + } } diff --git a/domains/heyaxo.json b/domains/heyaxo.json index 1f3dd451e..1938285bf 100644 --- a/domains/heyaxo.json +++ b/domains/heyaxo.json @@ -1,19 +1,16 @@ { - "description": "My personal homepage!", - "repo": "https://github.com/verygafanhot", - "owner": { - "username": "Verygafanhot", - "email": "verygafanhot@gmail.com", - "twitter": "verygafanhot", - "discord": "Verygafanhot" - }, - "record": { - "CNAME": "verygafanhot.github.io", - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - }, - "proxied": true + "description": "My personal homepage!", + "repo": "https://github.com/verygafanhot", + "owner": { + "username": "Verygafanhot", + "email": "verygafanhot@gmail.com", + "twitter": "verygafanhot", + "discord": "Verygafanhot" + }, + "record": { + "CNAME": "verygafanhot.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + }, + "proxied": true } diff --git a/domains/hoan.json b/domains/hoan.json index 98ba071c9..8b28f9a23 100644 --- a/domains/hoan.json +++ b/domains/hoan.json @@ -1,10 +1,10 @@ { - "description": "hoan.is-a.dev : This is my personal notebook", - "owner": { - "username": "hwanngo", - "email": "conghoan.0406@gmail.com" - }, - "record": { - "CNAME": "hwanngo.github.io" - } + "description": "hoan.is-a.dev : This is my personal notebook", + "owner": { + "username": "hwanngo", + "email": "conghoan.0406@gmail.com" + }, + "record": { + "CNAME": "hwanngo.github.io" + } } diff --git a/domains/holedev.json b/domains/holedev.json index 25c0f5245..4e1b3e006 100644 --- a/domains/holedev.json +++ b/domains/holedev.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "holedev", - "email": "contact@holedev.com" - }, - "record": { - "URL": "https://github.com/holedev" - } -} \ No newline at end of file + "owner": { + "username": "holedev", + "email": "contact@holedev.com" + }, + "record": { + "URL": "https://github.com/holedev" + } +} diff --git a/domains/homelab.json b/domains/homelab.json index c93d8014e..143591535 100644 --- a/domains/homelab.json +++ b/domains/homelab.json @@ -5,9 +5,6 @@ "email": "helovikipranata@gmail.com" }, "record": { - "NS": [ - "deb.ns.cloudflare.com", - "sid.ns.cloudflare.com" - ] + "NS": ["deb.ns.cloudflare.com", "sid.ns.cloudflare.com"] } } diff --git a/domains/hongquang.json b/domains/hongquang.json index bfc84d262..10c809630 100644 --- a/domains/hongquang.json +++ b/domains/hongquang.json @@ -1,11 +1,11 @@ { - "description": "For introduce myself", - "repo": "https://github.com/HQuang/HQuang", - "owner": { - "username": "quanglh268", - "email": "quanglh268@gmail.com" - }, - "record": { - "CNAME": "hquang.github.io" - } + "description": "For introduce myself", + "repo": "https://github.com/HQuang/HQuang", + "owner": { + "username": "quanglh268", + "email": "quanglh268@gmail.com" + }, + "record": { + "CNAME": "hquang.github.io" + } } diff --git a/domains/hoojinguyen.json b/domains/hoojinguyen.json new file mode 100644 index 000000000..a1d2c8ded --- /dev/null +++ b/domains/hoojinguyen.json @@ -0,0 +1,11 @@ +{ + "description": "hoojinguyen.is-a.dev : This is my personal notebook", + "repo": "https://github.com/hoojinguyen/portfolio-by-ai", + "owner": { + "username": "hoojinguyen", + "email": "vn.hoinv98@gmail.com" + }, + "record": { + "URL": "https://hooji-nguyen.vercel.app/" + } +} diff --git a/domains/hungthai.json b/domains/hungthai.json index 895a9e4a6..c28594939 100644 --- a/domains/hungthai.json +++ b/domains/hungthai.json @@ -8,4 +8,4 @@ "record": { "CNAME": "hungthai1401.github.io" } -} \ No newline at end of file +} diff --git a/domains/huntroid.json b/domains/huntroid.json index a8726b01f..9065b0a7c 100644 --- a/domains/huntroid.json +++ b/domains/huntroid.json @@ -4,6 +4,17 @@ "email": "srimath8@gmail.com" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/huu-hoang.json b/domains/huu-hoang.json index 77dec9839..b1df9317d 100644 --- a/domains/huu-hoang.json +++ b/domains/huu-hoang.json @@ -5,8 +5,6 @@ "username": "Mirai3103" }, "record": { - "A": [ - "103.82.194.100" - ] + "A": ["103.82.194.100"] } } diff --git a/domains/iamdhakrey.json b/domains/iamdhakrey.json index a9d55f97e..308119b65 100644 --- a/domains/iamdhakrey.json +++ b/domains/iamdhakrey.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "iamdhakrey", - "email": "dhakreyhrithik@gmail.com" - }, - "record": { - "URL": "https://iamdhakrey.dev" - } - } \ No newline at end of file + "owner": { + "username": "iamdhakrey", + "email": "dhakreyhrithik@gmail.com" + }, + "record": { + "URL": "https://iamdhakrey.dev" + } +} diff --git a/domains/iamkevinhuang.json b/domains/iamkevinhuang.json new file mode 100644 index 000000000..aa72ec809 --- /dev/null +++ b/domains/iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "record": { + "CNAME": "iamkevinhuang.github.io" + } +} diff --git a/domains/idcesares.json b/domains/idcesares.json index 53cb961d0..9410601b4 100644 --- a/domains/idcesares.json +++ b/domains/idcesares.json @@ -1,11 +1,11 @@ { - "description": "Isaac D'Césares personal website", - "repo": "https://github.com/idcesares", - "owner": { - "username": "idcesares", - "email": "isaac.dcesares@gmail.com" - }, - "record": { - "URL": "https://dcesares.dev" - } + "description": "Isaac D'Césares personal website", + "repo": "https://github.com/idcesares", + "owner": { + "username": "idcesares", + "email": "isaac.dcesares@gmail.com" + }, + "record": { + "URL": "https://dcesares.dev" + } } diff --git a/domains/idriss.json b/domains/idriss.json index 58db049ff..076dfeac9 100644 --- a/domains/idriss.json +++ b/domains/idriss.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "AstroDriss", - "email": "drisspennywise@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "AstroDriss", + "email": "drisspennywise@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/imm0nv1nhtv.json b/domains/imm0nv1nhtv.json index 967b65be3..c0a6a8d49 100644 --- a/domains/imm0nv1nhtv.json +++ b/domains/imm0nv1nhtv.json @@ -4,6 +4,6 @@ "email": "windows10phamvinh+github@gmail.com" }, "record": { - "NS":["alberto.ns.cloudflare.com", "rosemary.ns.cloudflare.com"] + "NS": ["alberto.ns.cloudflare.com", "rosemary.ns.cloudflare.com"] } } diff --git a/domains/imtiazepu.json b/domains/imtiazepu.json new file mode 100644 index 000000000..8c0f407f1 --- /dev/null +++ b/domains/imtiazepu.json @@ -0,0 +1,10 @@ +{ + "description": "Parsonal website for Imtiaz Epu", + "owner": { + "username": "imtiazepu", + "email": "info@imtiazepu.com" + }, + "record": { + "URL": "https://imtiazepu.com" + } +} diff --git a/domains/imxitiz.json b/domains/imxitiz.json index b9838c5bc..73bc0bbcc 100644 --- a/domains/imxitiz.json +++ b/domains/imxitiz.json @@ -1,9 +1,9 @@ { - "description": "imxitiz.is-a.dev", - "owner": { - "username": "imxitiz" - }, - "record": { - "CNAME": "imxitiz.github.io" - } + "description": "imxitiz.is-a.dev", + "owner": { + "username": "imxitiz" + }, + "record": { + "CNAME": "imxitiz.github.io" + } } diff --git a/domains/inputly.json b/domains/inputly.json index b2685635a..db5f3f7c2 100644 --- a/domains/inputly.json +++ b/domains/inputly.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NateNear", - "email": "matternate21@gmail.com" - }, - "record": { - "CNAME": "inputly.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "record": { + "CNAME": "inputly.vercel.app" + } +} diff --git a/domains/is-a-dev.devmatei.json b/domains/is-a-dev.devmatei.json index e7aef920e..4b150d5ab 100644 --- a/domains/is-a-dev.devmatei.json +++ b/domains/is-a-dev.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/isaacrobert33.json b/domains/isaacrobert33.json index 53d087fb0..119ce98f3 100644 --- a/domains/isaacrobert33.json +++ b/domains/isaacrobert33.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "isaacrobert33", - "email": "isaacrobertoluwaseun@gmail.com" - }, - "record": { - "CNAME": "isaacrobert-is-adev.vercel.app" - } + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "record": { + "CNAME": "isaacrobert-is-adev.vercel.app" + } } diff --git a/domains/islandboy.json b/domains/islandboy.json index 1ff10640a..592dfed3d 100644 --- a/domains/islandboy.json +++ b/domains/islandboy.json @@ -6,9 +6,6 @@ "email": "mifzaal.scout@gmail.com" }, "record": { - "NS": [ - "lucy.ns.cloudflare.com", - "mario.ns.cloudflare.com" - ] + "NS": ["lucy.ns.cloudflare.com", "mario.ns.cloudflare.com"] } } diff --git a/domains/israrkhan.json b/domains/israrkhan.json new file mode 100644 index 000000000..e3aa5bc6a --- /dev/null +++ b/domains/israrkhan.json @@ -0,0 +1,10 @@ +{ + "description": "israrkhan.is-a.dev.", + "owner": { + "username": "israrthedev08", + "email": "israrislive@gmail.com" + }, + "record": { + "URL": "https://guns.lol/israr08" + } +} diff --git a/domains/itsjhonalex.json b/domains/itsjhonalex.json index 395fc6a3f..1688235c0 100644 --- a/domains/itsjhonalex.json +++ b/domains/itsjhonalex.json @@ -1,11 +1,11 @@ { - "description": "itsjhonalex.is-a.dev", - "repo": "github.com/ItsJhonAlex/PortfolioDev", - "owner": { - "username": "ItsJhonAlex", - "email": "itsjhonalex@gmail.com" - }, - "record": { - "CNAME": "portfolio-dev-itsjhonalexs-projects.vercel.app" - } + "description": "itsjhonalex.is-a.dev", + "repo": "github.com/ItsJhonAlex/PortfolioDev", + "owner": { + "username": "ItsJhonAlex", + "email": "itsjhonalex@gmail.com" + }, + "record": { + "CNAME": "portfolio-dev-itsjhonalexs-projects.vercel.app" + } } diff --git a/domains/itz-rj-here.json b/domains/itz-rj-here.json index ae29b4c2f..55b773761 100644 --- a/domains/itz-rj-here.json +++ b/domains/itz-rj-here.json @@ -1,11 +1,11 @@ { - "description": "It'z RJ's Website", - "repo": "https://github.com/itz-rj-here/itz-rj-here.github.io", - "owner": { - "username": "itz-rj-here", - "email": "faiadmahmudadil@gmail.com" - }, - "record": { - "CNAME": "itz-rj-here.github.io" - } + "description": "It'z RJ's Website", + "repo": "https://github.com/itz-rj-here/itz-rj-here.github.io", + "owner": { + "username": "itz-rj-here", + "email": "faiadmahmudadil@gmail.com" + }, + "record": { + "CNAME": "itz-rj-here.github.io" + } } diff --git a/domains/ixdoggo.json b/domains/ixdoggo.json index 8dd5021b5..d72cbcc8a 100644 --- a/domains/ixdoggo.json +++ b/domains/ixdoggo.json @@ -4,6 +4,9 @@ "email": "xelxtct@gmail.com" }, "record": { - "CNAME": "ixdoggo.pages.dev" - } + "CNAME": "ixdoggo.pages.dev", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + }, + "proxied": true } diff --git a/domains/jameshartley.json b/domains/jameshartley.json index 8eaa5246d..83aae3a5e 100644 --- a/domains/jameshartley.json +++ b/domains/jameshartley.json @@ -1,11 +1,11 @@ { - "description": "Portfolio domain showcasing projects", - "repo": "https://github.com/jdbhartley/portfolio_nuro", - "owner": { - "username": "jdbhartley", - "discord": "MobiSlick#3640" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file + "description": "Portfolio domain showcasing projects", + "repo": "https://github.com/jdbhartley/portfolio_nuro", + "owner": { + "username": "jdbhartley", + "discord": "MobiSlick#3640" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jar.json b/domains/jar.json index c2ff47b78..beb93c667 100644 --- a/domains/jar.json +++ b/domains/jar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jartf", - "email": "hi@jar.tf" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/jasvindersingh.json b/domains/jasvindersingh.json index fe8dcd21a..4a0fc40c2 100644 --- a/domains/jasvindersingh.json +++ b/domains/jasvindersingh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "singhJasvinder101", - "email": "jasvindersingh3593@gmail.com" - }, - "record": { - "CNAME": "jasvinder-portfolio.netlify.app" - } + "owner": { + "username": "singhJasvinder101", + "email": "jasvindersingh3593@gmail.com" + }, + "record": { + "CNAME": "jasvinder-portfolio.netlify.app" + } } diff --git a/domains/jawad0501.json b/domains/jawad0501.json index a0cfc9d51..d3849e9da 100644 --- a/domains/jawad0501.json +++ b/domains/jawad0501.json @@ -1,11 +1,11 @@ { - "description": "jawad's personal portfolio website", - "repo": "https://github.com/Jawad0501/terminal-portfolio.git", - "owner": { - "username": "Jawad0501", - "email": "anmjawad007@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "jawad's personal portfolio website", + "repo": "https://github.com/Jawad0501/terminal-portfolio.git", + "owner": { + "username": "Jawad0501", + "email": "anmjawad007@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/jecoh.json b/domains/jecoh.json index 22f4d0cd7..bd5dd516f 100644 --- a/domains/jecoh.json +++ b/domains/jecoh.json @@ -1,11 +1,11 @@ { - "description": "For personal/portfolio use only.", - "repo": "https://github.com/jecoh12/jecoh-is-a.dev", - "owner": { - "username": "jecoh12", - "email": "jecoh12@gmail.com" - }, - "record": { - "CNAME": "jecoh12.github.io" - } + "description": "For personal/portfolio use only.", + "repo": "https://github.com/jecoh12/jecoh-is-a.dev", + "owner": { + "username": "jecoh12", + "email": "jecoh12@gmail.com" + }, + "record": { + "CNAME": "jecoh12.github.io" + } } diff --git a/domains/jeielmiranda.json b/domains/jeielmiranda.json index ab21b4c1b..1f38f558f 100644 --- a/domains/jeielmiranda.json +++ b/domains/jeielmiranda.json @@ -1,11 +1,11 @@ { - "description": "Personal subdomain", - "repo": "https://github.com/Jetrom17/jetrom17.github.io", - "owner": { - "username": "Jetrom17", - "email": "jeiel@duck.com" - }, - "record": { - "CNAME": "jetrom17.github.io" - } + "description": "Personal subdomain", + "repo": "https://github.com/Jetrom17/jetrom17.github.io", + "owner": { + "username": "Jetrom17", + "email": "jeiel@duck.com" + }, + "record": { + "CNAME": "jetrom17.github.io" + } } diff --git a/domains/jg.json b/domains/jg.json index b8f48c746..7352aa6a7 100644 --- a/domains/jg.json +++ b/domains/jg.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio site for Jonathan Geva (short for jonathangeva)", - "repo": "https://github.com/jonathan-geva/Portfolio", - "owner": { - "username": "jonathan-geva", - "discord": "jonilul21" - }, - "record": { - "CNAME": "jonathangeva.ch" - } -} \ No newline at end of file + "description": "Personal portfolio site for Jonathan Geva (short for jonathangeva)", + "repo": "https://github.com/jonathan-geva/Portfolio", + "owner": { + "username": "jonathan-geva", + "discord": "jonilul21" + }, + "record": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jmc.json b/domains/jmc.json index b938c448e..7401c1150 100644 --- a/domains/jmc.json +++ b/domains/jmc.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "josem430", - "email": "jmc300499@gmail.com", - "discord": "josem430" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/jmmille.json b/domains/jmmille.json index 4eca0d1b6..2b21c910b 100644 --- a/domains/jmmille.json +++ b/domains/jmmille.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jmmille", - "email": "jmmille@gmail.com" - }, - "record": { - "URL": "https://github.com/jmmille" - } + "owner": { + "username": "jmmille", + "email": "jmmille@gmail.com" + }, + "record": { + "URL": "https://github.com/jmmille" + } } diff --git a/domains/jonathangeva.json b/domains/jonathangeva.json index 45a318066..244af87e6 100644 --- a/domains/jonathangeva.json +++ b/domains/jonathangeva.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio site for Jonathan Geva", - "repo": "https://github.com/jonathan-geva/Portfolio", - "owner": { - "username": "jonathan-geva", - "discord": "jonilul21" - }, - "record": { - "CNAME": "jonathangeva.ch" - } -} \ No newline at end of file + "description": "Personal portfolio site for Jonathan Geva", + "repo": "https://github.com/jonathan-geva/Portfolio", + "owner": { + "username": "jonathan-geva", + "discord": "jonilul21" + }, + "record": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jonathanmoya.json b/domains/jonathanmoya.json index 055cfc7a8..4a96736b8 100644 --- a/domains/jonathanmoya.json +++ b/domains/jonathanmoya.json @@ -1,11 +1,11 @@ { - "description": "Subdominio personal para portfolio web", - "repo": "https://github.com/srgrover/portfolio", - "owner": { - "username": "srgrover", - "email": "jthmoya.webdev@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "Subdominio personal para portfolio web", + "repo": "https://github.com/srgrover/portfolio", + "owner": { + "username": "srgrover", + "email": "jthmoya.webdev@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/josh.json b/domains/josh.json index cd8aa496e..3277f997d 100644 --- a/domains/josh.json +++ b/domains/josh.json @@ -3,7 +3,7 @@ "username": "joshhargreaves", "email": "me@joshhargreaves.co.uk" }, - "record": { - "URL": "https://joshhargreaves.co.uk" - } + "record": { + "URL": "https://joshhargreaves.co.uk" + } } diff --git a/domains/juanpabloleonmaya.json b/domains/juanpabloleonmaya.json index fcd0b2390..d49b9944a 100644 --- a/domains/juanpabloleonmaya.json +++ b/domains/juanpabloleonmaya.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "juanleon8581", - "email": "juanleon8581@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } -} \ No newline at end of file +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/juantito.json b/domains/juantito.json index 779db68dd..2c55e7375 100644 --- a/domains/juantito.json +++ b/domains/juantito.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "JuanTito", - "email": "JuanTito@gio.in" - }, - "record": { - "URL": "https://github.com/JuanGTito" - } + "owner": { + "username": "JuanTito", + "email": "JuanTito@gio.in" + }, + "record": { + "URL": "https://github.com/JuanGTito" + } } diff --git a/domains/jubal.json b/domains/jubal.json index 076d28baa..802ed34b9 100644 --- a/domains/jubal.json +++ b/domains/jubal.json @@ -1,11 +1,11 @@ { - "description": "Jubal Slone's website", - "repo": "https://github.com/jubalslone/jubalslone.github.io", - "owner": { - "username": "jubalslone", - "email": "jubal.slone@gmail.com" - }, - "record": { - "CNAME": "jubalslone.github.io" - } + "description": "Jubal Slone's website", + "repo": "https://github.com/jubalslone/jubalslone.github.io", + "owner": { + "username": "jubalslone", + "email": "jubal.slone@gmail.com" + }, + "record": { + "CNAME": "jubalslone.github.io" + } } diff --git a/domains/justdeveloper.json b/domains/justdeveloper.json index 3e7b887bd..799ea5b03 100644 --- a/domains/justdeveloper.json +++ b/domains/justdeveloper.json @@ -13,10 +13,7 @@ "185.199.110.153", "185.199.111.153" ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": [ "google-site-verification=qBaFslC7xe6gcHiolYEJ32HjpJVk-ZOMbRpu_1zkm_s", "yandex-verification: 10cec93159ddc69f", diff --git a/domains/juststudio.json b/domains/juststudio.json index bf7bf26bb..bb8add587 100644 --- a/domains/juststudio.json +++ b/domains/juststudio.json @@ -13,11 +13,7 @@ "185.199.110.153", "185.199.111.153" ], - "MX": [ - "mx.zoho.eu", - "mx2.zoho.eu", - "mx3.zoho.eu" - ], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], "TXT": [ "v=spf1 include:zohomail.eu ~all", "google-site-verification=qUvCromdvfxnS6LXzcxcha5rEsHUzBxl9nZH6sT3Dk4", diff --git a/domains/jwe0.json b/domains/jwe0.json index 22e259b58..a7bef65b3 100644 --- a/domains/jwe0.json +++ b/domains/jwe0.json @@ -2,9 +2,9 @@ "description": "Forwarding", "owner": { "email": "900qxecf7@mozmail.com", - "username" : "jwe0" + "username": "jwe0" }, "record": { - "CNAME" : "jwe0.xyz" + "CNAME": "jwe0.xyz" } } diff --git a/domains/kareem.json b/domains/kareem.json index 760ed1e29..fb6592863 100644 --- a/domains/kareem.json +++ b/domains/kareem.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kareem-m", - "email": "kareemmoh1911@gmail.com" - }, - "record": { - "CNAME": "kareemelramady.vercel.app" - } + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "record": { + "CNAME": "kareemelramady.vercel.app" + } } diff --git a/domains/karthikeyanj.json b/domains/karthikeyanj.json index 7a3d87558..b4889bc1f 100644 --- a/domains/karthikeyanj.json +++ b/domains/karthikeyanj.json @@ -1,11 +1,11 @@ { - "description": "Portfolio of karthikeyan J", - "repo": "https://github.com/karthik1915/my-vue-portfolio", - "owner": { - "username": "karthik1915", - "email": "karthikeyanj1915@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "Portfolio of karthikeyan J", + "repo": "https://github.com/karthik1915/my-vue-portfolio", + "owner": { + "username": "karthik1915", + "email": "karthikeyanj1915@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/katumbapaul.json b/domains/katumbapaul.json index 33aab8e61..f9ad1810b 100644 --- a/domains/katumbapaul.json +++ b/domains/katumbapaul.json @@ -1,10 +1,9 @@ -{ - "owner": { - "username": "kpaool", - "email": "jonathapkatumba@gmail.com" - }, - "record": { - "CNAME": "katumbapaul.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "kpaool", + "email": "jonathapkatumba@gmail.com" + }, + "record": { + "CNAME": "katumbapaul.com" + } +} diff --git a/domains/kelly.json b/domains/kelly.json index b6edc2131..b68491bbc 100644 --- a/domains/kelly.json +++ b/domains/kelly.json @@ -1,11 +1,11 @@ { - "description": "Kelly Lawrence's personal website.", - "owner": { - "email": "kelly@kellylawrence.ca", - "username": "kellylawrence" - }, - "record": { - "CNAME": "kellylawrence.github.io" - }, - "repo": "https://github.com/kellylawrence/kellylawrence.github.io" + "description": "Kelly Lawrence's personal website.", + "owner": { + "email": "kelly@kellylawrence.ca", + "username": "kellylawrence" + }, + "record": { + "CNAME": "kellylawrence.github.io" + }, + "repo": "https://github.com/kellylawrence/kellylawrence.github.io" } diff --git a/domains/ken-kuro.json b/domains/ken-kuro.json index f40d7e31d..b5bf0c5bd 100644 --- a/domains/ken-kuro.json +++ b/domains/ken-kuro.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ken-kuro", - "linkedin": "hieuhm2610" - }, - "record": { - "CNAME": "kuro-querencia.vercel.app" - } + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "record": { + "CNAME": "kuro-querencia.vercel.app" + } } diff --git a/domains/kennymolina.json b/domains/kennymolina.json index 4f15f284c..89f70f0e2 100644 --- a/domains/kennymolina.json +++ b/domains/kennymolina.json @@ -1,6 +1,6 @@ { "owner": { - "username": "xXMolinaXx", + "username": "xXMolinaXx", "email": "kjmolina@live.com" }, "record": { diff --git a/domains/kevinmolina.json b/domains/kevinmolina.json index 5d1d0baa9..3e11f77cc 100644 --- a/domains/kevinmolina.json +++ b/domains/kevinmolina.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kevinmolinadev", - "email": "kevinmolina.dev@gmail.com" - }, - "record": { - "CNAME": "kevinmolinadev.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "record": { + "CNAME": "kevinmolinadev.vercel.app" + } +} diff --git a/domains/kilamieaz.json b/domains/kilamieaz.json index badbb6876..661af786e 100644 --- a/domains/kilamieaz.json +++ b/domains/kilamieaz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kilamieaz", - "email": "im.sultaan05@gmail.com" - }, - "record": { - "CNAME": "kilamieaz.vercel.app" - } + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "record": { + "CNAME": "kilamieaz.vercel.app" + } } diff --git a/domains/kitohemat.iamkevinhuang.json b/domains/kitohemat.iamkevinhuang.json new file mode 100644 index 000000000..24e618a76 --- /dev/null +++ b/domains/kitohemat.iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "record": { + "A": ["194.233.91.185"] + } +} diff --git a/domains/konnn04.json b/domains/konnn04.json index 97a66b43e..fc1708e61 100644 --- a/domains/konnn04.json +++ b/domains/konnn04.json @@ -1,11 +1,11 @@ { - "description": "Hello World!", - "repo": "https://github.com/konnn04/konnn04.github.io", - "owner": { - "username": "konnn04", - "email": "trieukon1011@gmail.com" - }, - "record": { - "CNAME": "konnn04.github.io" - } + "description": "Hello World!", + "repo": "https://github.com/konnn04/konnn04.github.io", + "owner": { + "username": "konnn04", + "email": "trieukon1011@gmail.com" + }, + "record": { + "CNAME": "konnn04.github.io" + } } diff --git a/domains/kunalpurandare.json b/domains/kunalpurandare.json index 65b0486e4..1207b3f70 100644 --- a/domains/kunalpurandare.json +++ b/domains/kunalpurandare.json @@ -1,10 +1,10 @@ { - "repo":"https://kunalpurandare.github.io/portfolio", - "owner": { - "username": "kunalpurandare", - "email": "kunalpurandare1703@gmail.com" - }, - "record": { - "CNAME": "kunalpurandare.github.io" - } + "repo": "https://kunalpurandare.github.io/portfolio", + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "record": { + "CNAME": "kunalpurandare.github.io" + } } diff --git a/domains/kz.json b/domains/kz.json index 2bc45d58e..18b52cfa4 100644 --- a/domains/kz.json +++ b/domains/kz.json @@ -5,6 +5,6 @@ "discord": "622795838032314388" }, "record": { - "MX": ["mx1.improvmx.com"] + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/lakshisherediscord.json b/domains/lakshisherediscord.json new file mode 100644 index 000000000..7a03c091c --- /dev/null +++ b/domains/lakshisherediscord.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/layhout.json b/domains/layhout.json index c36c03fa1..185abbfcd 100644 --- a/domains/layhout.json +++ b/domains/layhout.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "layhout", - "email": "layhoutworkmail@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/leon.json b/domains/leon.json new file mode 100644 index 000000000..4f3fbf417 --- /dev/null +++ b/domains/leon.json @@ -0,0 +1,11 @@ +{ + "description": "Leon is a dev!", + "owner": { + "username": "itsLeonB", + "email": "ellionblessan@gmail.com" + }, + "record": { + "CNAME": "itsLeonB.github.io" + }, + "proxied": true +} diff --git a/domains/link-to.lver.json b/domains/link-to.lver.json index c7b378dda..93c4db3e7 100644 --- a/domains/link-to.lver.json +++ b/domains/link-to.lver.json @@ -1,11 +1,11 @@ -{ - "github": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, - "record": { + }, + "record": { "A": ["52.72.49.79"] - }, - "proxied": true -} \ No newline at end of file + }, + "proxied": true +} diff --git a/domains/lit.lver.json b/domains/lit.lver.json index e707644de..7a2497f8e 100644 --- a/domains/lit.lver.json +++ b/domains/lit.lver.json @@ -1,16 +1,16 @@ -{ - "github": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, - "record": { - "URL": "https://linktr.ee/lverboy" - }, - "redirect_config": { - "custom_paths": { - "/home": "https://lver.is-a.dev/" - }, - "redirect_paths": true + }, + "record": { + "URL": "https://linktr.ee/lverboy" + }, + "redirect_config": { + "custom_paths": { + "/home": "https://lver.is-a.dev/" + }, + "redirect_paths": true } } diff --git a/domains/locionic.json b/domains/locionic.json index 7b8b7b50f..1271c4a37 100644 --- a/domains/locionic.json +++ b/domains/locionic.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "locionic", - "email": "noone000a@gmail.com" - }, - "record": { - "CNAME": "portfolio-blog-locionic.vercel.app" - } + "owner": { + "username": "locionic", + "email": "noone000a@gmail.com" + }, + "record": { + "CNAME": "portfolio-blog-locionic.vercel.app" + } } diff --git a/domains/lololand.json b/domains/lololand.json index aeb4627b9..642812000 100644 --- a/domains/lololand.json +++ b/domains/lololand.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pessonnier", - "email": "ihdpsidt.hpsi@gmail.com" - }, - "record": { - "URL": "https://pessonnier.github.io/doc/" - } + "owner": { + "username": "pessonnier", + "email": "ihdpsidt.hpsi@gmail.com" + }, + "record": { + "URL": "https://pessonnier.github.io/doc/" + } } diff --git a/domains/luanvu.json b/domains/luanvu.json index 17035e38e..7ab86fd0e 100644 --- a/domains/luanvu.json +++ b/domains/luanvu.json @@ -1,12 +1,12 @@ -{ - "description": "My portfolio website", - "repo": "https://github.com/zthanhluan/luan.is-a.dev", - "owner": { - "username": "zthanhluan", - "email": "dientu078@gmail.com" - }, - "record": { - "CNAME": "luanvu.betaenglish.com.vn" - }, - "proxied": false -} \ No newline at end of file +{ + "description": "My portfolio website", + "repo": "https://github.com/zthanhluan/luan.is-a.dev", + "owner": { + "username": "zthanhluan", + "email": "dientu078@gmail.com" + }, + "record": { + "CNAME": "luanvu.betaenglish.com.vn" + }, + "proxied": false +} diff --git a/domains/ludolua.json b/domains/ludolua.json index ed49f49cf..b298132bd 100644 --- a/domains/ludolua.json +++ b/domains/ludolua.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "leduardoaraujo", - "email": "luizeduardo55062@gmail.com" - }, - "record": { - "CNAME": "leduardoaraujo.github.io" - } + "owner": { + "username": "leduardoaraujo", + "email": "luizeduardo55062@gmail.com" + }, + "record": { + "CNAME": "leduardoaraujo.github.io" + } } diff --git a/domains/luiz.json b/domains/luiz.json index acfa30b90..0de948317 100644 --- a/domains/luiz.json +++ b/domains/luiz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "luk4h", - "email": "luizmarcondes@lgvm.dev" - }, - "record": { - "CNAME": "lgvm.dev" - } + "owner": { + "username": "luk4h", + "email": "luizmarcondes@lgvm.dev" + }, + "record": { + "CNAME": "lgvm.dev" + } } diff --git a/domains/lumi.json b/domains/lumi.json index c98b1cb19..7b8bd0174 100644 --- a/domains/lumi.json +++ b/domains/lumi.json @@ -1,6 +1,6 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "discord": "563697359423406082" }, "record": { diff --git a/domains/luvtoxic.json b/domains/luvtoxic.json index 65029ed5f..ff4b58d9d 100644 --- a/domains/luvtoxic.json +++ b/domains/luvtoxic.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "luvtoxic", - "email": "ammarbags2023@gmail.com" - }, - "record": { - "CNAME": "new-portfolio-sigma-indol.vercel.app" - } -} +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "record": { + "CNAME": "new-portfolio-sigma-indol.vercel.app" + } +} diff --git a/domains/lver-rocks.lver.json b/domains/lver-rocks.lver.json index c6816fddd..d5565eb14 100644 --- a/domains/lver-rocks.lver.json +++ b/domains/lver-rocks.lver.json @@ -1,21 +1,21 @@ -{ - "github": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, - "record": { - "URL": "https://lver-rocks.pages.dev/" - }, - "redirect_config": { - "custom_paths": { + }, + "record": { + "URL": "https://lver-rocks.pages.dev/" + }, + "redirect_config": { + "custom_paths": { "/home": "https://lver.is-a.dev/", "/host": "https://pages.dev/", "/dir": "https://github.com/is-a-dev/register", "/iad": "https://is-a.dev/", "/proxy": "https://developers.cloudflare.com/dns/proxy-status/", "/contact": "https://contact-lver.pages.dev" - }, - "redirect_paths": true + }, + "redirect_paths": true } -} +} diff --git a/domains/lver.json b/domains/lver.json index 4adc422c0..b381fae98 100644 --- a/domains/lver.json +++ b/domains/lver.json @@ -1,19 +1,19 @@ -{ - "repo": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, - "record": { - "URL": "https://lverz.glitch.me/" - }, - "redirect_config": { - "custom_paths": { - "/github": "https://github.com/lverx", - "/biz": "https://github.com/lverz", - "/contact": "https://contact-lver.pages.dev/", + }, + "record": { + "URL": "https://lverz.glitch.me/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lverx", + "/biz": "https://github.com/lverz", + "/contact": "https://contact-lver.pages.dev/", "/site": "https://lver.link" - }, - "redirect_paths": true + }, + "redirect_paths": true } -} +} diff --git a/domains/lyaxsh.json b/domains/lyaxsh.json index 7c4c61b87..f138821cf 100644 --- a/domains/lyaxsh.json +++ b/domains/lyaxsh.json @@ -1,11 +1,11 @@ { - "description": "Simple portfolio website for lyaxsh", - "repo": "https://github.com/lyaxsh/lyaxsh.github.io", - "owner": { - "username": "lyaxsh", - "email": "lakshnahar.forwork@gmail.com" - }, - "record": { - "CNAME": "lyaxsh.github.io" - } + "description": "Simple portfolio website for lyaxsh", + "repo": "https://github.com/lyaxsh/lyaxsh.github.io", + "owner": { + "username": "lyaxsh", + "email": "lakshnahar.forwork@gmail.com" + }, + "record": { + "CNAME": "lyaxsh.github.io" + } } diff --git a/domains/lycoris.json b/domains/lycoris.json index 00e7fb281..8fa432374 100644 --- a/domains/lycoris.json +++ b/domains/lycoris.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lycorissss", - "email": "beelzebub5758@gmail.com" - }, - "record": { - "CNAME": "septyo-adi-dwi-putra.vercel.app" - } + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "record": { + "CNAME": "septyo-adi-dwi-putra.vercel.app" + } } diff --git a/domains/mahmoud-makady.json b/domains/mahmoud-makady.json index 46eff1630..f72f26ac4 100644 --- a/domains/mahmoud-makady.json +++ b/domains/mahmoud-makady.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mahmoud-Makady", - "email": "m.makady19@gmail.com" - }, - "record": { - "CNAME": "mahmoud-makady.netlify.app" - } + "owner": { + "username": "Mahmoud-Makady", + "email": "m.makady19@gmail.com" + }, + "record": { + "CNAME": "mahmoud-makady.netlify.app" + } } diff --git a/domains/mail.lver.json b/domains/mail.lver.json index 0b110e3c6..01af9da15 100644 --- a/domains/mail.lver.json +++ b/domains/mail.lver.json @@ -1,18 +1,14 @@ -{ - "repo": "https://github.com/lverx", - "owner": { - "username": "lverx", +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", "email": "profoundlvr@gmail.com" - }, + }, "record": { "TXT": [ "zoho-verification=zb43169475.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all" ], - "MX": [ - "mx.zoho.com", - "mx2.zoho.com", - "mx3.zoho.com" - ] -} + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] + } } diff --git a/domains/main.devmatei.json b/domains/main.devmatei.json index 95adeb76e..b2447dc4b 100644 --- a/domains/main.devmatei.json +++ b/domains/main.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/manhnguyen18.json b/domains/manhnguyen18.json new file mode 100644 index 000000000..44ffe2526 --- /dev/null +++ b/domains/manhnguyen18.json @@ -0,0 +1,11 @@ +{ + "description": "manhnguyen18 portfolio", + "repo": "https://github.com/nguyenmanh18", + "owner": { + "username": "nguyenmanh18", + "email": "nguyenmanh1891997@gmail.com" + }, + "record": { + "CNAME": "manh-nguyen-blogs.vercel.app" + } +} diff --git a/domains/manoj.json b/domains/manoj.json index 149c49b63..ddfb6adbd 100644 --- a/domains/manoj.json +++ b/domains/manoj.json @@ -1,12 +1,11 @@ { - "description": "Manoj's portfolio website", - "repo": "https://github.com/ManojINaik/portfolio", - "owner": { - "username": "ManojINaik", - "email": "naik97059@gmail.com" - }, - "record": { - "CNAME": "manojinaik.github.io" - } + "description": "Manoj's portfolio website", + "repo": "https://github.com/ManojINaik/portfolio", + "owner": { + "username": "ManojINaik", + "email": "naik97059@gmail.com" + }, + "record": { + "CNAME": "manojinaik.github.io" } - \ No newline at end of file +} diff --git a/domains/marco.voegeli.json b/domains/marco.voegeli.json deleted file mode 100644 index c92231ffe..000000000 --- a/domains/marco.voegeli.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Marco-Voegeli", - "email": "voegelijjm@gmail.com" - }, - "record": { - "CNAME": "marco-voegeli.github.io" - } -} diff --git a/domains/marjuz.json b/domains/marjuz.json index f678aa328..6c9415def 100644 --- a/domains/marjuz.json +++ b/domains/marjuz.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "marjuzdev" - }, - "record": { - "CNAME": "marjuz.netlify.app" - } + "owner": { + "username": "marjuzdev" + }, + "record": { + "CNAME": "marjuz.netlify.app" + } } diff --git a/domains/marlon.json b/domains/marlon.json index e63997d25..6d5a8ae76 100644 --- a/domains/marlon.json +++ b/domains/marlon.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "MarlonDevs", - "email": "marlonmogollon13@gmail.com" - }, - "record": { - "CNAME": "marlondevs.github.io" - } + "owner": { + "username": "MarlonDevs", + "email": "marlonmogollon13@gmail.com" + }, + "record": { + "CNAME": "marlondevs.github.io" + } } diff --git a/domains/marlonbaatjes.json b/domains/marlonbaatjes.json index 8584f40ae..b364129b9 100644 --- a/domains/marlonbaatjes.json +++ b/domains/marlonbaatjes.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "mdesignscode", - "email": "marlonbaatjes62@gmail.com" - }, - "record": { - "CNAME": "marlonbaatjes.vercel.app" - } + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "record": { + "CNAME": "marlonbaatjes.vercel.app" + } } - diff --git a/domains/marten-mrfc.json b/domains/marten-mrfc.json index b5d2c9ae3..deb6b4787 100644 --- a/domains/marten-mrfc.json +++ b/domains/marten-mrfc.json @@ -1,11 +1,11 @@ { - "description": "For my portfolio site", - "repo": "https://github.com/Marten-Mrfc/Marten-Mrfc", - "owner": { - "username": "Marten-Mrfc", - "email": "martensog@gmail.com" - }, - "record": { - "CNAME": "marten-mrfc.github.io" - } + "description": "For my portfolio site", + "repo": "https://github.com/Marten-Mrfc/Marten-Mrfc", + "owner": { + "username": "Marten-Mrfc", + "email": "martensog@gmail.com" + }, + "record": { + "CNAME": "marten-mrfc.github.io" + } } diff --git a/domains/matei.json b/domains/matei.json index 95adeb76e..b2447dc4b 100644 --- a/domains/matei.json +++ b/domains/matei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/mateogariboglio.json b/domains/mateogariboglio.json index 3b73f89dc..30d20d95b 100644 --- a/domains/mateogariboglio.json +++ b/domains/mateogariboglio.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mateo-404", - "discord": "gary_______" - }, - "record": { - "CNAME": "portfolio-mateo-404s-projects.vercel.app" - } + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "record": { + "CNAME": "portfolio-mateo-404s-projects.vercel.app" + } } diff --git a/domains/mateusz.json b/domains/mateusz.json index 260df4beb..f7047966b 100644 --- a/domains/mateusz.json +++ b/domains/mateusz.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Pand3moniuMx3" - }, - "record": { - "CNAME": "mateuszmirecki.netlify.app" - } + "owner": { + "username": "Pand3moniuMx3" + }, + "record": { + "CNAME": "mateuszmirecki.netlify.app" + } } diff --git a/domains/mattew.json b/domains/mattew.json index 95adeb76e..b2447dc4b 100644 --- a/domains/mattew.json +++ b/domains/mattew.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/mayuresh.json b/domains/mayuresh.json index 376e8374c..90a6ac7f5 100644 --- a/domains/mayuresh.json +++ b/domains/mayuresh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mayur1377", - "email": "mayuresh1377@gmail.com" - }, - "record": { - "CNAME": "iammayur.vercel.app" - } + "owner": { + "username": "mayur1377", + "email": "mayuresh1377@gmail.com" + }, + "record": { + "CNAME": "iammayur.vercel.app" + } } diff --git a/domains/mcalec.json b/domains/mcalec.json index cd7664694..70d5716a3 100644 --- a/domains/mcalec.json +++ b/domains/mcalec.json @@ -1,12 +1,12 @@ { - "description": "mcalec.is-a.dev", - "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", - "owner": { - "username": "mcalec-dev", - "email": "hello@mcalec.dev", - "discord": "mcalec" - }, - "record": { - "CNAME": "mcalec.dev" - } + "description": "mcalec.is-a.dev", + "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", + "owner": { + "username": "mcalec-dev", + "email": "hello@mcalec.dev", + "discord": "mcalec" + }, + "record": { + "CNAME": "mcalec.dev" + } } diff --git a/domains/mehrshad.json b/domains/mehrshad.json index 3649fe4d8..ea89beb26 100644 --- a/domains/mehrshad.json +++ b/domains/mehrshad.json @@ -1,11 +1,11 @@ { - "description": "Overview And Introduction of Owner's Open Source Projects", - "repo": "https://github.com/SaintScraTchY/SaintScraTchY.github.io", - "owner": { - "username": "SaintScraTchY", - "email": "mehrshad2028@gmail.com" - }, - "record": { - "CNAME": "saintscratchy.github.io" - } + "description": "Overview And Introduction of Owner's Open Source Projects", + "repo": "https://github.com/SaintScraTchY/SaintScraTchY.github.io", + "owner": { + "username": "SaintScraTchY", + "email": "mehrshad2028@gmail.com" + }, + "record": { + "CNAME": "saintscratchy.github.io" + } } diff --git a/domains/meme.devmatei.json b/domains/meme.devmatei.json index e7aef920e..4b150d5ab 100644 --- a/domains/meme.devmatei.json +++ b/domains/meme.devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/menn.json b/domains/menn.json index 87524b527..cef07f018 100644 --- a/domains/menn.json +++ b/domains/menn.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "hedgehog-menn", - "email": "kp.thananchai@gmail.com", - "discord": "26623men" - }, - "record": { - "CNAME": "hedgehog-menn.vercel.app" - } + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "record": { + "CNAME": "hedgehog-menn.vercel.app" + } } diff --git a/domains/mertdemir.json b/domains/mertdemir.json index ca349c00b..3108178a2 100644 --- a/domains/mertdemir.json +++ b/domains/mertdemir.json @@ -1,12 +1,11 @@ { - "description": "Mert Demir CV", - "repo": "https://github.com/mertdemir0/mertdemir0.github.io", - "owner": { - "username": "mertdemir0", - "email" : "mertdemir@pec.it" - - }, - "record": { - "CNAME": "mertdemir0.github.io" - } + "description": "Mert Demir CV", + "repo": "https://github.com/mertdemir0/mertdemir0.github.io", + "owner": { + "username": "mertdemir0", + "email": "mertdemir@pec.it" + }, + "record": { + "CNAME": "mertdemir0.github.io" + } } diff --git a/domains/milaan.json b/domains/milaan.json index a3f7b017c..e0e4bec57 100644 --- a/domains/milaan.json +++ b/domains/milaan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "milandangol", - "email": "milandangol57@gmail.com" - }, - "record": { - "CNAME": "milaan.pages.dev" - } + "owner": { + "username": "milandangol", + "email": "milandangol57@gmail.com" + }, + "record": { + "CNAME": "milaan.pages.dev" + } } diff --git a/domains/mnhtng.json b/domains/mnhtng.json new file mode 100644 index 000000000..8bc2dc9d2 --- /dev/null +++ b/domains/mnhtng.json @@ -0,0 +1,9 @@ +{ + "description": "mnhtng.is-a.dev", + "owner": { + "username": "MnhTng" + }, + "record": { + "URL": "https://mnhtng.github.io/Student-managerment" + } +} diff --git a/domains/moddatei.json b/domains/moddatei.json index 9277801f8..d220ba65c 100644 --- a/domains/moddatei.json +++ b/domains/moddatei.json @@ -1,11 +1,11 @@ { - "description" : "this is my profile / portfolio" , - "repo" : "https://github.com/moddatei/moddatei.github.io" , - "owner" : { - "username" : "moddatei" , - "email" : "moddatei@proton.me" + "description": "this is my profile / portfolio", + "repo": "https://github.com/moddatei/moddatei.github.io", + "owner": { + "username": "moddatei", + "email": "moddatei@proton.me" }, - "record" : { - "CNAME" : "moddatei.github.io" + "record": { + "CNAME": "moddatei.github.io" } } diff --git a/domains/mohammedobaid.json b/domains/mohammedobaid.json index a01a57d5a..1849186cf 100644 --- a/domains/mohammedobaid.json +++ b/domains/mohammedobaid.json @@ -1,10 +1,10 @@ { - "description": "My name is mohammed obaid. I am a software engineer", - "owner": { - "username": "mdobaid311", - "email": "mdobaid311@gmail.com" - }, - "record": { - "CNAME": "mohammedobaid.vercel.app" - } + "description": "My name is mohammed obaid. I am a software engineer", + "owner": { + "username": "mdobaid311", + "email": "mdobaid311@gmail.com" + }, + "record": { + "CNAME": "mohammedobaid.vercel.app" + } } diff --git a/domains/mohammedwisam.json b/domains/mohammedwisam.json index a25cce59a..fac907868 100644 --- a/domains/mohammedwisam.json +++ b/domains/mohammedwisam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "redcodemohammed", - "email": "redcodemohammed@gmail.com" - }, - "record": { - "CNAME": "mohammed-wisam.pages.dev" - } + "owner": { + "username": "redcodemohammed", + "email": "redcodemohammed@gmail.com" + }, + "record": { + "CNAME": "mohammed-wisam.pages.dev" + } } diff --git a/domains/mohsen.json b/domains/mohsen.json index 835aa5627..3c797b92a 100644 --- a/domains/mohsen.json +++ b/domains/mohsen.json @@ -1,10 +1,10 @@ { - "description": "Portfolio website for mohsenansari.com", - "owner": { - "username": "mohsenari", - "email": "mansari387@gmail.com" - }, - "record": { - "CNAME": "mohsenansari.com" - } + "description": "Portfolio website for mohsenansari.com", + "owner": { + "username": "mohsenari", + "email": "mansari387@gmail.com" + }, + "record": { + "CNAME": "mohsenansari.com" + } } diff --git a/domains/monosen.json b/domains/monosen.json index c24841fc2..2c70a9fff 100644 --- a/domains/monosen.json +++ b/domains/monosen.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Monosen", - "email": "edisonbj21@gmail.com", - "discord": "monosen" - }, - "record": { - "CNAME": "minimalist-portfolio-zeta.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "Monosen", + "email": "edisonbj21@gmail.com", + "discord": "monosen" + }, + "record": { + "CNAME": "minimalist-portfolio-zeta.vercel.app" + } +} diff --git a/domains/morzhstudio.json b/domains/morzhstudio.json index 8196ce57e..d5c2b2cc3 100644 --- a/domains/morzhstudio.json +++ b/domains/morzhstudio.json @@ -5,6 +5,17 @@ "discord": "1261855255147057220" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/mrtspeedy.json b/domains/mrtspeedy.json index c41b41107..31cf8f7eb 100644 --- a/domains/mrtspeedy.json +++ b/domains/mrtspeedy.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "mrtspeedy", - "email": "toxicspeedytv@gmail.com", - "discord": "1095502790534627348" - }, - "record": { - "CNAME": "portfolio-mrtspeedy.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "record": { + "CNAME": "portfolio-mrtspeedy.vercel.app" + } +} diff --git a/domains/mudasir.json b/domains/mudasir.json index 8ad64b0cd..28beb19b5 100644 --- a/domains/mudasir.json +++ b/domains/mudasir.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mirzamudassir", - "discord": "0xmudassir" - }, - "record": { - "CNAME": "modasir.vercel.app" - } + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "record": { + "CNAME": "modasir.vercel.app" + } } diff --git a/domains/muhammed.json b/domains/muhammed.json index d2076691b..13d51c48e 100644 --- a/domains/muhammed.json +++ b/domains/muhammed.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "MhmdFais", - "email": "mofam534@gmail.com" - }, - "record": { - "CNAME": "muhammeddev.vercel.app" - } + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "record": { + "CNAME": "muhammeddev.vercel.app" + } } diff --git a/domains/nabin.json b/domains/nabin.json index 4ccee6dd2..521057d79 100644 --- a/domains/nabin.json +++ b/domains/nabin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nabinkatwal7", - "email":"mediocampistaa@gmail.com" - }, - "record": { - "CNAME": "portfolio-v3-six-iota.vercel.app" - } + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "record": { + "CNAME": "portfolio-v3-six-iota.vercel.app" + } } diff --git a/domains/namansethi.json b/domains/namansethi.json index 4bfb8065a..3c890d681 100644 --- a/domains/namansethi.json +++ b/domains/namansethi.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "namansethi13", - "email": "heynamansethi@gmail.com" - }, - "record": { - "CNAME": "namansethi.vercel.app" - } + "owner": { + "username": "namansethi13", + "email": "heynamansethi@gmail.com" + }, + "record": { + "CNAME": "namansethi.vercel.app" } - \ No newline at end of file +} diff --git a/domains/narendradwivedi.json b/domains/narendradwivedi.json index c8151310e..356b74dd3 100644 --- a/domains/narendradwivedi.json +++ b/domains/narendradwivedi.json @@ -1,10 +1,10 @@ { - "description": "narendradwivedi.is-a.dev for portfolio and projects", - "owner": { - "username": "NarendraDwivedi", - "discord": "narendradwivedi" - }, - "record": { - "CNAME": "narendradwivedi.github.io" - } + "description": "narendradwivedi.is-a.dev for portfolio and projects", + "owner": { + "username": "NarendraDwivedi", + "discord": "narendradwivedi" + }, + "record": { + "CNAME": "narendradwivedi.github.io" + } } diff --git a/domains/nashnc.json b/domains/nashnc.json index 6fc930732..aa3277cba 100644 --- a/domains/nashnc.json +++ b/domains/nashnc.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nashnc", - "email": "nash.nc@gmail.com" - }, - "record": { - "CNAME": "nashnc.github.io" - } + "owner": { + "username": "nashnc", + "email": "nash.nc@gmail.com" + }, + "record": { + "CNAME": "nashnc.github.io" + } } diff --git a/domains/nathanospino.json b/domains/nathanospino.json index af1590821..27f28e6c4 100644 --- a/domains/nathanospino.json +++ b/domains/nathanospino.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "C4lumny", - "email": "ospinonathan@gmail.com" - }, - "record": { - "CNAME": "nathanospino.vercel.app" - } + "owner": { + "username": "C4lumny", + "email": "ospinonathan@gmail.com" + }, + "record": { + "CNAME": "nathanospino.vercel.app" + } } diff --git a/domains/nek0zyx.json b/domains/nek0zyx.json new file mode 100644 index 000000000..6bec550e3 --- /dev/null +++ b/domains/nek0zyx.json @@ -0,0 +1,11 @@ +{ + "description": "Serving my website fr fr", + "repo": "https://github.com/nek0zyx/nek0zyx.github.io", + "owner": { + "username": "nek0zyx", + "email": "nek0zyx@costmiku.space" + }, + "record": { + "CNAME": "nek0zyx.github.io" + } +} diff --git a/domains/newtun-code-cheat-sheet.json b/domains/newtun-code-cheat-sheet.json new file mode 100644 index 000000000..8ccbd1102 --- /dev/null +++ b/domains/newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "CNAME": "code-cheat-sheet.vercel.app" + } +} diff --git a/domains/newtun.json b/domains/newtun.json index 6dec23e1b..ca850627c 100644 --- a/domains/newtun.json +++ b/domains/newtun.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "VinhTin-AQUA", - "email": "tinhovinh@gmail.com" - }, - "record": { - "CNAME": "portfolio-nine-cyan-53.vercel.app" - } -} \ No newline at end of file +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "CNAME": "portfolio-nine-cyan-53.vercel.app" + } +} diff --git a/domains/ngocphung.json b/domains/ngocphung.json index 2aee1f5fe..78ab8e9b0 100644 --- a/domains/ngocphung.json +++ b/domains/ngocphung.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "nguyenngocphung2000" - }, - "record": { - "CNAME": "nguyenngocphung2000.github.io" - } + "owner": { + "username": "nguyenngocphung2000" + }, + "record": { + "CNAME": "nguyenngocphung2000.github.io" + } } diff --git a/domains/ngoutam.json b/domains/ngoutam.json new file mode 100644 index 000000000..1d3fc7144 --- /dev/null +++ b/domains/ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "record": { + "CNAME": "goutam-porfolio.vercel.app" + } +} diff --git a/domains/nguyen-phuong-nam.json b/domains/nguyen-phuong-nam.json index de6f86e58..72dfdb1ad 100644 --- a/domains/nguyen-phuong-nam.json +++ b/domains/nguyen-phuong-nam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NBlue", - "email": "nam.np194336@gmail.com" - }, - "record": { - "CNAME": "protofilo-beta.vercel.app" - } + "owner": { + "username": "NBlue", + "email": "nam.np194336@gmail.com" + }, + "record": { + "CNAME": "protofilo-beta.vercel.app" + } } diff --git a/domains/nhim411.json b/domains/nhim411.json index 32eae7f4f..c2daaa8e9 100644 --- a/domains/nhim411.json +++ b/domains/nhim411.json @@ -1,11 +1,11 @@ { - "description": "Le Hoai Nam's website", - "repo": "https://github.com/nhim411/nhim411.github.io", - "owner": { - "username": "nhim411", - "email": "lehoainam1998@gmail.com" - }, - "record": { - "CNAME": "nhim411.github.io" - } -} \ No newline at end of file + "description": "Le Hoai Nam's website", + "repo": "https://github.com/nhim411/nhim411.github.io", + "owner": { + "username": "nhim411", + "email": "lehoainam1998@gmail.com" + }, + "record": { + "CNAME": "nhim411.github.io" + } +} diff --git a/domains/nickibreeki.json b/domains/nickibreeki.json index 6ea9cac03..abc2b0673 100644 --- a/domains/nickibreeki.json +++ b/domains/nickibreeki.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "n1ckibreeki", - "email": "nickibreeki@outlook.com" - }, - "record": { - "CNAME": "nickibreeki.pages.dev" - } + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "record": { + "CNAME": "nickibreeki.pages.dev" + } } diff --git a/domains/nicolas.json b/domains/nicolas.json new file mode 100644 index 000000000..eea2d4406 --- /dev/null +++ b/domains/nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "record": { + "CNAME": "home-is-a-dev.vercel.app" + } +} diff --git a/domains/nihalkrishna.json b/domains/nihalkrishna.json index 9e651518b..cbe2b895b 100644 --- a/domains/nihalkrishna.json +++ b/domains/nihalkrishna.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nkverified", - "email": "nkverifiedyt@gmail.com" - }, - "record": { - "CNAME": "nkverified.github.io" - } + "owner": { + "username": "nkverified", + "email": "nkverifiedyt@gmail.com" + }, + "record": { + "CNAME": "nkverified.github.io" + } } diff --git a/domains/nipuni.json b/domains/nipuni.json index 2fdb6e9d5..6e72a2979 100644 --- a/domains/nipuni.json +++ b/domains/nipuni.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nipunigamage", - "email": "nipunikanishka255@gmail.com" - }, - "record": { - "CNAME": "nipuni.pages.dev" - } + "owner": { + "username": "nipunigamage", + "email": "nipunikanishka255@gmail.com" + }, + "record": { + "CNAME": "nipuni.pages.dev" + } } diff --git a/domains/noelpatonog.json b/domains/noelpatonog.json index ffe84597f..c3cae7c54 100644 --- a/domains/noelpatonog.json +++ b/domains/noelpatonog.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "noelpaton-og", - "email": "noel27938@gmail.com" - }, - "record": { - "CNAME": "noelpaton-og.github.io" - } + "owner": { + "username": "noelpaton-og", + "email": "noel27938@gmail.com" + }, + "record": { + "CNAME": "noelpaton-og.github.io" + } } diff --git a/domains/noob.json b/domains/noob.json index a5d63400c..a045d21c1 100644 --- a/domains/noob.json +++ b/domains/noob.json @@ -1,11 +1,11 @@ { - "description": "My personal portfolio site, made in nextjs", - "repo": "https://github.com/IMXNOOBX/universe", - "owner": { - "username": "IMXNOOBX", - "email": "me@noob.bio" - }, - "record": { - "CNAME": "noob.bio" - } + "description": "My personal portfolio site, made in nextjs", + "repo": "https://github.com/IMXNOOBX/universe", + "owner": { + "username": "IMXNOOBX", + "email": "me@noob.bio" + }, + "record": { + "CNAME": "noob.bio" + } } diff --git a/domains/notaproton.json b/domains/notaproton.json index a7763e212..c5c9bf4e1 100644 --- a/domains/notaproton.json +++ b/domains/notaproton.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "NotAProton", - "discord": "881083592648843294", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ljVmbkSps_q105bpImCtqo4lcTC3vXwfeKumQRVxp8bEoL2YAJOK_L1-ZJS3xoqwYz4dGhXRgfMwbXxt5DywBdnkWksIaVeslM0kAmjfqFGzT6j7YuFHHn0lCrtJACVCqfnkM6m-K8JVO71W66hnpyHqUep-pk-PEi7ySj7NibAjqMNf2UJiawXTTVLk3ynTUkwF4TJPwm4SdUJ6u9-YoFOh2aLOc716UINMAyRtnhB_LrfOYbl2a0OEnQGNdyEMqs1gjzmtn1wq_MZp6rI0HsRGV8PXuUh4GeEdptRCk2WIs2Rgg8vK1ECQ_DbbFCH0f1qxZAEngq-kTmByoICfhg.vi-XIRIxV8vkUwHBfoDxvQ._nY8vknWdQ_aGvm7_e2oh64O8IePxVzUV-Cxc20Y8HIG1ZihZ1_ae_BeL5b6OxJ9Ku0vnvwzitskb1y58Ja6krv4v-OVUft6kdUUYkyhB5Hai7HIRDbtiT9FD5EFXd3F.uS_CcluynSxFeTDrJosDrw" - }, - - "record": { - "CNAME": "notaproton.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "NotAProton", + "discord": "881083592648843294", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ljVmbkSps_q105bpImCtqo4lcTC3vXwfeKumQRVxp8bEoL2YAJOK_L1-ZJS3xoqwYz4dGhXRgfMwbXxt5DywBdnkWksIaVeslM0kAmjfqFGzT6j7YuFHHn0lCrtJACVCqfnkM6m-K8JVO71W66hnpyHqUep-pk-PEi7ySj7NibAjqMNf2UJiawXTTVLk3ynTUkwF4TJPwm4SdUJ6u9-YoFOh2aLOc716UINMAyRtnhB_LrfOYbl2a0OEnQGNdyEMqs1gjzmtn1wq_MZp6rI0HsRGV8PXuUh4GeEdptRCk2WIs2Rgg8vK1ECQ_DbbFCH0f1qxZAEngq-kTmByoICfhg.vi-XIRIxV8vkUwHBfoDxvQ._nY8vknWdQ_aGvm7_e2oh64O8IePxVzUV-Cxc20Y8HIG1ZihZ1_ae_BeL5b6OxJ9Ku0vnvwzitskb1y58Ja6krv4v-OVUft6kdUUYkyhB5Hai7HIRDbtiT9FD5EFXd3F.uS_CcluynSxFeTDrJosDrw" + }, + + "record": { + "CNAME": "notaproton.github.io" + } +} diff --git a/domains/notdevmatei.json b/domains/notdevmatei.json index 95adeb76e..b2447dc4b 100644 --- a/domains/notdevmatei.json +++ b/domains/notdevmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/notzer0two.json b/domains/notzer0two.json index 13d45fb45..d1205c6f6 100644 --- a/domains/notzer0two.json +++ b/domains/notzer0two.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NotZer0Two", - "email": "lyonfan2010@gmail.com" - }, - "record": { - "CNAME": "notzer0two.vercel.app" - } + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "CNAME": "notzer0two.vercel.app" + } } diff --git a/domains/nuraly.json b/domains/nuraly.json index 1dded7be9..54dea8e7c 100644 --- a/domains/nuraly.json +++ b/domains/nuraly.json @@ -1,10 +1,10 @@ { - "description": "Domain for the portfolio website", - "owner": { - "username": "nuraly-v", - "email": "mescorpx@gmail.com" - }, - "record": { - "CNAME": "nuraly-v.github.io" - } + "description": "Domain for the portfolio website", + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "record": { + "CNAME": "nuraly-v.github.io" + } } diff --git a/domains/nvcoden.json b/domains/nvcoden.json index 11fe760d6..2a76f5f2a 100644 --- a/domains/nvcoden.json +++ b/domains/nvcoden.json @@ -1,11 +1,11 @@ { - "description": "Blog for my personal stuff and things I like", - "repo": "https://github.com/nvcoden/nvcoden.github.io", - "owner": { - "username": "nvcoden", - "email": "navneeths55555@gmail.com" - }, - "record": { - "CNAME": "nvcoden.github.io" - } - } \ No newline at end of file + "description": "Blog for my personal stuff and things I like", + "repo": "https://github.com/nvcoden/nvcoden.github.io", + "owner": { + "username": "nvcoden", + "email": "navneeths55555@gmail.com" + }, + "record": { + "CNAME": "nvcoden.github.io" + } +} diff --git a/domains/nvhai272.json b/domains/nvhai272.json index ff4640aed..1a5cb16fb 100644 --- a/domains/nvhai272.json +++ b/domains/nvhai272.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "nvhai272" - }, - "record": { - "CNAME": "nvhai272.github.io" - } + "owner": { + "username": "nvhai272" + }, + "record": { + "CNAME": "nvhai272.github.io" + } } diff --git a/domains/oliver.json b/domains/oliver.json index 0f16d3134..357322288 100644 --- a/domains/oliver.json +++ b/domains/oliver.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "oli-ward", - "email": "oliver.ward94@gmail.com" - }, - "record": { - "CNAME": "is-a-dev-zc9.pages.dev" - } + "owner": { + "username": "oli-ward", + "email": "oliver.ward94@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-zc9.pages.dev" + } } diff --git a/domains/omarabdellatif.json b/domains/omarabdellatif.json new file mode 100644 index 000000000..2734d25ac --- /dev/null +++ b/domains/omarabdellatif.json @@ -0,0 +1,11 @@ +{ + "description": "Serving my PERSONAL website", + "repo": "https://pog-frog.github.io/my-resume/", + "owner": { + "username": "Pog-Frog", + "email": "fireangle5621@gmail.com" + }, + "record": { + "URL": "https://pog-frog.github.io/my-resume/" + } +} diff --git a/domains/omarjaber.json b/domains/omarjaber.json index faf6b169d..18ff50d83 100644 --- a/domains/omarjaber.json +++ b/domains/omarjaber.json @@ -1,11 +1,10 @@ { - - "repo": "https://github.com/omarHJ/Portfolio-Website", - "owner": { - "username": "omarHJ", - "email": "omarpp5555@gmail.com" - }, - "record": { - "CNAME": "omarhj.github.io" - } -} \ No newline at end of file + "repo": "https://github.com/omarHJ/Portfolio-Website", + "owner": { + "username": "omarHJ", + "email": "omarpp5555@gmail.com" + }, + "record": { + "CNAME": "omarhj.github.io" + } +} diff --git a/domains/omesh.json b/domains/omesh.json index 4bd26f1cb..a6fd02709 100644 --- a/domains/omesh.json +++ b/domains/omesh.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "omesh7" - }, - "record": { - "CNAME": "omesh7.github.io" - } + "owner": { + "username": "omesh7" + }, + "record": { + "CNAME": "omesh7.github.io" + } } diff --git a/domains/omkar.json b/domains/omkar.json index 8a8fd377a..31c6b9561 100644 --- a/domains/omkar.json +++ b/domains/omkar.json @@ -1,11 +1,10 @@ -{ - "owner": { - "username": "omkarkirpan", - "email": "okirpan@gmail.com" - }, - "repo": "https://github.com/omkarkirpan", - "record": { - "CNAME": "omkarkirpan.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "omkarkirpan", + "email": "okirpan@gmail.com" + }, + "repo": "https://github.com/omkarkirpan", + "record": { + "CNAME": "omkarkirpan.com" + } +} diff --git a/domains/onerandom.json b/domains/onerandom.json index 497d43658..7ce863398 100644 --- a/domains/onerandom.json +++ b/domains/onerandom.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "OneRandom1509", - "email": "anantukid@gmail.com" - }, - "record": { - "CNAME": "folio-five-beta.vercel.app" - } + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "record": { + "CNAME": "folio-five-beta.vercel.app" + } } diff --git a/domains/owens.json b/domains/owens.json index 0332c732d..c9cec82df 100644 --- a/domains/owens.json +++ b/domains/owens.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "owenslopez211" - }, - "record": { - "CNAME": "owenslopez211.github.io" - } + "owner": { + "username": "owenslopez211" + }, + "record": { + "CNAME": "owenslopez211.github.io" + } } diff --git a/domains/p.json b/domains/p.json index 04961f75d..4f8ad8e8c 100644 --- a/domains/p.json +++ b/domains/p.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, "record": { "CNAME": "edge.redirect.pizza" diff --git a/domains/panashe-mapika.json b/domains/panashe-mapika.json index 88535ae2c..0369a3bb4 100644 --- a/domains/panashe-mapika.json +++ b/domains/panashe-mapika.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "panda-zw" - }, - "record": { - "CNAME": "panashe.codes" - } + "owner": { + "username": "panda-zw" + }, + "record": { + "CNAME": "panashe.codes" + } } diff --git a/domains/panashe.json b/domains/panashe.json index 88535ae2c..0369a3bb4 100644 --- a/domains/panashe.json +++ b/domains/panashe.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "panda-zw" - }, - "record": { - "CNAME": "panashe.codes" - } + "owner": { + "username": "panda-zw" + }, + "record": { + "CNAME": "panashe.codes" + } } diff --git a/domains/patrick.json b/domains/patrick.json new file mode 100644 index 000000000..98cdd9f96 --- /dev/null +++ b/domains/patrick.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio website made with GoHugo", + "owner": { + "username": "davidsneighbour", + "email": "pkollitsch+isadev@gmail.com" + }, + "record": { + "URL": "https://kollitsch.dev/" + } +} diff --git a/domains/paul8liveira.json b/domains/paul8liveira.json new file mode 100644 index 000000000..20abf88a4 --- /dev/null +++ b/domains/paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "record": { + "CNAME": "paul8liveira.vercel.app" + } +} diff --git a/domains/pavanc.json b/domains/pavanc.json index f25da9045..9a452f4d4 100644 --- a/domains/pavanc.json +++ b/domains/pavanc.json @@ -1,10 +1,9 @@ -{ - "owner": { - "username": "pavancos", - "email": "pavankc005@gmail.com" - }, - "record": { - "URL": "https://pavanc.me" - } - } - \ No newline at end of file +{ + "owner": { + "username": "pavancos", + "email": "pavankc005@gmail.com" + }, + "record": { + "URL": "https://pavanc.me" + } +} diff --git a/domains/pedrofff.json b/domains/pedrofff.json index f007edb28..42d2319d8 100644 --- a/domains/pedrofff.json +++ b/domains/pedrofff.json @@ -2,7 +2,7 @@ "description": "Portfolio", "repo": "https://github.com/Pedrofff23/Portfolio", "owner": { - "username": "Pedrofff", + "username": "Pedrofff23", "email": "pmendes09@hotmail.com" }, "record": { diff --git a/domains/pete.json b/domains/pete.json new file mode 100644 index 000000000..b55fcc504 --- /dev/null +++ b/domains/pete.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of a fullstack developer", + "repo": "https://github.com/daspete/pete-github-io", + "owner": { + "username": "daspete", + "email": "daspetemail@gmail.com" + }, + "record": { + "CNAME": "daspete.github.io" + } +} diff --git a/domains/phi.json b/domains/phi.json index 9a7ddbf0e..6e182f503 100644 --- a/domains/phi.json +++ b/domains/phi.json @@ -4,9 +4,6 @@ "email": "y5c4l3@proton.me" }, "record": { - "NS": [ - "johnny.ns.cloudflare.com", - "rachel.ns.cloudflare.com" - ] + "NS": ["johnny.ns.cloudflare.com", "rachel.ns.cloudflare.com"] } } diff --git a/domains/pikachu.json b/domains/pikachu.json index 8f9c2cf8d..68a2d64b4 100644 --- a/domains/pikachu.json +++ b/domains/pikachu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vighnesh153", - "email": "pikachu@vighnesh153.dev" - }, - "record": { - "CNAME": "vighnesh153-app.web.app" - } + "owner": { + "username": "vighnesh153", + "email": "pikachu@vighnesh153.dev" + }, + "record": { + "CNAME": "vighnesh153-app.web.app" + } } diff --git a/domains/pita.json b/domains/pita.json index 901098b86..de9887004 100644 --- a/domains/pita.json +++ b/domains/pita.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pita092", - "discord": "spongebob_spongebob_spongebob" - }, - "record": { - "CNAME": "pita092.github.io" - } + "owner": { + "username": "pita092", + "discord": "spongebob_spongebob_spongebob" + }, + "record": { + "CNAME": "pita092.github.io" + } } diff --git a/domains/pixelbend.json b/domains/pixelbend.json index b3d2b2822..93e524266 100644 --- a/domains/pixelbend.json +++ b/domains/pixelbend.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pixelbend", - "email": "m.arkamfahry@gmail.com" - }, - "record": { - "CNAME": "pixelbend.github.io" - } + "owner": { + "username": "pixelbend", + "email": "m.arkamfahry@gmail.com" + }, + "record": { + "CNAME": "pixelbend.github.io" + } } diff --git a/domains/polls.json b/domains/polls.json new file mode 100644 index 000000000..be315fac0 --- /dev/null +++ b/domains/polls.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729" + }, + "record": { + "URL": "https://y.is-a.dev" + } +} diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json index 961525336..ee91c44b5 100644 --- a/domains/pranavagrawal.json +++ b/domains/pranavagrawal.json @@ -6,8 +6,18 @@ "email": "pranavagrawal321@gmail.com" }, "record": { - "A": ["185.199.108.153"], - "AAAA": ["2606:50c0:8001::153"], + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/pranavs.json b/domains/pranavs.json new file mode 100644 index 000000000..8bb379083 --- /dev/null +++ b/domains/pranavs.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio-website", + "repo": "https://github.com/Prs96/portfolio-website.git", + "owner": { + "username": "Prs96", + "email": "pranavsudheesh34@gmail.com" + }, + "record": { + "CNAME": "prs96.github.io" + } +} diff --git a/domains/prasant.json b/domains/prasant.json index e7f6582ed..291eca8f9 100644 --- a/domains/prasant.json +++ b/domains/prasant.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio Website", - "repo": "https://github.com/prashant48653c/portfolio", - "owner": { - "username": "prashant48653c", - "email": "acharyaprashant227@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file + "description": "My Portfolio Website", + "repo": "https://github.com/prashant48653c/portfolio", + "owner": { + "username": "prashant48653c", + "email": "acharyaprashant227@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/prashil.json b/domains/prashil.json index d099d7f65..cbb340e72 100644 --- a/domains/prashil.json +++ b/domains/prashil.json @@ -1,7 +1,7 @@ { "owner": { "username": "prashilthul", - "email": "prashil1141@gmail.com" + "email": "prashil1411@gmail.com" }, "record": { "CNAME": "portfolio-gold-delta-24.vercel.app" diff --git a/domains/pratikthapw.json b/domains/pratikthapw.json index 56e62a18a..5fb285a9f 100644 --- a/domains/pratikthapw.json +++ b/domains/pratikthapw.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pratikthapw", - "email": "pratikthapw@gmail.com" - }, - "record": { - "CNAME": "pratikthapw.github.io" - } + "owner": { + "username": "pratikthapw", + "email": "pratikthapw@gmail.com" + }, + "record": { + "CNAME": "pratikthapw.github.io" + } } diff --git a/domains/priscila.json b/domains/priscila.json index f827b48c6..1b6d1c568 100644 --- a/domains/priscila.json +++ b/domains/priscila.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pgoliv-code", - "email": "pguillen.oliv@gmail.com" - }, - "record": { - "CNAME": "pgoliv-code.github.io" - } + "owner": { + "username": "pgoliv-code", + "email": "pguillen.oliv@gmail.com" + }, + "record": { + "CNAME": "pgoliv-code.github.io" + } } diff --git a/domains/priyanshu.json b/domains/priyanshu.json index bc043c227..4061965a0 100644 --- a/domains/priyanshu.json +++ b/domains/priyanshu.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "twitter": "priyansxu_gupta" }, "record": { diff --git a/domains/pyaesonewin.json b/domains/pyaesonewin.json new file mode 100644 index 000000000..bfe0b476e --- /dev/null +++ b/domains/pyaesonewin.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website and portfolio for Pyae Sone Win", + "repo": "https://github.com/mgmgpyaesonewin/mgmgpyaesonewin.github.io", + "owner": { + "username": "mgmgpyaesonewin", + "email": "pyaesonewin.dev@gmail.com" + }, + "record": { + "CNAME": "mgmgpyaesonewin.github.io" + } +} diff --git a/domains/quddi.json b/domains/quddi.json index ac920f3da..82da25fce 100644 --- a/domains/quddi.json +++ b/domains/quddi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Quddi", - "email": "quddi6@gmail.com" - }, - "record": { - "CNAME": "quddiy.github.io" - } + "owner": { + "username": "Quddi", + "email": "quddi6@gmail.com" + }, + "record": { + "CNAME": "quddiy.github.io" + } } diff --git a/domains/rafaelfernandes.json b/domains/rafaelfernandes.json index dd7b9099d..8175b139a 100644 --- a/domains/rafaelfernandes.json +++ b/domains/rafaelfernandes.json @@ -1,17 +1,17 @@ { - "description": "Personal potifolho site.", - "repo": "https://github.com/RafaelFernandesBR/rafaelfernandes.github.io", - "owner": { - "username": "RafaelFernandesBR", - "email": "marcorafaeldemelo16@protonmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - }, - "proxied": true -} \ No newline at end of file + "description": "Personal potifolho site.", + "repo": "https://github.com/RafaelFernandesBR/rafaelfernandes.github.io", + "owner": { + "username": "RafaelFernandesBR", + "email": "marcorafaeldemelo16@protonmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + }, + "proxied": true +} diff --git a/domains/raghav.json b/domains/raghav.json new file mode 100644 index 000000000..e290738b3 --- /dev/null +++ b/domains/raghav.json @@ -0,0 +1,11 @@ +{ + "description": "Flex", + "repo": "https://github.com/GodKode69/GodKode69.github.io", + "owner": { + "username": "GodKode69", + "email": "knownasraghav@gmail.com" + }, + "record": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/rahulc0dy.json b/domains/rahulc0dy.json index 69887d408..d1cdc8186 100644 --- a/domains/rahulc0dy.json +++ b/domains/rahulc0dy.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/rahulc0dy/rahulc0dy.github.io", - "owner": { - "username": "rahulc0dy", - "email": "codyrahulop@gmail.com" - }, - "record": { - "CNAME": "rahulc0dy.github.io" - } + "repo": "https://github.com/rahulc0dy/rahulc0dy.github.io", + "owner": { + "username": "rahulc0dy", + "email": "codyrahulop@gmail.com" + }, + "record": { + "CNAME": "rahulc0dy.github.io" + } } diff --git a/domains/rahulsunil.json b/domains/rahulsunil.json index 16358d721..3e6e7ad57 100644 --- a/domains/rahulsunil.json +++ b/domains/rahulsunil.json @@ -1,11 +1,11 @@ { - "description": "Rahul Sunil - GenAI Engineer", - "repo": "https://github.com/rahulsunil2/rahulsunil-code-portfolio", - "owner": { - "username": "rahulsunil2", - "email": "rahulsunil2@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "Rahul Sunil - GenAI Engineer", + "repo": "https://github.com/rahulsunil2/rahulsunil-code-portfolio", + "owner": { + "username": "rahulsunil2", + "email": "rahulsunil2@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/rahulverma.json b/domains/rahulverma.json index e2efabccd..1d47b75a2 100644 --- a/domains/rahulverma.json +++ b/domains/rahulverma.json @@ -1,11 +1,11 @@ { - "description": "My Developer Portfolio", - "repo": "https://github.com/SudoRV/register", - "owner": { - "username": "SudoRV", - "email": "rahulverma.1.2005@gamil.com" - }, - "record": { - "CNAME": "rahul-verma.onrender.com" - } + "description": "My Developer Portfolio", + "repo": "https://github.com/SudoRV/register", + "owner": { + "username": "SudoRV", + "email": "rahulverma.1.2005@gamil.com" + }, + "record": { + "CNAME": "rahul-verma.onrender.com" + } } diff --git a/domains/rajeshreddy.json b/domains/rajeshreddy.json index b15963b2e..d5995d048 100644 --- a/domains/rajeshreddy.json +++ b/domains/rajeshreddy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "rajesh-reddy1", - "email": "mrrajeshreddy1@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/rajputshashank.json b/domains/rajputshashank.json index d048f6c2f..995e6296b 100644 --- a/domains/rajputshashank.json +++ b/domains/rajputshashank.json @@ -1,11 +1,11 @@ { - "description": "Shashank's portfolio", - "repo": "https://github.com/rajputshashank003/details", - "owner": { - "username": "rajputshashank003", - "email": "hariomshashank@gmail.com" - }, - "record": { - "CNAME": "rajputshashank.vercel.app" - } -} \ No newline at end of file + "description": "Shashank's portfolio", + "repo": "https://github.com/rajputshashank003/details", + "owner": { + "username": "rajputshashank003", + "email": "hariomshashank@gmail.com" + }, + "record": { + "CNAME": "rajputshashank.vercel.app" + } +} diff --git a/domains/raspicloud.json b/domains/raspicloud.json index cd400dd65..376aa0682 100644 --- a/domains/raspicloud.json +++ b/domains/raspicloud.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mkrage", - "email": "manuel.krage@gmx.de" - }, - "record": { - "A": ["141.144.239.115"] - } + "owner": { + "username": "mkrage", + "email": "manuel.krage@gmx.de" + }, + "record": { + "A": ["141.144.239.115"] + } } diff --git a/domains/raynaldescala.json b/domains/raynaldescala.json index a2dc696f9..53e9f8c27 100644 --- a/domains/raynaldescala.json +++ b/domains/raynaldescala.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "raynaldescala", - "email": "raynaldescala01@gmail.com" - }, - "record": { - "CNAME": "raynaldescala.vercel.app" - } + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "record": { + "CNAME": "raynaldescala.vercel.app" + } } diff --git a/domains/rbk.json b/domains/rbk.json new file mode 100644 index 000000000..73f84d35a --- /dev/null +++ b/domains/rbk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "its-me-rbk", + "email": "ceo@greendwarftech.com" + }, + "record": { + "CNAME": "rubhak.greendwarftech.com" + } +} diff --git a/domains/realfara.json b/domains/realfara.json index 71d688c8c..29b94d786 100644 --- a/domains/realfara.json +++ b/domains/realfara.json @@ -4,6 +4,17 @@ "email": "faradey.iskra@mail.ru" }, "record": { - "A": ["185.199.111.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/renant.json b/domains/renant.json index c3fdf18a9..86e36854f 100644 --- a/domains/renant.json +++ b/domains/renant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "renant", - "email": "renan_replay@live.com" - }, - "record": { - "CNAME": "renant.vercel.app" - } + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "record": { + "CNAME": "renant.vercel.app" + } } diff --git a/domains/resend._domainkey.blogs.akk1to.json b/domains/resend._domainkey.blogs.akk1to.json index 0d4f04ee8..d3bd69516 100644 --- a/domains/resend._domainkey.blogs.akk1to.json +++ b/domains/resend._domainkey.blogs.akk1to.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com" - }, - "record": { - "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkC3QeDPeGYFp3nDf2GByvCWnS24VLN9lnWJWWnkPNJGiFuoucjxU8CpeD74C1XlZDz6dr/zcNPsOrh5Zi/87XugfwQsDzjfPPosCRIGa1SVqm1S4kdaT2Ms7i6//x5Y0y7uoE+dK2EecDVwLJAqc93Yipp+xihK9HOf4ffO6nxwIDAQAB" - } + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkC3QeDPeGYFp3nDf2GByvCWnS24VLN9lnWJWWnkPNJGiFuoucjxU8CpeD74C1XlZDz6dr/zcNPsOrh5Zi/87XugfwQsDzjfPPosCRIGa1SVqm1S4kdaT2Ms7i6//x5Y0y7uoE+dK2EecDVwLJAqc93Yipp+xihK9HOf4ffO6nxwIDAQAB" + } } diff --git a/domains/retro.horibyte.json b/domains/retro.horibyte.json new file mode 100644 index 000000000..4a1863917 --- /dev/null +++ b/domains/retro.horibyte.json @@ -0,0 +1,11 @@ +{ + "description": "Horibyte's personal website", + "repo": "https://github.com/horibyte/horibyte.github.io", + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "record": { + "CNAME": "horibyte.github.io" + } +} diff --git a/domains/riccardo126.json b/domains/riccardo126.json index f7a201342..3d8ca7fd4 100644 --- a/domains/riccardo126.json +++ b/domains/riccardo126.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "riccardo126", - "email": "riccardopassacantando@gmail.com" - }, - "record": { - "CNAME": "riccardo126.vercel.app" - } + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "record": { + "CNAME": "riccardo126.vercel.app" + } } diff --git a/domains/ridwan.json b/domains/ridwan.json new file mode 100644 index 000000000..dad000808 --- /dev/null +++ b/domains/ridwan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "description": "This subdomain points to my portfolio website. https://ridwanyinus.vercel.app/ is the link for a preview of the website", + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ridwanyinus.json b/domains/ridwanyinus.json deleted file mode 100644 index b077d79f5..000000000 --- a/domains/ridwanyinus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/ridwanyinus/pfp-2", - "owner": { - "username": "ridwanyinusa", - "email": "ridwanyinusa15@gmail.com" - }, - "record": { - "CNAME": "ridwanyinusa.netlify.app" - } -} diff --git a/domains/risqiahmad.json b/domains/risqiahmad.json index 325cc3b83..0a4baad15 100644 --- a/domains/risqiahmad.json +++ b/domains/risqiahmad.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "risqi17", - "email": "ahmadreys@gmail.com", - "discord": "risqi_ahmad9230" - }, - "record": { - "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.vercel.app" - } + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.vercel.app" } - \ No newline at end of file +} diff --git a/domains/rizqi.json b/domains/rizqi.json index 99046675f..d3cc7bfa6 100644 --- a/domains/rizqi.json +++ b/domains/rizqi.json @@ -1,11 +1,11 @@ { - "description": "Portofolio Website.", - "repo": "https://github.com/RizqiSeijuuro/portfolio", - "owner": { - "username": "RizqiSeijuuro", - "email": "rizqiansyah52@gmail.com" - }, - "record": { - "CNAME": "rizqiseijuuro.github.io" - } -} \ No newline at end of file + "description": "Portofolio Website.", + "repo": "https://github.com/RizqiSeijuuro/portfolio", + "owner": { + "username": "RizqiSeijuuro", + "email": "rizqiansyah52@gmail.com" + }, + "record": { + "CNAME": "rizqiseijuuro.github.io" + } +} diff --git a/domains/rodolfo.json b/domains/rodolfo.json index 7a4e83fd0..2ad8be59f 100644 --- a/domains/rodolfo.json +++ b/domains/rodolfo.json @@ -1,4 +1,6 @@ { + "description": "Rodolfo Rodrigues developer page", + "repo": "https://github.com/rudwolf/rudwolf.github.io", "owner": { "username": "rudwolf", "email": "rudwolf@gmail.com" diff --git a/domains/roei.json b/domains/roei.json index 33710d976..08d323ffd 100644 --- a/domains/roei.json +++ b/domains/roei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "roei111", - "email": "roeiyaacobi@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "owner": { + "username": "roei111", + "email": "roeiyaacobi@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/ronnieaban.json b/domains/ronnieaban.json index 40b727fdc..65b6406bd 100644 --- a/domains/ronnieaban.json +++ b/domains/ronnieaban.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ronnieaban", - "email": "ronnieaban@gmail.com" - }, - "record": { - "CNAME": "ronnieaban.pages.dev" - } + "owner": { + "username": "ronnieaban", + "email": "ronnieaban@gmail.com" + }, + "record": { + "CNAME": "ronnieaban.pages.dev" + } } diff --git a/domains/roohullah.kazmi.json b/domains/roohullah.kazmi.json deleted file mode 100644 index 74b6cab92..000000000 --- a/domains/roohullah.kazmi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "roohullah.kazmi", - "owner": { - "username": "r-kazmi", - "email": "smrkamzi@gmail.com" - }, - "record": { - "URL": "https://linktr.ee/roohullah.kazmi" - }, - "proxied": false -} diff --git a/domains/roshan.json b/domains/roshan.json index 6ca21a0e2..0e8534360 100644 --- a/domains/roshan.json +++ b/domains/roshan.json @@ -1,12 +1,13 @@ { "description": "Personal portfolio", - "repo": "https://github.com/roshan1337d/roshan1337d.github.io", "owner": { - "username": "roshan1337d", - "email": "roshan1337x@gmail.com", - "twitter": "roshan1337d" + "username": "roshan1885", + "discord": "roshan1885" }, "record": { - "CNAME": "roshan1337d.github.io" - } + "CNAME": "roshan1885.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + }, + "proxied": true } diff --git a/domains/rudeus.json b/domains/rudeus.json index 442899d78..605e8c6bd 100644 --- a/domains/rudeus.json +++ b/domains/rudeus.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dmquang", - "email": "mq.rudyy.08@gmai.com" - }, - "record": { - "CNAME": "dmquang.github.io" - } + "owner": { + "username": "dmquang", + "email": "mq.rudyy.08@gmai.com" + }, + "record": { + "CNAME": "dmquang.github.io" + } } diff --git a/domains/rupankar.json b/domains/rupankar.json index d968cb51b..83901f13e 100644 --- a/domains/rupankar.json +++ b/domains/rupankar.json @@ -1,11 +1,11 @@ { - "description": "A portfolio website", - "repo": "https://github.com/InvictusRex/InvictusRex.github.io", - "owner": { - "username": "InvictusRex", - "email": "rupankar.majumdar2023@vitstudent.ac.in" - }, - "record": { - "CNAME": "invictusrex.github.io" - } -} + "description": "A portfolio website", + "repo": "https://github.com/InvictusRex/InvictusRex.github.io", + "owner": { + "username": "InvictusRex", + "email": "rupankar.majumdar2023@vitstudent.ac.in" + }, + "record": { + "CNAME": "invictusrex.github.io" + } +} diff --git a/domains/s1dd.json b/domains/s1dd.json index 7e02e8e40..e7a6119eb 100644 --- a/domains/s1dd.json +++ b/domains/s1dd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nots1dd", - "email": "sid9.karanam@gmail.com" - }, - "record": { - "CNAME": "webpage-seven-puce.vercel.app" - } + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "record": { + "CNAME": "webpage-seven-puce.vercel.app" + } } diff --git a/domains/sad-devmatei.json b/domains/sad-devmatei.json index 95adeb76e..b2447dc4b 100644 --- a/domains/sad-devmatei.json +++ b/domains/sad-devmatei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "URL": "https://devmatei.is-a.dev/" - } -} \ No newline at end of file + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/saif.json b/domains/saif.json index d547e534c..50a8e1d09 100644 --- a/domains/saif.json +++ b/domains/saif.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Saifkhanz", - "email": "saif137.khan@gmail.com" - }, - "record": { - "CNAME": "saif-two.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "record": { + "CNAME": "saif-two.vercel.app" + } +} diff --git a/domains/samadhi.json b/domains/samadhi.json index 46904f7b9..f02292fba 100644 --- a/domains/samadhi.json +++ b/domains/samadhi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "samadhi1311", - "email": "samadhilakmina.sl@gmail.com" - }, - "record": { - "CNAME": "samadhi-gunasinghe.pages.dev" - } + "owner": { + "username": "samadhi1311", + "email": "samadhilakmina.sl@gmail.com" + }, + "record": { + "CNAME": "samadhi-gunasinghe.pages.dev" + } } diff --git a/domains/samenal.json b/domains/samenal.json new file mode 100644 index 000000000..8f6649b25 --- /dev/null +++ b/domains/samenal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Samenal-sys", + "email": "samenaal@proton.me" + }, + "record": { + "CNAME": "samenal.pages.dev" + } +} diff --git a/domains/sangeeth.json b/domains/sangeeth.json index 178d24f73..a05494c84 100644 --- a/domains/sangeeth.json +++ b/domains/sangeeth.json @@ -1,12 +1,11 @@ { - "description": "PORTFOLIO", - "owner": { - "username": "sangeeth-606", - "email": "sangeeth999123@gmail.com" - }, - "repo": "https://github.com/sangeeth-606/meh", - "record": { - "CNAME": "github-sangeeth-606.github.io" - } + "description": "PORTFOLIO", + "owner": { + "username": "sangeeth-606", + "email": "sangeeth999123@gmail.com" + }, + "repo": "https://github.com/sangeeth-606/meh", + "record": { + "CNAME": "github-sangeeth-606.github.io" } - +} diff --git a/domains/satindar.json b/domains/satindar.json index 9ed1644bd..bf02e1c4e 100644 --- a/domains/satindar.json +++ b/domains/satindar.json @@ -8,11 +8,13 @@ }, "record": { "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"], - "DS": [{ - "key_tag": 2371, - "algorithm": 13, - "digest_type": 2, - "digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096" - }] + "DS": [ + { + "key_tag": 2371, + "algorithm": 13, + "digest_type": 2, + "digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096" + } + ] } } diff --git a/domains/schuh.json b/domains/schuh.json index 896579524..a1919a9de 100644 --- a/domains/schuh.json +++ b/domains/schuh.json @@ -1,6 +1,6 @@ { "owner": { - "username": "schuh", + "username": "vqpe", "email": "theschuhofyou@gmail.com" }, "record": { diff --git a/domains/secsum.json b/domains/secsum.json index e35bf9625..077fc697d 100644 --- a/domains/secsum.json +++ b/domains/secsum.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "NgoQuangThien", - "email": "quangthien18032000@gmail.com" - }, - "record": { - "A": [ - "3.24.49.246" - ] - } + "owner": { + "username": "NgoQuangThien", + "email": "quangthien18032000@gmail.com" + }, + "record": { + "A": ["3.24.49.246"] + } } diff --git a/domains/send.blogs.akk1to.json b/domains/send.blogs.akk1to.json index 6c1b33707..b988ef95f 100644 --- a/domains/send.blogs.akk1to.json +++ b/domains/send.blogs.akk1to.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "akk1to", - "email": "akk1to.dev@outlook.com" - }, - "record": { - "MX": ["feedback-smtp.us-east-1.amazonses.com"], - "TXT": "v=spf1 include:amazonses.com ~all" - } + "owner": { + "username": "akk1to", + "email": "akk1to.dev@outlook.com" + }, + "record": { + "MX": ["feedback-smtp.us-east-1.amazonses.com"], + "TXT": "v=spf1 include:amazonses.com ~all" + } } diff --git a/domains/sep.json b/domains/sep.json index 47a8c1a97..4706dc1d6 100644 --- a/domains/sep.json +++ b/domains/sep.json @@ -1,11 +1,11 @@ -{ - "description": "personel-website", - "repo": "https://github.com/sepultrex/sepultrex.github.io", - "owner": { - "username": "sepultrex", - "email": "sepultrex@gmail.com" - }, - "record": { - "CNAME": "sepultrex.github.io" - } -} \ No newline at end of file +{ + "description": "personel-website", + "repo": "https://github.com/sepultrex/sepultrex.github.io", + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "record": { + "CNAME": "sepultrex.github.io" + } +} diff --git a/domains/sergarsilla.json b/domains/sergarsilla.json index 33486348a..acc50cad4 100644 --- a/domains/sergarsilla.json +++ b/domains/sergarsilla.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sergarsilla", - "email": "sergarsilla@gmail.com" - }, - "record": { - "CNAME": "sergarsilla.github.io" - } + "owner": { + "username": "sergarsilla", + "email": "sergarsilla@gmail.com" + }, + "record": { + "CNAME": "sergarsilla.github.io" + } } diff --git a/domains/sh13y.json b/domains/sh13y.json index 663d3be97..392946361 100644 --- a/domains/sh13y.json +++ b/domains/sh13y.json @@ -1,11 +1,11 @@ { - "description": "For My Blog", - "repo": "https://github.com/sh13y/register", - "owner": { - "username": "sh13y", - "email": "lucky10isuru@gmail.com" - }, - "record": { - "CNAME": "sh13y.github.io" - } + "description": "For My Blog", + "repo": "https://github.com/sh13y/register", + "owner": { + "username": "sh13y", + "email": "lucky10isuru@gmail.com" + }, + "record": { + "CNAME": "sh13y.github.io" + } } diff --git a/domains/shikhar.json b/domains/shikhar.json index 819cecd6d..ad2a7a480 100644 --- a/domains/shikhar.json +++ b/domains/shikhar.json @@ -1,11 +1,11 @@ { - "description": "YOUR DESCRIPTION GOES HERE", - "repo": "https://github.com/adityasriv2317/portfolioAditya", - "owner": { - "username": "adityasriv2317", - "email": "adityaxia9237@gmail.com" - }, - "record": { - "URL": "https://adityasrivastava.vercel.app/" - } + "description": "YOUR DESCRIPTION GOES HERE", + "repo": "https://github.com/adityasriv2317/portfolioAditya", + "owner": { + "username": "adityasriv2317", + "email": "adityaxia9237@gmail.com" + }, + "record": { + "URL": "https://adityasrivastava.vercel.app/" + } } diff --git a/domains/shimizu.json b/domains/shimizu.json index da5b1d4e5..b0c335042 100644 --- a/domains/shimizu.json +++ b/domains/shimizu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Mikofoxie", - "email": "shimizulazy@gmail.com" - }, - "record": { - "CNAME": "shimizulinks.vercel.app" - } + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "CNAME": "shimizulinks.vercel.app" + } } diff --git a/domains/shoaib.json b/domains/shoaib.json index 07d506eed..492b7ef35 100644 --- a/domains/shoaib.json +++ b/domains/shoaib.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "d3vshoaib", - "email": "d3vshoaib@gmail.com" - }, - "record": { - "CNAME": "d3vshoaib.netlify.app" - } + "owner": { + "username": "d3vshoaib", + "email": "d3vshoaib@gmail.com" + }, + "record": { + "CNAME": "d3vshoaib.netlify.app" + } } diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json index 2141e8dc9..e00d1e26c 100644 --- a/domains/shubhamverma.json +++ b/domains/shubhamverma.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Stroller15" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "Stroller15" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/shukraditya.json b/domains/shukraditya.json index c0ba14a62..8210c31d5 100644 --- a/domains/shukraditya.json +++ b/domains/shukraditya.json @@ -1,11 +1,11 @@ { - "description": "Personal Blog and portfolio", - "repo": "https://github.com/shukraditya/shukraditya", - "owner": { - "username": "shukraditya", - "email": "shukra12bose@gmail.com" - }, - "record": { - "CNAME": "shukraditya.github.io" - } -} \ No newline at end of file + "description": "Personal Blog and portfolio", + "repo": "https://github.com/shukraditya/shukraditya", + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "record": { + "CNAME": "shukraditya.github.io" + } +} diff --git a/domains/si458.json b/domains/si458.json index 3043e5a4d..69fff21be 100644 --- a/domains/si458.json +++ b/domains/si458.json @@ -1,14 +1,11 @@ { - "description": "an open source software developer supporting opensource applications", - "repo": "https://github.com/si458", - "owner": { - "username": "si458", - "email": "simonsmith5521@gmail.com" - }, - "record": { - "NS": [ - "jake.ns.cloudflare.com", - "jill.ns.cloudflare.com" - ] - } + "description": "an open source software developer supporting opensource applications", + "repo": "https://github.com/si458", + "owner": { + "username": "si458", + "email": "simonsmith5521@gmail.com" + }, + "record": { + "NS": ["jake.ns.cloudflare.com", "jill.ns.cloudflare.com"] + } } diff --git a/domains/sid385.json b/domains/sid385.json index 8b97b2a63..f421fdcb1 100644 --- a/domains/sid385.json +++ b/domains/sid385.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio ", - "repo": "https://github.com/siddhant385/siddhant385.github.io", - "owner": { - "username": "siddhant385", - "email": "ssiddhant.ssharma@gmail.com" - }, - "record": { - "CNAME": "siddhant385.github.io" - } + "description": "Personal portfolio ", + "repo": "https://github.com/siddhant385/siddhant385.github.io", + "owner": { + "username": "siddhant385", + "email": "ssiddhant.ssharma@gmail.com" + }, + "record": { + "CNAME": "siddhant385.github.io" + } } diff --git a/domains/sidhant.json b/domains/sidhant.json index e860a0a75..1abbaa50a 100644 --- a/domains/sidhant.json +++ b/domains/sidhant.json @@ -1,11 +1,11 @@ { - "description": "This is for my personal portfolio", - "repo": "https://github.com/sidhant947/sidhant947.github.io", - "owner": { - "username": "sidhant947", - "email": "khatkarsidhant@gmail.com" - }, - "record": { - "CNAME": "sidhant947.github.io" - } -} \ No newline at end of file + "description": "This is for my personal portfolio", + "repo": "https://github.com/sidhant947/sidhant947.github.io", + "owner": { + "username": "sidhant947", + "email": "khatkarsidhant@gmail.com" + }, + "record": { + "CNAME": "sidhant947.github.io" + } +} diff --git a/domains/silva.json b/domains/silva.json index 412f8402c..22ac88af5 100644 --- a/domains/silva.json +++ b/domains/silva.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SilvaTechB", - "email": "momanyi.2913@gmail.com" - }, - "record": { - "CNAME": "silvatechb.github.io" - } + "owner": { + "username": "SilvaTechB", + "email": "momanyi.2913@gmail.com" + }, + "record": { + "CNAME": "silvatechb.github.io" + } } diff --git a/domains/simontran.json b/domains/simontran.json new file mode 100644 index 000000000..eb732a4e1 --- /dev/null +++ b/domains/simontran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tvkorsimon02", + "email": "tntgaming2016@gmail.com" + }, + "record": { + "CNAME": "tvkorsimon02.github.io" + } +} diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json index c6e93e287..3a985230f 100644 --- a/domains/sincererflame71.json +++ b/domains/sincererflame71.json @@ -4,6 +4,17 @@ "email": "DarkNightcore8@outlook.com" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/siritas.json b/domains/siritas.json index f036001d6..164e7d993 100644 --- a/domains/siritas.json +++ b/domains/siritas.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dahoba", - "email": "dahoba+github@gmail.com" - }, - "record": { - "URL": "https://siritas.gitlab.io" - } + "owner": { + "username": "dahoba", + "email": "dahoba+github@gmail.com" + }, + "record": { + "URL": "https://siritas.gitlab.io" + } } diff --git a/domains/sivaraj.json b/domains/sivaraj.json index d00a09ee7..91c3c4821 100644 --- a/domains/sivaraj.json +++ b/domains/sivaraj.json @@ -5,6 +5,17 @@ "discord": "1057144035812327524" }, "record": { - "A": ["185.199.108.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/siya.json b/domains/siya.json index 23d0afd79..6d829e4d5 100644 --- a/domains/siya.json +++ b/domains/siya.json @@ -1,11 +1,11 @@ { - "description": "Siya's portfolio", - "repo": "https://github.com/rajputsiya/portfolio", - "owner": { - "username": "rajputsiya", - "email": "siyarajput9258@gmail.com" - }, - "record": { - "CNAME": "siyarajput.vercel.app" - } -} \ No newline at end of file + "description": "Siya's portfolio", + "repo": "https://github.com/rajputsiya/portfolio", + "owner": { + "username": "rajputsiya", + "email": "siyarajput9258@gmail.com" + }, + "record": { + "CNAME": "siyarajput.vercel.app" + } +} diff --git a/domains/sohag.json b/domains/sohag.json index cd06c3546..a23436df4 100644 --- a/domains/sohag.json +++ b/domains/sohag.json @@ -1,10 +1,10 @@ -{ - "description": "For my portfolio", - "owner": { - "username": "sohag02", - "discord": "sohagjabed" - }, - "record": { - "CNAME": "sohagj.vercel.app" - } -} \ No newline at end of file +{ + "description": "For my portfolio", + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "record": { + "CNAME": "sohagj.vercel.app" + } +} diff --git a/domains/sombochea.json b/domains/sombochea.json index 41182a1db..0c39b6a29 100644 --- a/domains/sombochea.json +++ b/domains/sombochea.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sombochea", - "email": "sombochea100@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } -} \ No newline at end of file + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/soul.json b/domains/soul.json index bc18daee4..7bfa67701 100644 --- a/domains/soul.json +++ b/domains/soul.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SoulDevs", - "email": "soulcosmic1406@proton.me" - }, - "record": { - "CNAME": "main-protfolio-seven.vercel.app" - } + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me" + }, + "record": { + "CNAME": "main-protfolio-seven.vercel.app" + } } diff --git a/domains/speedindeed1.json b/domains/speedindeed1.json index 202eaadd3..4b66ab415 100644 --- a/domains/speedindeed1.json +++ b/domains/speedindeed1.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Rohan-ingle", - "email": "rohaningle911@gmail.com" - }, - "record": { - "CNAME": "rohan-ingle.github.io" - } + "owner": { + "username": "Rohan-ingle", + "email": "rohaningle911@gmail.com" + }, + "record": { + "CNAME": "rohan-ingle.github.io" + } } diff --git a/domains/spencer.json b/domains/spencer.json index b5fda7019..43484de0f 100644 --- a/domains/spencer.json +++ b/domains/spencer.json @@ -1,11 +1,11 @@ { - "description": "Spencer's website", - "repo": "https://github.com/LeeSpencer/leespencer.github.io", - "owner": { - "username": "LeeSpencer", - "email": "mr.lee.spencer@gmail.com" - }, - "record": { - "CNAME": "leespencer.github.io" - } + "description": "Spencer's website", + "repo": "https://github.com/LeeSpencer/leespencer.github.io", + "owner": { + "username": "LeeSpencer", + "email": "mr.lee.spencer@gmail.com" + }, + "record": { + "CNAME": "leespencer.github.io" + } } diff --git a/domains/stark.json b/domains/stark.json index 582d30863..ceb61f2e8 100644 --- a/domains/stark.json +++ b/domains/stark.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nguyentruongton", - "email": "tonstark.dev@gmail.com" - }, - "record": { - "CNAME": "truongton.vercel.app" - } + "owner": { + "username": "nguyentruongton", + "email": "tonstark.dev@gmail.com" + }, + "record": { + "CNAME": "truongton.vercel.app" + } } diff --git a/domains/status.killuazoldyck.json b/domains/status.killuazoldyck.json index 137660aee..c03099498 100644 --- a/domains/status.killuazoldyck.json +++ b/domains/status.killuazoldyck.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "killuazoldyckreal", - "email": "bk1030798@gmail.com" - }, - "record": { - "CNAME": "statuspage.betteruptime.com" - } + "owner": { + "username": "killuazoldyckreal", + "email": "bk1030798@gmail.com" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } } diff --git a/domains/summon-the-coder.json b/domains/summon-the-coder.json index 5ed790f42..d80088a6d 100644 --- a/domains/summon-the-coder.json +++ b/domains/summon-the-coder.json @@ -1,11 +1,11 @@ { - "description": "Site about me", - "repo": "https://github.com/banana6boom/banana6boom.github.io", - "owner": { - "username": "banana6boom", - "email": "themadhouse@mail.ru" - }, - "record": { - "CNAME": "banana6boom.github.io" - } + "description": "Site about me", + "repo": "https://github.com/banana6boom/banana6boom.github.io", + "owner": { + "username": "banana6boom", + "email": "themadhouse@mail.ru" + }, + "record": { + "CNAME": "banana6boom.github.io" + } } diff --git a/domains/supperfreddo.json b/domains/supperfreddo.json index daaa546fb..121f6e599 100644 --- a/domains/supperfreddo.json +++ b/domains/supperfreddo.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "supperfreddo", - "email": "supperfreddoio@gmail.com", - "discord": "supperfreddo" - }, - "record": { - "CNAME": "supperfreddo.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "record": { + "CNAME": "supperfreddo.vercel.app" + } +} diff --git a/domains/synthara.json b/domains/synthara.json index 7aee4a82d..0c8c720b9 100644 --- a/domains/synthara.json +++ b/domains/synthara.json @@ -1,13 +1,13 @@ { "description": "🚀 Synthara – Your Smart AI Assistant Synthara is an advanced AI-powered virtual assistant designed to enhance productivity, answer queries, and automate tasks efficiently. Built with cutting-edge AI technology, Synthara delivers seamless interactions and intelligent responses.", - "repo": "https://github.com/ArhanAnsari/Synthara", - "owner": { - "username": "ArhanAnsari", - "email": "arhanansari2009@gmail.com", - "x": "https://x.com/codewitharhan", - "discord": "@codewitharhan" - }, - "record": { - "CNAME": "synthara.vercel.app" - } + "repo": "https://github.com/ArhanAnsari/Synthara", + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com", + "x": "https://x.com/codewitharhan", + "discord": "@codewitharhan" + }, + "record": { + "CNAME": "synthara.vercel.app" + } } diff --git a/domains/tainguyen.json b/domains/tainguyen.json index a6759b620..1819fd70e 100644 --- a/domains/tainguyen.json +++ b/domains/tainguyen.json @@ -1,11 +1,11 @@ { - "description" : "this is my profile" , - "repo" : "https://github.com/taitai2107/web_cv" , - "owner" : { - "username" : "taitai2107" , - "email" : "nguyencongkhanhtai21072001@gmail.com" + "description": "this is my profile", + "repo": "https://github.com/taitai2107/web_cv", + "owner": { + "username": "taitai2107", + "email": "nguyencongkhanhtai21072001@gmail.com" }, - "record" : { - "CNAME" : "taitai2107.github.io" + "record": { + "CNAME": "taitai2107.github.io" } } diff --git a/domains/tanish-chahal.json b/domains/tanish-chahal.json index 332880c13..af18388a1 100644 --- a/domains/tanish-chahal.json +++ b/domains/tanish-chahal.json @@ -1,11 +1,11 @@ { - "description": "Tanish's Portfolio", - "repo": "https://github.com/TanishChahal/register", - "owner": { - "username": "TanishChahal", - "email": "TanishChahal5705@gmail.com" - }, - "record": { - "URL": "https://tanishchahal.netlify.app" - } + "description": "Tanish's Portfolio", + "repo": "https://github.com/TanishChahal/register", + "owner": { + "username": "TanishChahal", + "email": "TanishChahal5705@gmail.com" + }, + "record": { + "URL": "https://tanishchahal.netlify.app" + } } diff --git a/domains/tawiah.json b/domains/tawiah.json index cf4f34eec..7582148ea 100644 --- a/domains/tawiah.json +++ b/domains/tawiah.json @@ -1,11 +1,11 @@ { - "description": "Describe the use of this subdomain", - "repo": "https://github.com/tawiahnyt/tawiah", - "owner": { - "username": "tawiahnyt", - "email": "tawiahin4k@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "Describe the use of this subdomain", + "repo": "https://github.com/tawiahnyt/tawiah", + "owner": { + "username": "tawiahnyt", + "email": "tawiahin4k@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/terry.json b/domains/terry.json index 264442cfd..e6de06fe4 100644 --- a/domains/terry.json +++ b/domains/terry.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "realyoterry", - "email": "theterrykim@gmail.com" - }, - "record": { - "CNAME": "realyoterry.vercel.app" - } + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "record": { + "CNAME": "realyoterry.vercel.app" + } } diff --git a/domains/texh.json b/domains/texh.json index b41ddb98b..b1ea1da39 100644 --- a/domains/texh.json +++ b/domains/texh.json @@ -4,6 +4,6 @@ "email": "techtonic709@gmail.com" }, "record": { - "MX": ["mx1.improvmx.com"] + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/thangle.json b/domains/thangle.json index 521a29d38..f3b5eea08 100644 --- a/domains/thangle.json +++ b/domains/thangle.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "thangle9999", - "discord": "thangle9999" - }, - "record": { - "TXT": "vc-domain-verify=thangle.is-a.dev,bd6f80914ee2949ce900" - } + "owner": { + "username": "thangle9999", + "discord": "thangle9999" + }, + "record": { + "TXT": "vc-domain-verify=thangle.is-a.dev,bd6f80914ee2949ce900" + } } diff --git a/domains/thanh-sang.json b/domains/thanh-sang.json index b5ba21e8f..5254349b3 100644 --- a/domains/thanh-sang.json +++ b/domains/thanh-sang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sanG-github", - "email": "sanghuynh20000@gmail.com" - }, - "record": { - "CNAME": "portfolio-logan.netlify.app" - } + "owner": { + "username": "sanG-github", + "email": "sanghuynh20000@gmail.com" + }, + "record": { + "CNAME": "portfolio-logan.netlify.app" + } } diff --git a/domains/thavirak.json b/domains/thavirak.json index c1bf93590..2ae929ee3 100644 --- a/domains/thavirak.json +++ b/domains/thavirak.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "thavirak", - "email": "thavirak@gmail.com" - }, - "record": { - "A": ["76.76.21.21"] - } + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } } diff --git a/domains/thedt.json b/domains/thedt.json index ca92d70ce..af18ae2b3 100644 --- a/domains/thedt.json +++ b/domains/thedt.json @@ -4,6 +4,6 @@ "email": "duongtuan30306@gmail.com" }, "record": { - "CNAME": "thedt-portfolio.pages.dev" + "CNAME": "thedthomepage.pages.dev" } } diff --git a/domains/thorito.json b/domains/thorito.json index 4e348830c..f9b31b22d 100644 --- a/domains/thorito.json +++ b/domains/thorito.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio Website", - "repo": "https://github.com/thorito/thorito.github.io", - "owner": { - "username": "thorito", - "email": "victor.villar.misa@gmail.com" - }, - "record": { - "CNAME": "thorito.github.io" - } + "description": "Personal Portfolio Website", + "repo": "https://github.com/thorito/thorito.github.io", + "owner": { + "username": "thorito", + "email": "victor.villar.misa@gmail.com" + }, + "record": { + "CNAME": "thorito.github.io" + } } diff --git a/domains/thuc.json b/domains/thuc.json index 1bf1a2bbb..5c10b4b73 100644 --- a/domains/thuc.json +++ b/domains/thuc.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "thucngyyen" - }, - "record": { - "CNAME": "thucngyyen.github.io" - } + "owner": { + "username": "thucngyyen" + }, + "record": { + "CNAME": "thucngyyen.github.io" + } } diff --git a/domains/tiep-dv.json b/domains/tiep-dv.json index d957b8d89..06c89907c 100644 --- a/domains/tiep-dv.json +++ b/domains/tiep-dv.json @@ -1,11 +1,11 @@ { - "description": "tiep-dv.is-a.dev : This is my personal notebook", - "repo": "https://github.com/tiep-dv/github-repository", - "owner": { - "username": "tiep-dv", - "email": "tiepduongv@gmail.com" - }, - "record": { - "URL": "https://github.com/tiep-dv" - } + "description": "tiep-dv.is-a.dev : This is my personal notebook", + "repo": "https://github.com/tiep-dv/github-repository", + "owner": { + "username": "tiep-dv", + "email": "tiepduongv@gmail.com" + }, + "record": { + "URL": "https://github.com/tiep-dv" + } } diff --git a/domains/toastedstuff.json b/domains/toastedstuff.json index 58c7f712a..279bc8f6f 100644 --- a/domains/toastedstuff.json +++ b/domains/toastedstuff.json @@ -1,11 +1,11 @@ -{ - "description": "toast's site lol", - "repo": "https://github.com/bpr1ch3/bpr1ch3.github.io", - "owner": { - "username": "bpr1ch3", - "email": "toastedstufff@gmail.com" - }, - "record": { - "CNAME": "bpr1ch3.github.io" - } -} \ No newline at end of file +{ + "description": "toast's site lol", + "repo": "https://github.com/bpr1ch3/bpr1ch3.github.io", + "owner": { + "username": "bpr1ch3", + "email": "toastedstufff@gmail.com" + }, + "record": { + "CNAME": "bpr1ch3.github.io" + } +} diff --git a/domains/tobi.json b/domains/tobi.json index e1589e415..b8f1d131f 100644 --- a/domains/tobi.json +++ b/domains/tobi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tobikli", - "email": "tobikli@pm.me" - }, - "record": { - "URL": "https://tobia.sh" - } + "owner": { + "username": "tobikli", + "email": "tobikli@pm.me" + }, + "record": { + "URL": "https://tobia.sh" + } } diff --git a/domains/tobias.json b/domains/tobias.json index 238276223..bd43dbc9d 100644 --- a/domains/tobias.json +++ b/domains/tobias.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "smarterToby", - "discord": "724712767080235049" - }, - "record": { - "CNAME": "tobiasreuss.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "record": { + "CNAME": "tobiasreuss.vercel.app" + } +} diff --git a/domains/tomek.json b/domains/tomek.json index 04410165b..defbebbd1 100644 --- a/domains/tomek.json +++ b/domains/tomek.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tomek-i" - }, - "record": { - "CNAME": "tomek-i.github.io" - } + "owner": { + "username": "tomek-i" + }, + "record": { + "CNAME": "tomek-i.github.io" + } } diff --git a/domains/trademark.json b/domains/trademark.json index 116efdcd4..59d91b0bb 100644 --- a/domains/trademark.json +++ b/domains/trademark.json @@ -1,11 +1,11 @@ { - "description": "nice subdomain for my personal website.", - "repo": "https://github.com/trmrk/trademark", - "owner": { - "username": "trmrk", - "email": "augmooney@gmail.com" - }, - "record": { - "A": ["75.2.60.5"] - } + "description": "nice subdomain for my personal website.", + "repo": "https://github.com/trmrk/trademark", + "owner": { + "username": "trmrk", + "email": "augmooney@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/tranduytoan.json b/domains/tranduytoan.json index a53d5ed79..9c327da91 100644 --- a/domains/tranduytoan.json +++ b/domains/tranduytoan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tranduytoan", - "email": "toandeptraibodoiqua.10a4@gmail.com" - }, - "record": { - "CNAME": "tranduytoan.github.io" - } + "owner": { + "username": "tranduytoan", + "email": "toandeptraibodoiqua.10a4@gmail.com" + }, + "record": { + "CNAME": "tranduytoan.github.io" + } } diff --git a/domains/truongvanthong.json b/domains/truongvanthong.json index 432565ec8..835cd40cc 100644 --- a/domains/truongvanthong.json +++ b/domains/truongvanthong.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "truongvanthong", - "email": "thongvanpro2002@gmail.com" - }, - "record": { - "CNAME": "truongvanthong.github.io" - } + "owner": { + "username": "truongvanthong", + "email": "thongvanpro2002@gmail.com" + }, + "record": { + "CNAME": "truongvanthong.github.io" + } } diff --git a/domains/tsania.json b/domains/tsania.json index 1e4edfed4..bfb6df136 100644 --- a/domains/tsania.json +++ b/domains/tsania.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tsnzzhr", - "email": "tsnzzhr102@gmail.com" - }, - "record": { - "CNAME": "tsanias.vercel.app" - } + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "record": { + "CNAME": "tsanias.vercel.app" + } } diff --git a/domains/tungbt.json b/domains/tungbt.json index c9ed84615..c4a66578f 100644 --- a/domains/tungbt.json +++ b/domains/tungbt.json @@ -1,20 +1,20 @@ { - "description": "tungbt.is-a.dev : This is my personal blog", - "owner": { - "username": "bthanhtung", - "email": "bthanhtung.se@gmail.com" + "description": "tungbt.is-a.dev : This is my personal blog", + "owner": { + "username": "bthanhtung", + "email": "bthanhtung.se@gmail.com" + }, + "record": { + "URL": "https://tungbt.vercel.app/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/bthanhtung", + "/x": "https://x.com/_bthanhtung", + "/fb": "https://facebook.com/TungDaDev", + "/linkedin": "https://linkedin.com/in/TungDaDev", + "/viblo": "https://viblo.asia/u/bthanhtung" }, - "record": { - "URL": "https://tungbt.vercel.app/" - }, - "redirect_config": { - "custom_paths": { - "/github": "https://github.com/bthanhtung", - "/x": "https://x.com/_bthanhtung", - "/fb": "https://facebook.com/TungDaDev", - "/linkedin": "https://linkedin.com/in/TungDaDev", - "/viblo": "https://viblo.asia/u/bthanhtung" - }, - "redirect_paths": true - } - } \ No newline at end of file + "redirect_paths": true + } +} diff --git a/domains/udit.json b/domains/udit.json index 1583fe5c4..b80065b9a 100644 --- a/domains/udit.json +++ b/domains/udit.json @@ -1,11 +1,11 @@ { - "description": "Udit's portfolio", - "repo": "https://github.com/uditdev1/details", - "owner": { - "username": "uditdev", - "email": "uditdev0008@gmail.com" - }, - "record": { - "CNAME": "details-five.vercel.app" - } -} \ No newline at end of file + "description": "Udit's portfolio", + "repo": "https://github.com/uditdev1/details", + "owner": { + "username": "uditdev", + "email": "uditdev0008@gmail.com" + }, + "record": { + "CNAME": "details-five.vercel.app" + } +} diff --git a/domains/uditha.json b/domains/uditha.json index b3ffe8963..962512690 100644 --- a/domains/uditha.json +++ b/domains/uditha.json @@ -1,9 +1,8 @@ - { - "owner": { - "username": "udithamanohara" - }, - "record": { - "CNAME": "udithamanohara.github.io" - } + "owner": { + "username": "udithamanohara" + }, + "record": { + "CNAME": "udithamanohara.github.io" + } } diff --git a/domains/udyanupal.json b/domains/udyanupal.json index 5c569ad40..b257a8a54 100644 --- a/domains/udyanupal.json +++ b/domains/udyanupal.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "udyanupal" - }, - "record": { - "CNAME": "usupal.vercel.app" - } + "owner": { + "username": "udyanupal" + }, + "record": { + "CNAME": "usupal.vercel.app" + } } diff --git a/domains/umar.json b/domains/umar.json index de9b455a7..063adf298 100644 --- a/domains/umar.json +++ b/domains/umar.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "umarsidiki", - "email": "siddiquiumar0007@gmail.com" - }, - "record": { - "CNAME": "umarsidiki.github.io" - } -} \ No newline at end of file +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "record": { + "CNAME": "umarsidiki.github.io" + } +} diff --git a/domains/url.aditya.json b/domains/url.aditya.json deleted file mode 100644 index bdf74b007..000000000 --- a/domains/url.aditya.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "subdomain for link redirection", - "owner": { - "username": "dedomil", - "email": "ishqaddy@gmail.com", - "twitter": "aadixl", - "discord": "dedomil" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/usamakhalid.json b/domains/usamakhalid.json index 45f90bddc..a07a72c04 100644 --- a/domains/usamakhalid.json +++ b/domains/usamakhalid.json @@ -1,11 +1,11 @@ { - "description": "THIS IS MY PORTFOLIO WEBSITE, But I am still working on it. I will update it soon.", - "repo": "https://github.com/usama0155/portfolio", - "owner": { - "username": "usama0155", - "email": "usamak5453@gmail.com" - }, - "record": { - "CNAME": "usama0155.github.io" - } + "description": "THIS IS MY PORTFOLIO WEBSITE, But I am still working on it. I will update it soon.", + "repo": "https://github.com/usama0155/portfolio", + "owner": { + "username": "usama0155", + "email": "usamak5453@gmail.com" + }, + "record": { + "CNAME": "usama0155.github.io" + } } diff --git a/domains/ushnish.json b/domains/ushnish.json index e0b48b548..104afd249 100644 --- a/domains/ushnish.json +++ b/domains/ushnish.json @@ -9,7 +9,7 @@ "redirect_config": { "custom_paths": { "/github": "https://github.com/UshnishG", - "/linkedin" : "https://www.linkedin.com/in/ushnishghosal" + "/linkedin": "https://www.linkedin.com/in/ushnishghosal" }, "redirect_paths": true } diff --git a/domains/vai.devmatei.json b/domains/vai.devmatei.json deleted file mode 100644 index e7aef920e..000000000 --- a/domains/vai.devmatei.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": ["75.2.60.5"] - } -} \ No newline at end of file diff --git a/domains/varun-kumar.json b/domains/varun-kumar.json index 747ee4f16..be2a09ca9 100644 --- a/domains/varun-kumar.json +++ b/domains/varun-kumar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "varun-kumar-code", - "email": "varunkumar1329@gmail.com" - }, - "record": { - "CNAME": "varun-kumar-code.github.io" - } + "owner": { + "username": "varun-kumar-code", + "email": "varunkumar1329@gmail.com" + }, + "record": { + "CNAME": "varun-kumar-code.github.io" + } } diff --git a/domains/vedant.json b/domains/vedant.json index 1148cc2ea..15624eabb 100644 --- a/domains/vedant.json +++ b/domains/vedant.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "theonlyvedu" - }, - "record": { - "CNAME": "theonlyvedu.github.io" - } + "owner": { + "username": "theonlyvedu" + }, + "record": { + "CNAME": "theonlyvedu.github.io" + } } diff --git a/domains/viernes.json b/domains/viernes.json index d8a7a2d67..a738e08c8 100644 --- a/domains/viernes.json +++ b/domains/viernes.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "br0k3r", - "email": "br0k3r@protonmail.com" - }, - "record": { - "CNAME": "viernes.surge.sh" - } + "owner": { + "username": "br0k3r", + "email": "br0k3r@protonmail.com" + }, + "record": { + "CNAME": "viernes.surge.sh" } - \ No newline at end of file +} diff --git a/domains/viet.json b/domains/viet.json index 17a7d3607..8ed672915 100644 --- a/domains/viet.json +++ b/domains/viet.json @@ -7,9 +7,6 @@ "discord": "vietthedev" }, "record": { - "NS": [ - "evangeline.ns.cloudflare.com", - "salvador.ns.cloudflare.com" - ] + "NS": ["evangeline.ns.cloudflare.com", "salvador.ns.cloudflare.com"] } } diff --git a/domains/vinitshah.json b/domains/vinitshah.json index deca1eb4f..a40cd92da 100644 --- a/domains/vinitshah.json +++ b/domains/vinitshah.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Webisite", - "repo": "https://github.com/vinitshah101/portfolio-website", - "owner": { - "username": "vinitshah101", - "email": "vinitshahofficial@gmail.com" - }, - "record": { - "CNAME": "vinitshah101.github.io" - } + "description": "Portfolio Webisite", + "repo": "https://github.com/vinitshah101/portfolio-website", + "owner": { + "username": "vinitshah101", + "email": "vinitshahofficial@gmail.com" + }, + "record": { + "CNAME": "vinitshah101.github.io" + } } diff --git a/domains/vugx.json b/domains/vugx.json index 36f984eb4..522ba37b9 100644 --- a/domains/vugx.json +++ b/domains/vugx.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "TheVugx", - "email": "thevugx@gmail.com" - }, - "record": { - "CNAME": "thevugx.github.io" - } + "owner": { + "username": "TheVugx", + "email": "thevugx@gmail.com" + }, + "record": { + "CNAME": "thevugx.github.io" + } } diff --git a/domains/w0l1d.json b/domains/w0l1d.json index 362f47d7e..f96d1bd90 100644 --- a/domains/w0l1d.json +++ b/domains/w0l1d.json @@ -4,7 +4,7 @@ "owner": { "username": "w0l1d", "email": "w0l1d.dev@gmail.com", - "linkedin":"linkedin.com/in/w0l1d" + "linkedin": "linkedin.com/in/w0l1d" }, "record": { "CNAME": "www.w0l1d.me" diff --git a/domains/w3teal.json b/domains/w3teal.json index 3c4267490..d8afb6325 100644 --- a/domains/w3teal.json +++ b/domains/w3teal.json @@ -1,19 +1,16 @@ { - "description": "Used for my W3Teal's blog website, Keyoxide verification and ImprovMX.", - "repo": "https://github.com/w3teal/w3teal.github.io", - "owner": { - "username": "w3teal", - "email": "w3teal@gmail.com" - }, - "record": { - "A": ["76.76.21.21"], - "TXT": [ - "aspe:keyoxide.org:YM7J2J5UIVYRWSHRSOTYFYJ2HQ", - "v=spf1 include:spf.improvmx.com ~all" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "description": "Used for my W3Teal's blog website, Keyoxide verification and ImprovMX.", + "repo": "https://github.com/w3teal/w3teal.github.io", + "owner": { + "username": "w3teal", + "email": "w3teal@gmail.com" + }, + "record": { + "A": ["76.76.21.21"], + "TXT": [ + "aspe:keyoxide.org:YM7J2J5UIVYRWSHRSOTYFYJ2HQ", + "v=spf1 include:spf.improvmx.com ~all" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } } diff --git a/domains/wasim.json b/domains/wasim.json index 0543bf374..fdae2d706 100644 --- a/domains/wasim.json +++ b/domains/wasim.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "simbaig", - "email": "wasimbaig000@gmail.com" - }, - "record": { - "CNAME": "wasimb.vercel.app" - } + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "record": { + "CNAME": "wasimb.vercel.app" + } } diff --git a/domains/william2sober.json b/domains/william2sober.json index a29cc6284..89d6ca4f9 100644 --- a/domains/william2sober.json +++ b/domains/william2sober.json @@ -1,14 +1,12 @@ { - "description": "The Website is to show off all my links and Dev Discord server", - "repo": "https://github.com/william2sober/is-a-dev", - "owner": { - "username": "william2sober", - "email": "willliam2sober@gmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ] - }, - "proxied": false + "description": "The Website is to show off all my links and Dev Discord server", + "repo": "https://github.com/william2sober/is-a-dev", + "owner": { + "username": "william2sober", + "email": "willliam2sober@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + }, + "proxied": false } diff --git a/domains/wilson-cordova.json b/domains/wilson-cordova.json index 737221366..6adad4a17 100644 --- a/domains/wilson-cordova.json +++ b/domains/wilson-cordova.json @@ -1,11 +1,11 @@ { - "description": "Subdominio para el portafolio de Wilson Córdova", - "repo": "https://github.com/WSteeven/wilson-steeven.github.io", - "owner": { - "username": "WSteeven", - "email": "wilson972906@gmail.com" - }, - "record": { - "CNAME": "wsteeven.github.io" - } -} \ No newline at end of file + "description": "Subdominio para el portafolio de Wilson Córdova", + "repo": "https://github.com/WSteeven/wilson-steeven.github.io", + "owner": { + "username": "WSteeven", + "email": "wilson972906@gmail.com" + }, + "record": { + "CNAME": "wsteeven.github.io" + } +} diff --git a/domains/www.all.json b/domains/www.all.json index c933a1137..425e8bf7e 100644 --- a/domains/www.all.json +++ b/domains/www.all.json @@ -6,4 +6,4 @@ "record": { "URL": "https://all.is-a.dev/" } -} \ No newline at end of file +} diff --git a/domains/www.encoder.js.json b/domains/www.encoder.js.json index 2d16694fb..78d2124d6 100644 --- a/domains/www.encoder.js.json +++ b/domains/www.encoder.js.json @@ -6,4 +6,4 @@ "record": { "URL": "https://encoder.js.is-a.dev/" } -} \ No newline at end of file +} diff --git a/domains/www.harunabdullah.json b/domains/www.harunabdullah.json index 8a2ef2a61..f535533c9 100644 --- a/domains/www.harunabdullah.json +++ b/domains/www.harunabdullah.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "harunabdullahrakin" - }, - - "record": { - "A": [ - "185.31.40.12" - ] - } + "owner": { + "username": "harunabdullahrakin" + }, + "record": { + "A": ["185.31.40.12"] + } } diff --git a/domains/xavier.json b/domains/xavier.json index fa5b6efeb..e8c7047f4 100644 --- a/domains/xavier.json +++ b/domains/xavier.json @@ -2,10 +2,10 @@ "description": "Xavier Personal Development Site", "repo": "https://github.com/MrSiir/mrsiir.github.io", "owner": { - "username": "MrSiir", - "email": "mrsiir@gmail.com" + "username": "MrSiir", + "email": "mrsiir@gmail.com" }, "record": { - "CNAME": "mrsiir.github.io" + "CNAME": "mrsiir.github.io" } -} \ No newline at end of file +} diff --git a/domains/xenonrexo.json b/domains/xenonrexo.json index ac46d78de..61d5d10fb 100644 --- a/domains/xenonrexo.json +++ b/domains/xenonrexo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "shshams", - "email": "shahadathossenshams@gmail.com" - }, - "record": { - "CNAME": "xenonrexo.vercel.app" - } + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "record": { + "CNAME": "xenonrexo.vercel.app" + } } diff --git a/domains/xhide341.json b/domains/xhide341.json index 8c861139d..4d5e23169 100644 --- a/domains/xhide341.json +++ b/domains/xhide341.json @@ -1,12 +1,12 @@ { - "description": "Hey, I'm hide and I'm a developer", - "repo": "https://github.com/xhide341/portfolio", - "owner": { - "username": "xhide341", - "email": "shawnehgn10@gmail.com", - "discord": "364749406878171136" - }, - "record": { - "CNAME": "xhide341.netlify.app" - } -} \ No newline at end of file + "description": "Hey, I'm hide and I'm a developer", + "repo": "https://github.com/xhide341/portfolio", + "owner": { + "username": "xhide341", + "email": "shawnehgn10@gmail.com", + "discord": "364749406878171136" + }, + "record": { + "CNAME": "xhide341.netlify.app" + } +} diff --git a/domains/xn--3s9h.json b/domains/xn--3s9h.json index e401bb43f..b200d5d17 100644 --- a/domains/xn--3s9h.json +++ b/domains/xn--3s9h.json @@ -1,11 +1,11 @@ { - "description": "I own unicorn.is-a.dev, so I thought it would be funny if I also own xn--3s9h.is-a.dev which is a unicorn-emoji.is-a.dev", - "repo": "https://github.com/6nf0n3/is-a-dev_register", - "owner": { - "username": "bnfone", - "email": "is-a-dev-registration.zbden@simplelogin.com" - }, - "record": { - "URL": "https://unicorn.is-a.dev" - } + "description": "I own unicorn.is-a.dev, so I thought it would be funny if I also own xn--3s9h.is-a.dev which is a unicorn-emoji.is-a.dev", + "repo": "https://github.com/6nf0n3/is-a-dev_register", + "owner": { + "username": "bnfone", + "email": "is-a-dev-registration.zbden@simplelogin.com" + }, + "record": { + "URL": "https://unicorn.is-a.dev" + } } diff --git a/domains/yas.json b/domains/yas.json index e22f156c1..d3b5a8a8b 100644 --- a/domains/yas.json +++ b/domains/yas.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio", - "repo": "https://github.com/yashokuu/yashokuu.github.io", - "owner": { - "username": "yashoukuu", - "email": "yas.studios.en@gmail.com" - }, - "record": { - "CNAME": "yashokuu.github.io" - } + "description": "My Portfolio", + "repo": "https://github.com/yashokuu/yashokuu.github.io", + "owner": { + "username": "yashoukuu", + "email": "yas.studios.en@gmail.com" + }, + "record": { + "CNAME": "yashokuu.github.io" + } } diff --git a/domains/yatsuki.json b/domains/yatsuki.json new file mode 100644 index 000000000..5e975566f --- /dev/null +++ b/domains/yatsuki.json @@ -0,0 +1,11 @@ +{ + "description": "Personal dev domain for my portfolio, testing purposes, and self-hosting via Cloudflare Tunnel.", + "owner": { + "username": "Turkitutu", + "email": "turkitututfm@gmail.com", + "discord": "yatsuki." + }, + "record": { + "NS": ["ezra.ns.cloudflare.com", "teagan.ns.cloudflare.com"] + } +} diff --git a/domains/yeasin.json b/domains/yeasin.json index a54bc6124..9cb2a9e92 100644 --- a/domains/yeasin.json +++ b/domains/yeasin.json @@ -1,11 +1,11 @@ { - "description": "yeasin.is-a.dev", - "owner": { - "username": "yeasiin", - "email": "iamyeasiin@gmail.com" - }, - "record": { - "CNAME": "yeasiin.github.io" - }, - "proxied": true -} \ No newline at end of file + "description": "yeasin.is-a.dev", + "owner": { + "username": "yeasiin", + "email": "iamyeasiin@gmail.com" + }, + "record": { + "CNAME": "yeasiin.github.io" + }, + "proxied": true +} diff --git a/domains/yellososa.json b/domains/yellososa.json index d5141d19b..5673378fa 100644 --- a/domains/yellososa.json +++ b/domains/yellososa.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "Dn1w", - "discord": "923208452581511199", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UYEThSdIZTWX2_fHUJL6USuvkXNHtizdv6i6tq7VlLbxQ8hB9ShSrlEvwEbAL7xapElXx-Zjn9-DeeQLlpD6evOb-qeUOLp2bBA_TK9RmLnJnQEfTNsnjZAJwkd_IZUWtSoPVISyooLfEIFROAalmyBvOqO4jo6f_VS62akDJjFkpNHGizyTy3Ap4o4ECYhw3DJDpj70ZUfYlMym4IR9vBx-FENksCdRszGj9uSnCqrut0ebez8BhS4orxwF3iyh2zjOJ9RnvZdaBUM_T0bovHD-4W26p4PiOXVlJG-TPiLAA1oJrpRTjO4pIOeokstysYJWCfZMtz8Vzf1wsAXUnw.AtmbV8Ll8uA5ExuCKoLJAA.rw-ak74Tw-ynZRDyHMgKIwwy6-i-RNUSCEHQrvr4lK24iT5nsdqkqzBPFbIAnpbL-UT9VjlXF5JE-VDkg4p9iXaTPcNm11FSaqOEFSwEPIY.LbsXNr4vTuO14AqbVrEXJA" - }, - - "record": { - "CNAME": "yellososa.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "Dn1w", + "discord": "923208452581511199", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UYEThSdIZTWX2_fHUJL6USuvkXNHtizdv6i6tq7VlLbxQ8hB9ShSrlEvwEbAL7xapElXx-Zjn9-DeeQLlpD6evOb-qeUOLp2bBA_TK9RmLnJnQEfTNsnjZAJwkd_IZUWtSoPVISyooLfEIFROAalmyBvOqO4jo6f_VS62akDJjFkpNHGizyTy3Ap4o4ECYhw3DJDpj70ZUfYlMym4IR9vBx-FENksCdRszGj9uSnCqrut0ebez8BhS4orxwF3iyh2zjOJ9RnvZdaBUM_T0bovHD-4W26p4PiOXVlJG-TPiLAA1oJrpRTjO4pIOeokstysYJWCfZMtz8Vzf1wsAXUnw.AtmbV8Ll8uA5ExuCKoLJAA.rw-ak74Tw-ynZRDyHMgKIwwy6-i-RNUSCEHQrvr4lK24iT5nsdqkqzBPFbIAnpbL-UT9VjlXF5JE-VDkg4p9iXaTPcNm11FSaqOEFSwEPIY.LbsXNr4vTuO14AqbVrEXJA" + }, + + "record": { + "CNAME": "yellososa.github.io" + } +} diff --git a/domains/yohanesrioirsan.json b/domains/yohanesrioirsan.json index b3386cce7..dcc978126 100644 --- a/domains/yohanesrioirsan.json +++ b/domains/yohanesrioirsan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yohanesrioirsan", - "email": "rioirsan8@gmail.com" - }, - "record": { - "CNAME": "yohanesrioirsan.vercel.app" - } + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "record": { + "CNAME": "yohanesrioirsan.vercel.app" + } } diff --git a/domains/youssef.json b/domains/youssef.json index 72737d5b5..94f62f7dc 100644 --- a/domains/youssef.json +++ b/domains/youssef.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "YoussefDevPro", - "email": "youssef.pro.coding@gmail.com" - }, - "record": { - "CNAME": "youssef-portfolio-sigma-youssefdevpros-projects.vercel.app" - } + "owner": { + "username": "YoussefDevPro", + "email": "youssef.pro.coding@gmail.com" + }, + "record": { + "CNAME": "youssef-portfolio-sigma-youssefdevpros-projects.vercel.app" + } } diff --git a/domains/ysoseriouz.json b/domains/ysoseriouz.json index fd0e82bd3..ed5fa1f31 100644 --- a/domains/ysoseriouz.json +++ b/domains/ysoseriouz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ysoseriouz", - "email": "thanh.nguyen.ntt2612@gmail.com" - }, - "record": { - "CNAME": "ysoseriouz.com" - } + "owner": { + "username": "ysoseriouz", + "email": "thanh.nguyen.ntt2612@gmail.com" + }, + "record": { + "CNAME": "ysoseriouz.com" + } } diff --git a/domains/zara.json b/domains/zara.json index 521b04e19..b5b4b0676 100644 --- a/domains/zara.json +++ b/domains/zara.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tutupharirabu", - "email": "code.zharaurien@gmail.com" - }, - "record": { - "CNAME": "portofolio-pribadi-irfan-zharauri.vercel.app" - } -} \ No newline at end of file + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "record": { + "CNAME": "portofolio-pribadi-irfan-zharauri.vercel.app" + } +} diff --git a/domains/zehao.json b/domains/zehao.json index dd9f8938b..d2f99bc95 100644 --- a/domains/zehao.json +++ b/domains/zehao.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "2eha0", - "email": "zehao93@outlook.com" - }, - "record": { - "CNAME": "blog-pi-eight.vercel.app" - } + "owner": { + "username": "2eha0", + "email": "zehao93@outlook.com" + }, + "record": { + "CNAME": "blog-pi-eight.vercel.app" + } } diff --git a/domains/zerot69.json b/domains/zerot69.json index c4654bd07..1b2d17044 100644 --- a/domains/zerot69.json +++ b/domains/zerot69.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "zerot69", - "email": "ngo.vo.hoang.tuan.69@gmail.com" - }, - "record": { - "CNAME": "zerot69.github.io" - } + "owner": { + "username": "zerot69", + "email": "ngo.vo.hoang.tuan.69@gmail.com" + }, + "record": { + "CNAME": "zerot69.github.io" + } } diff --git a/domains/zmail._domainkey.devarnav.json b/domains/zmail._domainkey.devarnav.json deleted file mode 100644 index baa38f9b5..000000000 --- a/domains/zmail._domainkey.devarnav.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ArnavBarway", - "email": "playnav.yt@gmail.com" - }, - "record": { - "TXT": [ - "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB" - ] - } -} diff --git a/tests/domains.test.js b/tests/domains.test.js index cecb2159f..1804e5037 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -21,31 +21,14 @@ function getDomainData(subdomain) { } } -function getParentSubdomain(subdomain) { - const parts = subdomain.split("."); - - if (parts.length <= 1) return null; // No parent for top-level subdomains - - // Try to find the parent subdomain by iterating over the parts - for (let i = parts.length - 1; i > 0; i--) { - const potentialParent = parts.slice(i - 1).join("."); - - if (files.includes(`${potentialParent}.json`)) { - return potentialParent; - } - } - - return null; -} - t("Nested subdomains should not exist without a parent subdomain", (t) => { files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parentDomain = subdomain.split(".").reverse()[0]; - if (subdomain.split(".").length > 1) { - const parentSubdomain = getParentSubdomain(subdomain); + if (parentDomain !== subdomain) { t.true( - parentSubdomain && files.includes(`${parentSubdomain}.json`), + parentDomain && files.includes(`${parentDomain}.json`), `${file}: Parent subdomain does not exist` ); } @@ -55,12 +38,12 @@ t("Nested subdomains should not exist without a parent subdomain", (t) => { t("Nested subdomains should not exist if the parent subdomain has NS records", (t) => { files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parentDomain = subdomain.split(".").reverse()[0]; - if (subdomain.split(".").length > 1) { - const parentSubdomain = getParentSubdomain(subdomain); - const parentDomain = getDomainData(parentSubdomain); + if (parentDomain !== subdomain) { + const parentData = getDomainData(parentDomain); - t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`); + t.true(!parentData.record.NS, `${file}: Parent subdomain has NS records`); } }); }); @@ -68,14 +51,14 @@ t("Nested subdomains should not exist if the parent subdomain has NS records", ( t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parentDomain = subdomain.split(".").reverse()[0]; - if (subdomain.split(".").length > 1) { + if (parentDomain !== subdomain) { const data = getDomainData(subdomain); - const parentSubdomain = getParentSubdomain(subdomain); - const parentDomain = getDomainData(parentSubdomain); + const parentData = getDomainData(parentDomain); t.true( - data.owner.username.toLowerCase() === parentDomain.owner.username.toLowerCase(), + data.owner.username.toLowerCase() === parentData.owner.username.toLowerCase(), `${file}: Owner does not match the parent subdomain` ); } diff --git a/tests/json.test.js b/tests/json.test.js index 3894f9567..ba51a9e75 100644 --- a/tests/json.test.js +++ b/tests/json.test.js @@ -1,7 +1,6 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const { promisify } = require("util"); const ignoredRootJSONFiles = ["package-lock.json", "package.json"]; diff --git a/tests/pr.test.js b/tests/pr.test.js index 8456e1576..eccab0791 100644 --- a/tests/pr.test.js +++ b/tests/pr.test.js @@ -2,7 +2,8 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const trustedUsers = require("../util/trusted.json").map((u) => u.toLowerCase()); +const requiredEnvVars = ["CHANGED_FILES", "PR_AUTHOR", "PR_AUTHOR_ID"]; +const trustedUsers = require("../util/trusted.json").map((u) => u.id); function getDomainData(subdomain) { try { @@ -14,14 +15,15 @@ function getDomainData(subdomain) { } t("Users can only update their own subdomains", (t) => { - if (process.env.PR_AUTHOR && process.env.CHANGED_FILES) { + if (requiredEnvVars.every((v) => process.env[v])) { const changedFiles = JSON.parse(process.env.CHANGED_FILES); const prAuthor = process.env.PR_AUTHOR.toLowerCase(); + const prAuthorId = process.env.PR_AUTHOR_ID; const changedJSONFiles = changedFiles .filter((file) => file.startsWith("domains/")) .map((file) => path.basename(file)); - if (!changedJSONFiles || trustedUsers.includes(prAuthor)) return t.pass(); + if (!changedJSONFiles || trustedUsers.includes(prAuthorId)) return t.pass(); if (process.env.PR_LABELS && process.env.PR_LABELS.includes("bypass-owner-check")) return t.pass(); changedJSONFiles.forEach((file) => { diff --git a/tests/records.test.js b/tests/records.test.js index fbbeee156..52fb1f677 100644 --- a/tests/records.test.js +++ b/tests/records.test.js @@ -2,7 +2,7 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TXT", "URL"]); +const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TLSA", "TXT", "URL"]); const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/; const ipv4Regex = /^(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}$/; const ipv6Regex = @@ -98,8 +98,8 @@ function validateRecordValues(t, data, file) { value.forEach((record, idx) => { t.true( - typeof record === "string", - `${file}: Record value for ${key} should be a string at index ${idx}` + typeof record === "string" || typeof record === "object", + `${file}: Record value for ${key} should be a string or an object at index ${idx}` ); if (key === "A") { @@ -112,7 +112,22 @@ function validateRecordValues(t, data, file) { const expandedIPv6 = expandIPv6(record); t.true(ipv6Regex.test(expandedIPv6), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); t.true(validateIPv6(expandedIPv6), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); - } else if (["MX", "NS"].includes(key)) { + } else if (key === "MX") { + t.true( + typeof record === "object" || typeof record === "string", + `${file}: Record value for ${key} should be an object or a string at index ${idx}` + ); + + if (typeof record === "string") { + t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); + } else { + t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`); + t.true( + Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535, + `${file}: Invalid priority for ${key} at index ${idx}` + ); + } + } else if (key === "NS") { t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); } }); @@ -140,8 +155,8 @@ function validateRecordValues(t, data, file) { } } - // CAA, DS, SRV validations - if (["CAA", "DS", "SRV"].includes(key)) { + // CAA, DS, SRV, TLSA validations + if (["CAA", "DS", "SRV", "TLSA"].includes(key)) { t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); value.forEach((record, idx) => { @@ -153,41 +168,55 @@ function validateRecordValues(t, data, file) { if (key === "CAA") { t.true( ["issue", "issuewild", "iodef"].includes(record.tag), - `${file}: Invalid tag for CAA at index ${idx}` + `${file}: Invalid tag for ${key} at index ${idx}` ); - t.true(typeof record.value === "string", `${file}: Invalid value for CAA at index ${idx}`); + t.true(typeof record.value === "string", `${file}: Invalid value for ${key} at index ${idx}`); t.true( isValidHostname(record.value) || record.value === ";", - `${file}: Value must be a hostname or semicolon for CAA at index ${idx}` + `${file}: Value must be a hostname or semicolon for ${key} at index ${idx}` ); } else if (key === "DS") { t.true( Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535, - `${file}: Invalid key_tag for DS at index ${idx}` + `${file}: Invalid key_tag for ${key} at index ${idx}` ); t.true( Number.isInteger(record.algorithm) && record.algorithm >= 0 && record.algorithm <= 255, - `${file}: Invalid algorithm for DS at index ${idx}` + `${file}: Invalid algorithm for ${key} at index ${idx}` ); t.true( Number.isInteger(record.digest_type) && record.digest_type >= 0 && record.digest_type <= 255, - `${file}: Invalid digest_type for DS at index ${idx}` + `${file}: Invalid digest_type for ${key} at index ${idx}` ); - t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for DS at index ${idx}`); + t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for ${key} at index ${idx}`); } else if (key === "SRV") { t.true( Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535, - `${file}: Invalid priority for SRV at index ${idx}` + `${file}: Invalid priority for ${key} at index ${idx}` ); t.true( Number.isInteger(record.weight) && record.weight >= 0 && record.weight <= 65535, - `${file}: Invalid weight for SRV at index ${idx}` + `${file}: Invalid weight for ${key} at index ${idx}` ); t.true( Number.isInteger(record.port) && record.port >= 0 && record.port <= 65535, - `${file}: Invalid port for SRV at index ${idx}` + `${file}: Invalid port for ${key} at index ${idx}` ); - t.true(isValidHostname(record.target), `${file}: Invalid target for SRV at index ${idx}`); + t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`); + } else if (key === "TLSA") { + t.true( + Number.isInteger(record.usage) && record.usage >= 0 && record.usage <= 255, + `${file}: Invalid usage for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.selector) && record.selector >= 0 && record.selector <= 255, + `${file}: Invalid selector for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.matchingType) && record.matchingType >= 0 && record.matchingType <= 255, + `${file}: Invalid matchingType for ${key} at index ${idx}` + ); + t.true(isValidHexadecimal(record.certificate), `${file}: Invalid certificate for ${key} at index ${idx}`); } }); } diff --git a/util/reserved.json b/util/reserved.json index 65d342324..ec562a4f0 100644 --- a/util/reserved.json +++ b/util/reserved.json @@ -1,4 +1,5 @@ [ + "about", "account", "accounts", "admin", @@ -29,6 +30,7 @@ "dns", "doc", "documentation", + "domain", "email", "example", "feedback", @@ -70,6 +72,7 @@ "notification", "notifications", "ns", + "ns0", "ns1", "ns2", "ns3", @@ -106,6 +109,7 @@ "statistics", "stats", "status", + "subdomain", "support", "sys", "system", @@ -119,6 +123,17 @@ "webmaster", "whois", "ww", + "ww0", + "ww1", + "ww2", + "ww3", + "ww4", + "ww5", + "ww6", + "ww7", + "ww8", + "ww9", + "www0", "www1", "www2", "www3", diff --git a/util/trusted.json b/util/trusted.json index 4b1b9b611..f8b95d666 100644 --- a/util/trusted.json +++ b/util/trusted.json @@ -1,8 +1,8 @@ [ - "DEV-DIBSTER", - "iostpa", - "is-a-dev-bot", - "orangci", - "Stef-00012", - "wdhdev" + { "username": "iostpa", "id": 69630113 }, + { "username": "is-a-dev-bot", "id": 106927495 }, + { "username": "orangci", "id": 90866414 }, + { "username": "Stef-00012", "id": 81536172 }, + { "username": "WDH-2", "id": 115670568 }, + { "username": "wdhdev", "id": 87287585 } ]