diff --git a/domains/abhishek.json b/domains/abhishek.json index 0a8fb0ec5..b0097a288 100644 --- a/domains/abhishek.json +++ b/domains/abhishek.json @@ -6,6 +6,6 @@ "email": "abhishek.sankar.in@protonmail.com" }, "record": { - "CNAME": "nullpointxr.github.io" + "CNAME": "abhisheks.me" } -} \ No newline at end of file +} diff --git a/domains/ahmed.json b/domains/ahmed.json new file mode 100644 index 000000000..39d15aa75 --- /dev/null +++ b/domains/ahmed.json @@ -0,0 +1,11 @@ +{ + "description": "Ahmed's personal site", + "repo": "https://github.com/Dropheart", + "owner": { + "username": "dropheart", + "email": "ahmed@techfromtheheart.com" + }, + "record": { + "URL": "https://techfromtheheart.com" + } +} diff --git a/domains/apoloz.json b/domains/apoloz.json new file mode 100644 index 000000000..e1e8f14ae --- /dev/null +++ b/domains/apoloz.json @@ -0,0 +1,11 @@ +{ + "description": "Anatoliy Poloz portfolio", + "repo": "https://github.com/tolyod/tolyod.github.io", + "owner": { + "username": "tolyod", + "email": "anatoliy.poloz@gmail.com" + }, + "record": { + "CNAME": "tolyod.github.io" + } +} diff --git a/domains/ayanamy.json b/domains/ayanamy.json new file mode 100644 index 000000000..4fbe8679c --- /dev/null +++ b/domains/ayanamy.json @@ -0,0 +1,12 @@ +{ + "description": "AyanAmy's About Page", + "repo": "https://github.com/jy1263/jy1263.github.io", + "owner": { + "username": "jy1263", + "email": "", + "twitter": "jy126orjy126" + }, + "record": { + "CNAME": "jy1263.github.io" + } +} diff --git a/domains/beno.json b/domains/beno.json new file mode 100644 index 000000000..9c0ceb3e8 --- /dev/null +++ b/domains/beno.json @@ -0,0 +1,11 @@ +{ + "description": "Beno's personal developer website", + "repo": "https://github.com/benosambinu/benosambinu.github.io", + "owner": { + "username": "benosambinu", + "email": "benosbs@gmail.com" + }, + "record": { + "CNAME": "benosambinu.github.io" + } +} diff --git a/domains/dipan.json b/domains/dipan.json index acdf3dbc4..cd7f19ce0 100644 --- a/domains/dipan.json +++ b/domains/dipan.json @@ -6,6 +6,6 @@ "email": "dipanroy@mindwebs.org" }, "record": { - "CNAME": "dipanroy.com" + "A": "115.187.62.14" } } diff --git a/domains/hzmi.json b/domains/hzmi.json index 195842361..7c46a5001 100644 --- a/domains/hzmi.json +++ b/domains/hzmi.json @@ -6,6 +6,6 @@ "email": "contact@hzmi.xyz" }, "record": { - "CNAME": "hzmi.me" + "URL": "https://hzmi.me" } } diff --git a/domains/pxseu.json b/domains/pxseu.json new file mode 100644 index 000000000..fcaf57524 --- /dev/null +++ b/domains/pxseu.json @@ -0,0 +1,11 @@ +{ + "description": "Pxseu's website!", + "owner": { + "username": "pxseu", + "email": "", + "twitter": "@pxseu" + }, + "record": { + "URL": "https://www.pxseu.com" + } +} diff --git a/domains/wisnu.json b/domains/wisnu.json index 9e6462be1..1f24aa79c 100644 --- a/domains/wisnu.json +++ b/domains/wisnu.json @@ -6,6 +6,6 @@ "email": "waxaranai@gmail.com" }, "record": { - "CNAME": "wisnu.me" + "URL": "https://wisnu.me" } -} +} \ No newline at end of file diff --git a/scripts/reply.js b/scripts/reply.js index 71d78bd23..233f56ed4 100644 --- a/scripts/reply.js +++ b/scripts/reply.js @@ -24,15 +24,13 @@ Don't worry, you can create a new pull request with the corrections ## Love/Hate the service? **Love it?** Leave it a **star**! Also consider donating so that I can keep this service running forever! - **Hate it?** Please leave your feedback by [creating an issue](https://github.com/is-a-dev/register/issues/new/choose). I would really like to keep improving this service for other users. ## Wanna support this project? Help me in my mission to keep this service alive forever by donating! -Buy Me A Coffee -Liberapay recurring donation button +Buy Me A Coffee Liberapay recurring donation button `; diff --git a/scripts/verify-record.sh b/scripts/verify-record.sh new file mode 100644 index 000000000..a4fc0da6a --- /dev/null +++ b/scripts/verify-record.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +sed \ + -e 's/\.json.*$/.is-a.dev/g' \ + -e 's/^\s*domains\///g' \ + -e '/^\s*$/d' \ +| while read domain; do + echo "$domain"; + dig "$domain" +noall +answer && echo "done" || echo "x"; +done; +