diff --git a/.envrc b/.envrc
new file mode 100644
index 000000000..4a4726a5c
--- /dev/null
+++ b/.envrc
@@ -0,0 +1 @@
+use_nix
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 000000000..f149fe328
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1,4 @@
+* @phenax
+
+domains/ @is-a-dev/maintainers
+*.md @is-a-dev/maintainers
diff --git a/.github/workflows/stale.tmp b/.github/workflows/stale.yml
similarity index 100%
rename from .github/workflows/stale.tmp
rename to .github/workflows/stale.yml
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index c3d0ea2d2..e6487f74a 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -1,8 +1,10 @@
# Code of conduct
This is a Code of Conduct for any interactions in this repository. This includes pull requests, issues, etc.
-* **Don't be a dick** - It's not that complicated. Just be nice to people
-* **Don't abuse the service** - This service is intended for developers to get a pretty url for their personal websites
+* **Don't be a dick** - It's not that complicated. Just be nice to people.
+* **Don't abuse the service** - This service is intended for developers to get a pretty URL for their personal websites.
+* **No Wrongful Uses Of The Service** - Do not use this site as a way, to promote hacking, cheating, committing fraud, and other illegal activites.
+ *(cheating isn't illegal but it is still considered abuse of this service)*
If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue.
-The abuse reports will be investigated and the necassary action will be taken
+The abuse reports will be investigated and the necessary action will be taken!
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2a3e7da99..965261eda 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,24 +1,24 @@
# Contributing
When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
-You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md)
+You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md).
## Pull requests
You can create an pull request for the following reasons -
-* Adding, changing or removing a domain file you own
-* Fixing a bug in the scripts or CI
-* Fix an error in the documentation
+* Adding, changing or removing a domain file you own.
+* Fixing a bug in the scripts or CI.
+* Fix an error in the documentation.
#### Domains
Changes to domain files will follow the given process -
-* PR will be reviewed and merged to `main` branch
-* Currently, the publishing of records is done manually. This will be automated soon with releases
-* The changes should reflect soon after publishing
+* PR will be reviewed and merged to `main` branch.
+* The records will be published as soon as the PR is merged.
+* The changes should reflect soon after publishing.
## Issues
-* **Report an abusive domain** - Create a new issue with the label `report-abuse`
-* **Report a problem with your domain** - Create a new issue with the label `support`
-* **Suggestions** - Create a new issue with the label `suggestion`
-* **For any questions** - Create a new issue with the label `question`
-* **Report any other issues related to this repository** - Create a new issue with any label that fits
+* **Report an abusive domain** - Create a new issue with the label `report-abuse`.
+* **Report a problem with your domain** - Create a new issue with the label `support`.
+* **Suggestions** - Create a new issue with the label `suggestion`.
+* **For any questions** - Create a new issue with the label `question`.
+* **Report any other issues related to this repository** - Create a new issue with any label that fits.
diff --git a/README.md b/README.md
index 94edfc614..0e1c45a62 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,14 @@

-
+
**is-a-dev** is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
+

+
## How do I register?
-* Fork this project
+* Fork this repository
* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev`
* [Read the docs](./docs)
* The PR will be reviewed and merged
@@ -20,19 +22,25 @@ This project is a free and open source service for developers and will stay that
Please consider donating to help me keep this running forever!
+Also, consider starring this repo!
+
+
## Similar services
You should also checkout -
-* [js.org](https://github.com/js-org/js.org/tree/master)
-* [thedev.id](https://github.com/fransallen/thedev.id)
+* [js.org](https://github.com/js-org/js.org/tree/master) (**NOTE**: `js.org` is specifically for JS focused project)
## Uptime
+
+
+
+
You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw)
diff --git a/docs/domains-json.md b/docs/domains-json.md
index e502fb144..c1f0c19e6 100644
--- a/docs/domains-json.md
+++ b/docs/domains-json.md
@@ -4,6 +4,9 @@ To register `my-domain.is-a.dev`, you need to create a `domains/my-domain.json`
### Filename
The file name must pass the following criteria -
+
+> NOTE: You can use `.` (dots) in your file name (for registering `blog.mysubdomain.is-a.dev`) but each of the following criteria must be valid for all part of your subdomain
+
* Must be alpha-numeric in lowercase with dashes as seperators
* Must be more than 2 characters long
* Must have a `.json` file extension
@@ -25,7 +28,7 @@ In the owner object, the fields `username` and `email` are required. You can how
}
```
-If you don't wish to share your email address here, please share your twitter or any other social media account.
+If you don't wish to share your email address here, please share your twitter, discord or any other social media account.
```json
{
"owner": {
@@ -100,7 +103,7 @@ MX must be a list of host names
```
* **TXT**
-TXT can be any string value
+TXT can be any string value. **You can only have 1 TXT record.**
```json
{
"record": {
diff --git a/docs/hosted-at/github-pages.md b/docs/hosted-at/github-pages.md
index 14b04b524..7806c0639 100644
--- a/docs/hosted-at/github-pages.md
+++ b/docs/hosted-at/github-pages.md
@@ -17,7 +17,7 @@ Create a json file inside the `domains` directory (`domains/.json`) w
"twitter": "your-twitter-username"
},
"record": {
- "CNAME": "github-username.github.io"
+ "CNAME": ".github.io"
}
}
```
diff --git a/domains/0x0.json b/domains/0x0.json
new file mode 100644
index 000000000..050170310
--- /dev/null
+++ b/domains/0x0.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "pythonmcpi",
+ "email": "user3456@insomnia247.nl",
+ "irc": "user3456@irc.insomnia247.nl/#shells",
+ "discord": "Little Furret#7901",
+ "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
+ },
+ "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
+ "record": {
+ "CNAME": "insomnia247.nl"
+ }
+}
diff --git a/domains/0x3st.json b/domains/0x3st.json
new file mode 100644
index 000000000..a9a3f8263
--- /dev/null
+++ b/domains/0x3st.json
@@ -0,0 +1,12 @@
+{
+ "description": "Yamaishi's website",
+ "repo": "https://github.com/0x3st/0x3st.github.io",
+ "owner": {
+ "username": "0x3st",
+ "email": "t.yamaishi@qq.com",
+ "twitter": "TenkutiYamaishi"
+ },
+ "record": {
+ "CNAME": "0x3st.github.io"
+ }
+}
diff --git a/domains/2096779623.json b/domains/2096779623.json
new file mode 100644
index 000000000..98f4c4939
--- /dev/null
+++ b/domains/2096779623.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "2096779623",
+ "email": "2096779623@qq.com",
+ "telegram": "utermux_blog"
+ },
+ "record": {
+ "URL": "https://www.utermux.dev"
+ }
+}
diff --git a/domains/3pls0de.json b/domains/3pls0de.json
new file mode 100644
index 000000000..849a5e20c
--- /dev/null
+++ b/domains/3pls0de.json
@@ -0,0 +1,11 @@
+{
+ "description": "3pls0de.is-a.dev.",
+ "repo": "https://github.com/3pls0de",
+ "owner": {
+ "username": "3pls0de",
+ "email": "naji.aka58@gmail.com"
+ },
+ "record": {
+ "URL": "https://lostpipel.blogspot.com"
+ }
+}
\ No newline at end of file
diff --git a/domains/a-ditya.json b/domains/a-ditya.json
new file mode 100644
index 000000000..9d9fe4af7
--- /dev/null
+++ b/domains/a-ditya.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "AdityaOP2008",
+ "discord": "844843800874582048",
+ "email": "bw.dev@yahoo.com"
+ },
+ "record": {
+ "CNAME": "c7106b01-6b1c-4d4f-b0a5-6c82b3e9a4a4.id.repl.co"
+ }
+}
diff --git a/domains/a-furry.json b/domains/a-furry.json
new file mode 100644
index 000000000..531fec104
--- /dev/null
+++ b/domains/a-furry.json
@@ -0,0 +1,12 @@
+{
+ "description": "Ashley's website",
+ "repo": "https://github.com/Sxshley/sxshley.github.io",
+ "owner": {
+ "username": "Sxshley",
+ "email": "tsuuunyaaa@gmail.com",
+ "twitter": "TsU1"
+ },
+ "record": {
+ "CNAME": "sxshley.github.io"
+ }
+}
diff --git a/domains/aakanksha.json b/domains/aakanksha.json
new file mode 100644
index 000000000..b02cd9637
--- /dev/null
+++ b/domains/aakanksha.json
@@ -0,0 +1,11 @@
+{
+ "description": "Aakanksha's .is-a.dev domain",
+ "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
+ "owner": {
+ "username": "aakankshabhende",
+ "email": "aakanksha0407@gmail.com"
+ },
+ "record": {
+ "CNAME": "aakankshabhende.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/aakashs.json b/domains/aakashs.json
new file mode 100644
index 000000000..88fa2b76f
--- /dev/null
+++ b/domains/aakashs.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/Aakash-kun/Aakash-kun.github.io",
+ "owner": {
+ "username": "Aakash-kun",
+ "email": "aakashshivhare1704@gmail.com",
+ "discord": "AakashS#9630"
+ },
+ "record": {
+ "CNAME": "Aakash-kun.github.io"
+ }
+}
diff --git a/domains/aarno.json b/domains/aarno.json
new file mode 100644
index 000000000..5d3f92cc3
--- /dev/null
+++ b/domains/aarno.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Website.",
+ "repo": "https://github.com/DorianAarno/dorianaarno.github.io",
+ "owner": {
+ "username": "DorianAarno",
+ "email": "aarnodorian56@gmail.com"
+ },
+ "record": {
+ "CNAME": "dorianaarno.github.io"
+ }
+}
diff --git a/domains/aayush.json b/domains/aayush.json
new file mode 100644
index 000000000..dd0905db8
--- /dev/null
+++ b/domains/aayush.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aayush-Rajagopalan",
+ "email": "aayush.rajagopalan77@gmail.com"
+ },
+ "record": {
+ "CNAME": "byteserver.tech"
+ }
+}
diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json
new file mode 100644
index 000000000..1f76e391d
--- /dev/null
+++ b/domains/aayushakacloudy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Aayush aka Cloudy's Arcade Home",
+ "repo": "https://github.com/gamedevCloudy/gamedevCloudy.github.io",
+ "owner": {
+ "username": "gamedevCloudy",
+ "email": "aaayush.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gamedevCloudy.github.io"
+ }
+}
diff --git a/domains/abdulrahman.json b/domains/abdulrahman.json
new file mode 100644
index 000000000..68a0af4b5
--- /dev/null
+++ b/domains/abdulrahman.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal website for my career.",
+ "repo": "https://github.com/abdulrahman1s/my-website",
+ "owner": {
+ "username": "abdulrahman1s",
+ "email": "abdulrahman.8alah@gmail.com"
+ },
+ "record": {
+ "URL": "https://themaestro.site"
+ }
+}
diff --git a/domains/abhay7.json b/domains/abhay7.json
index 4b31e5771..5c618f37e 100644
--- a/domains/abhay7.json
+++ b/domains/abhay7.json
@@ -1,12 +1,17 @@
{
- "description": "Abhay's portflio site",
- "repo": "https://replit.com/@EpicGamer007/EpicGamer007",
+ "description": "Abhay's portfolio site",
+ "repo": "https://github.com/EpicGamer007/portfolio-site",
"owner": {
"username": "EpicGamer007",
"email": "",
"discord": "EpicGamer007#5702"
},
"record": {
- "CNAME": "26ece53e-5ca7-40d2-a7ad-cc13eb22808d.id.repl.co"
+ "URL": "https://abhay.runs-on.tech",
+ "MX": [
+ "mx1.forwardemail.net",
+ "mx2.forwardemail.net"
+ ],
+ "TXT": "forward-email=contact:forwardemail.nwyxt@aleeas.com,from:forwardemail.nwyxt@aleeas.com"
}
}
diff --git a/domains/abku.json b/domains/abku.json
new file mode 100644
index 000000000..c6fcaf8d8
--- /dev/null
+++ b/domains/abku.json
@@ -0,0 +1,11 @@
+{
+ "description": "Abku personal website.",
+ "repo": "https://github.com",
+ "owner": {
+ "username": "Abku",
+ "email": "abku@abku.xyz"
+ },
+ "record": {
+ "URL": "https://abku.xyz"
+ }
+ }
\ No newline at end of file
diff --git a/domains/abubakar.json b/domains/abubakar.json
new file mode 100644
index 000000000..dda6395cb
--- /dev/null
+++ b/domains/abubakar.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal portfolio",
+ "repo": "https://github.com/AbubakarKang/AbubakarKang.github.io",
+ "owner": {
+ "username": "AbubakarKang",
+ "email": "",
+ "discord": "TheHacker#4418"
+ },
+ "record": {
+ "CNAME": "abubakarkang.github.io"
+ }
+}
diff --git a/domains/acaiberii.json b/domains/acaiberii.json
index 5038cacd1..8e0faf623 100644
--- a/domains/acaiberii.json
+++ b/domains/acaiberii.json
@@ -1,8 +1,8 @@
{
"description": "acaiberii's website",
- "repo": "https://github.com/AcaiBerii/acaiberii.github.io",
+ "repo": "https://github.com/acaiberii/acaiberii.github.io",
"owner": {
- "username": "AcaiBerii",
+ "username": "acaiberii",
"email": "studiouifxdesignersandcoders@gmail.com"
},
"record": {
diff --git a/domains/achraf.json b/domains/achraf.json
new file mode 100644
index 000000000..e5173a56b
--- /dev/null
+++ b/domains/achraf.json
@@ -0,0 +1,11 @@
+{
+ "description": "Achraf's Website!",
+ "repo": "https://github.com/Ax-r/ax-r.github.io",
+ "owner": {
+ "username": "Ax-r",
+ "email": "hostmaster@netcourrier.com"
+ },
+ "record": {
+ "CNAME": "ax-r.github.io"
+ }
+}
diff --git a/domains/activities.maskduck.json b/domains/activities.maskduck.json
new file mode 100644
index 000000000..6fb6a6599
--- /dev/null
+++ b/domains/activities.maskduck.json
@@ -0,0 +1,12 @@
+{
+ "description": "docs for my lib, nc-ext-activities",
+ "repo": "https://github.com/MaskDuck/nextcord-ext-activities",
+ "owner": {
+ "username": "MaskDuck",
+ "twitter": "MaskDuck1",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "readthedocs.io"
+ }
+}
diff --git a/domains/acutewoof.json b/domains/acutewoof.json
new file mode 100644
index 000000000..d2509f5b9
--- /dev/null
+++ b/domains/acutewoof.json
@@ -0,0 +1,11 @@
+{
+ "description": "ACuteWoof's Personal Site",
+ "repo": "https://github.com/acutewoof/acutewoof.github.io",
+ "owner": {
+ "username": "acutewoof",
+ "email": "acutewoof@gmail.com"
+ },
+ "record": {
+ "CNAME": "acutewoof.github.io"
+ }
+}
diff --git a/domains/aditya.json b/domains/aditya.json
index 6db8e2a72..729982cb7 100644
--- a/domains/aditya.json
+++ b/domains/aditya.json
@@ -3,19 +3,10 @@
"repo": "https://github.com/icancodebeauty/aditya",
"owner": {
"username": "icancodebeauty",
- "email": "ishqaddy@gmail.com"
+ "email": "aditya@mail.aditya.is-a.dev",
+ "twitter": "@CodeWithAadi"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "CNAME": "icancodebeauty.github.io"
}
}
diff --git a/domains/adri.json b/domains/adri.json
new file mode 100644
index 000000000..96e1ea032
--- /dev/null
+++ b/domains/adri.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "adripo",
+ "email": "adripo@hi2.in"
+ },
+ "record": {
+ "URL": "https://adri.ninja"
+ }
+}
diff --git a/domains/aestra.json b/domains/aestra.json
new file mode 100644
index 000000000..b14c6f75c
--- /dev/null
+++ b/domains/aestra.json
@@ -0,0 +1,11 @@
+{
+ "description": "Will save it for future for my portfolio site",
+ "owner": {
+ "username": "aestra",
+ "email": "aestradev@gmail.com",
+ "github": "aestradev"
+ },
+ "record": {
+ "CNAME": "portfolio-production-7e27.up.railway.app"
+ }
+}
diff --git a/domains/aetinx.json b/domains/aetinx.json
new file mode 100644
index 000000000..775fdff48
--- /dev/null
+++ b/domains/aetinx.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "aetinx",
+ "email": "",
+ "twitter": "aetinx",
+ "discord": "aetinx#8300",
+ "note": "amogus"
+ },
+ "description": "Aetinx's domain. https://aetinx.glitch.me",
+ "record": {
+ "CNAME": "glitch.edgeapp.net"
+ }
+}
diff --git a/domains/afnan.json b/domains/afnan.json
new file mode 100644
index 000000000..b1abacf4f
--- /dev/null
+++ b/domains/afnan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "afnan007a",
+ "email": "mr.goblin007a@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-cci.pages.dev"
+ }
+}
diff --git a/domains/ag.json b/domains/ag.json
new file mode 100644
index 000000000..eee6ebcae
--- /dev/null
+++ b/domains/ag.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal Website",
+ "repo": "https://github.com/andreasgrafen/andreasgrafen",
+ "owner": {
+ "username": "andreasgrafen",
+ "email": "software@grafen.info"
+ },
+ "record": {
+ "URL": "https://andreas.grafen.info"
+ }
+}
diff --git a/domains/agam778.json b/domains/agam778.json
index 3a41fe69b..14b7df04b 100644
--- a/domains/agam778.json
+++ b/domains/agam778.json
@@ -6,6 +6,6 @@
"email": "agam778@zohomail.in"
},
"record": {
- "CNAME": "agamsblog.pages.dev"
+ "CNAME": "agamsblog.xyz"
}
}
diff --git a/domains/aggelos-007.json b/domains/aggelos-007.json
new file mode 100644
index 000000000..75e1b3194
--- /dev/null
+++ b/domains/aggelos-007.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aggelos-007",
+ "email": "aggeloss007@gmail.com"
+ },
+ "record": {
+ "CNAME": "72ea0bf6-bb1e-4fe3-82f2-a3e0b5d75a0b.id.repl.co"
+ }
+}
diff --git a/domains/agold.json b/domains/agold.json
new file mode 100644
index 000000000..eeddcd96e
--- /dev/null
+++ b/domains/agold.json
@@ -0,0 +1,10 @@
+{
+ "owner":{
+ "username":"aGoldDev",
+ "discord":"aGold#9596",
+ "email":"abloggoldwin@gmail.com"
+ },
+ "record":{
+ "CNAME":"agolddev.github.io"
+ }
+}
diff --git a/domains/ahmosys.json b/domains/ahmosys.json
new file mode 100644
index 000000000..6bdaaba2f
--- /dev/null
+++ b/domains/ahmosys.json
@@ -0,0 +1,12 @@
+{
+ "description": "Ahmosys's personal website",
+ "repo": "https://github.com/ahmosys/ahmosys.github.io",
+ "owner": {
+ "username": "Ahmosys",
+ "email": "ahmosyspro@protonmail.com",
+ "twitter": "ahmosys"
+ },
+ "record": {
+ "CNAME": "ahmosys.github.io"
+ }
+}
diff --git a/domains/ailakks.json b/domains/ailakks.json
new file mode 100644
index 000000000..776a4aabb
--- /dev/null
+++ b/domains/ailakks.json
@@ -0,0 +1,11 @@
+{
+ "description": "ailakks.is-a.dev.",
+ "repo": "https://github.com/ailakks",
+ "owner": {
+ "username": "ailakks",
+ "email": "hola@cortmnzz.com"
+ },
+ "record": {
+ "URL": "https://cortmnzz.com"
+ }
+}
diff --git a/domains/alexpcooper.json b/domains/alexpcooper.json
new file mode 100644
index 000000000..e54ab8c03
--- /dev/null
+++ b/domains/alexpcooper.json
@@ -0,0 +1,11 @@
+{
+ "description": "Developer in the United Kingdom",
+ "repo": "https://github.com/alexpcooper",
+ "record": {
+ "URL": "https://alexpcooper.co.uk"
+ },
+ "owner": {
+ "username": "alexpcooper",
+ "email": "dev@alexpcooper.co.uk"
+ }
+}
diff --git a/domains/algebraic-effects.akshay.json b/domains/algebraic-effects.akshay.json
new file mode 100644
index 000000000..563a84c7b
--- /dev/null
+++ b/domains/algebraic-effects.akshay.json
@@ -0,0 +1,11 @@
+{
+ "description": "Docs for algebraic effects library",
+ "repo": "https://github.com/phenax/algebraic-effects",
+ "owner": {
+ "username": "phenax",
+ "email": "phenax5@gmail.com"
+ },
+ "record": {
+ "CNAME": "phenax.github.io"
+ }
+}
diff --git a/domains/alguienrandom.json b/domains/alguienrandom.json
new file mode 100644
index 000000000..910a15d70
--- /dev/null
+++ b/domains/alguienrandom.json
@@ -0,0 +1,10 @@
+{
+ "description": "alguien random web",
+ "owner": {
+ "username": "alguien-random",
+ "email": "alguienrandom.is-a.dev"
+ },
+ "record": {
+ "CNAME": "8152606b-2e68-4a11-bb81-6799f00d4909.id.repl.co"
+ }
+}
diff --git a/domains/almatch.json b/domains/almatch.json
new file mode 100644
index 000000000..f7e5e3d5a
--- /dev/null
+++ b/domains/almatch.json
@@ -0,0 +1,11 @@
+{
+ "description": "Imad",
+ "repo": "https://github.com/imadboy89",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "CNAME":"imadboy89.github.io"
+ }
+}
diff --git a/domains/alperen.json b/domains/alperen.json
new file mode 100644
index 000000000..0d11c2ee1
--- /dev/null
+++ b/domains/alperen.json
@@ -0,0 +1,11 @@
+{
+ "description": "Alperen Aslan Portfolio",
+ "repo": "https://github.com/alperenasln/alperenasln.github.io",
+ "owner": {
+ "username": "alperenasln",
+ "email": "alperenaslan55@gmail.com"
+ },
+ "record": {
+ "CNAME": "alperenasln.github.io"
+ }
+}
diff --git a/domains/alpha.json b/domains/alpha.json
new file mode 100644
index 000000000..207dfbc41
--- /dev/null
+++ b/domains/alpha.json
@@ -0,0 +1,22 @@
+{
+"repo": "https://github.com/YouFoundAlpha/youfoundalpha.github.io",
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "",
+ "twitter": "YouFoundAlpha",
+ "discord": "YouFoundAlpha#5372"
+ },
+ "record": {
+"A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/anautonell.json b/domains/anautonell.json
new file mode 100644
index 000000000..6ccd9a8a7
--- /dev/null
+++ b/domains/anautonell.json
@@ -0,0 +1,12 @@
+{
+ "description": "My Portofolio website!",
+ "repo": "https://github.com/anautonell/portofolio-website",
+ "owner": {
+ "username": "anautonell",
+ "email": "help@myprotect.xyz",
+ "twitter": "fastsecurerblx"
+ },
+ "record": {
+ "CNAME": "anautonell.github.io"
+ }
+}
diff --git a/domains/anderson.json b/domains/anderson.json
new file mode 100644
index 000000000..97f70b62a
--- /dev/null
+++ b/domains/anderson.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal portfolio site for show my projects, my social networks, my knowledges...",
+ "repo": "https://github.com/AndersonPGS/me",
+ "owner": {
+ "username": "andersonpgs",
+ "email": "andersonpgs2001@hotmail.com"
+ },
+ "record": {
+ "URL": "https://andersonpgs.github.io/me"
+ }
+}
diff --git a/domains/andr.json b/domains/andr.json
new file mode 100644
index 000000000..69528613d
--- /dev/null
+++ b/domains/andr.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for my personal blog",
+ "repo": "https://github.com/rbaks/rbaks.github.io",
+ "owner": {
+ "username": "rbaks",
+ "email": "andri.bakoson@gmail.com"
+ },
+ "record": {
+ "CNAME": "rbaks.github.io"
+ }
+}
diff --git a/domains/andrewstech.json b/domains/andrewstech.json
new file mode 100644
index 000000000..20eaa3e20
--- /dev/null
+++ b/domains/andrewstech.json
@@ -0,0 +1,12 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/andrewstech/andrewstech",
+ "owner": {
+ "username": "andrewstech",
+ "email": "hello@andrewstech.me",
+ "twitter": "andrewstech1"
+ },
+ "record": {
+ "CNAME": "andrewstech.github.io"
+ }
+}
diff --git a/domains/andrianina.json b/domains/andrianina.json
new file mode 100644
index 000000000..69528613d
--- /dev/null
+++ b/domains/andrianina.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for my personal blog",
+ "repo": "https://github.com/rbaks/rbaks.github.io",
+ "owner": {
+ "username": "rbaks",
+ "email": "andri.bakoson@gmail.com"
+ },
+ "record": {
+ "CNAME": "rbaks.github.io"
+ }
+}
diff --git a/domains/anil.json b/domains/anil.json
new file mode 100644
index 000000000..fb149d396
--- /dev/null
+++ b/domains/anil.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "AnilSeervi",
+ "email": "",
+ "twitter": "linASeervi"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/anon.json b/domains/anon.json
index 6fa53839f..44ebccde8 100644
--- a/domains/anon.json
+++ b/domains/anon.json
@@ -6,6 +6,6 @@
"email": "contact@anonym-dev.tk"
},
"record": {
- "CNAME": "glitch.edgeapp.net"
+ "CNAME": "anondev.up.railway.app"
}
}
diff --git a/domains/anthony2be.json b/domains/anthony2be.json
new file mode 100644
index 000000000..c1dfcedf8
--- /dev/null
+++ b/domains/anthony2be.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/Anthony2be/Anthony2be.github.io",
+ "owner": {
+ "username": "Anthony2be",
+ "email": "adubovitsky1234@gmail.com",
+ "discord": "anthony2be#1900"
+ },
+ "record": {
+ "CNAME": "anthony2be.github.io"
+ }
+}
diff --git a/domains/antogamer.json b/domains/antogamer.json
new file mode 100644
index 000000000..dea3bf368
--- /dev/null
+++ b/domains/antogamer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AntogamerYT",
+ "email": "antonio.antogamer@gmail.com"
+ },
+ "record": {
+ "A": ["213.133.110.62"]
+ }
+}
diff --git a/domains/api-kirito.json b/domains/api-kirito.json
new file mode 100644
index 000000000..3bb88291c
--- /dev/null
+++ b/domains/api-kirito.json
@@ -0,0 +1,11 @@
+{
+ "description": "For My API!",
+ "repo": "https://github.com/ThisMe124",
+ "owner": {
+ "username": "ThisMe124",
+ "email": "anonymous.orgn@gmail.com"
+ },
+ "record": {
+ "CNAME": "only-devs-production.up.railway.app"
+ }
+}
diff --git a/domains/api.arman.json b/domains/api.arman.json
new file mode 100644
index 000000000..e77a8819b
--- /dev/null
+++ b/domains/api.arman.json
@@ -0,0 +1,10 @@
+{
+ "description": "Arman's Api",
+ "owner": {
+ "username": "ItzArman09",
+ "email": "contact@mail.arman.is-a.dev"
+ },
+ "record": {
+ "CNAME": "b25320ee-226d-4531-ad1f-db62e88ac1d4.id.repl.co"
+ }
+}
diff --git a/domains/api.badboy.json b/domains/api.badboy.json
new file mode 100644
index 000000000..646aceb05
--- /dev/null
+++ b/domains/api.badboy.json
@@ -0,0 +1,13 @@
+{
+ "description": "Suzumi Api",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "sonupanda078@gmail.com",
+ "discord": "445073800850046977",
+ "note": "My Discord ID is 445073800850046977.",
+ "twitter": "BadBoyGoesBrr"
+ },
+ "record": {
+ "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co"
+ }
+}
diff --git a/domains/api.catzboy.json b/domains/api.catzboy.json
new file mode 100644
index 000000000..376e4f271
--- /dev/null
+++ b/domains/api.catzboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Api",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/api.karyakarsa.willo.json b/domains/api.karyakarsa.willo.json
new file mode 100644
index 000000000..316f0aa73
--- /dev/null
+++ b/domains/api.karyakarsa.willo.json
@@ -0,0 +1,12 @@
+{
+ "description": "api for karyakarsa",
+ "repo": "https://github.com/WilloIzCitron/karyakarsa-rest-api",
+ "owner": {
+ "username": "WilloIzCitron",
+ "email": "",
+ "twitter": "willoizcitron"
+ },
+ "record": {
+ "CNAME": "karyakarsa-rest-api-production.up.railway.app"
+ }
+}
diff --git a/domains/api.zeppelin.maskduck.json b/domains/api.zeppelin.maskduck.json
new file mode 100644
index 000000000..4ffcd8ccf
--- /dev/null
+++ b/domains/api.zeppelin.maskduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "Zeppelin selfhost API",
+ "repo": "https://github.com/maskducks/maskducks.github.io",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "CNAME": "zeppelin-railway-api.up.railway.app"
+ }
+}
diff --git a/domains/apiharam.json b/domains/apiharam.json
new file mode 100644
index 000000000..f11434d07
--- /dev/null
+++ b/domains/apiharam.json
@@ -0,0 +1,11 @@
+{
+ "description": "For My Haram API",
+ "repo": "https://github.com/ThisMe124",
+ "owner": {
+ "username": "ThisMe124",
+ "email": "anonymous.orgn@gmail.com"
+ },
+ "record": {
+ "CNAME": "haram-api-production.up.railway.app"
+ }
+}
diff --git a/domains/aqua22.json b/domains/aqua22.json
new file mode 100644
index 000000000..c28c3b744
--- /dev/null
+++ b/domains/aqua22.json
@@ -0,0 +1,12 @@
+{
+ "description": "Domain for my github page",
+ "repo": "https://github.com/aqua22/aqua22.github.io",
+ "owner": {
+ "username": "Aqua22",
+ "email": "hello@aqua22.hu",
+ "twitter": "aqua22of"
+ },
+ "record": {
+ "CNAME": "aqua22.github.io"
+ }
+}
diff --git a/domains/arin.json b/domains/arin.json
new file mode 100644
index 000000000..cb49cef7b
--- /dev/null
+++ b/domains/arin.json
@@ -0,0 +1,11 @@
+{
+ "description": "arin's personal website",
+ "repo": "https://github.com/6Arin9",
+ "owner": {
+ "username": "arin",
+ "email": "karciello.yt@gmail.com"
+ },
+ "record": {
+ "CNAME": "arindev.tech"
+ }
+}
diff --git a/domains/arjix.json b/domains/arjix.json
new file mode 100644
index 000000000..8ceedd311
--- /dev/null
+++ b/domains/arjix.json
@@ -0,0 +1,12 @@
+{
+ "description": "Most likely a page for my portfolio.",
+ "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io/",
+ "owner": {
+ "username": "ArjixWasTaken",
+ "email": "",
+ "discord": "Hecker#5573"
+ },
+ "record": {
+ "CNAME": "arjixwastaken.github.io"
+ }
+}
diff --git a/domains/arman.json b/domains/arman.json
new file mode 100644
index 000000000..3c8e38ce1
--- /dev/null
+++ b/domains/arman.json
@@ -0,0 +1,11 @@
+{
+ "description": "Arman's personal website!",
+ "repo": "https://github.com/ItzArman09/website",
+ "owner": {
+ "username": "ItzArman09",
+ "email": "contact@mail.arman.is-a.dev"
+ },
+ "record": {
+ "CNAME": "itzarman09.github.io"
+ }
+}
diff --git a/domains/armoredvortex.json b/domains/armoredvortex.json
new file mode 100644
index 000000000..c759272eb
--- /dev/null
+++ b/domains/armoredvortex.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Portfolio website",
+ "owner": {
+ "username": "armoredvortex",
+ "email": "rachitpandey@protonmail.com"
+ },
+ "record": {
+ "CNAME": "armoredvortex.github.io"
+ }
+}
diff --git a/domains/arter.json b/domains/arter.json
new file mode 100644
index 000000000..ef9448b9c
--- /dev/null
+++ b/domains/arter.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "animemoeus",
+ "email": "arter.tendean.07@gmail.com"
+ },
+ "record": {
+ "URL": "https://animemoe.us"
+ }
+}
diff --git a/domains/arul.json b/domains/arul.json
new file mode 100644
index 000000000..dd6c83823
--- /dev/null
+++ b/domains/arul.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "arulprabakaran",
+ "email": "",
+ "twitter": "arulpraba"
+ },
+ "record": {
+ "URL": "https://arulprabakaran.web.app/"
+ }
+}
diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json
new file mode 100644
index 000000000..bf5d7629a
--- /dev/null
+++ b/domains/asgarrrr.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/Asgarrrr",
+ "owner": {
+ "username": "Asgarrrr",
+ "email": "hello@jeremycaruelle.fr"
+ },
+ "record": {
+ "CNAME": "glitch.edgeapp.net"
+ }
+}
diff --git a/domains/ashl3y.json b/domains/ashl3y.json
new file mode 100644
index 000000000..7b97aacb9
--- /dev/null
+++ b/domains/ashl3y.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal developer portfolio.",
+ "repo": "https://github.com/ashl3ycodes/ashl3ycodes.github.io",
+ "owner": {
+ "username": "ashl3ycodes",
+ "email": "ashl3ycodes@protonmail.com",
+ "twitter": "ashl3ycodes"
+ },
+ "record": {
+ "CNAME": "ashl3ycodes.github.io"
+ }
+}
diff --git a/domains/ashwin.json b/domains/ashwin.json
new file mode 100644
index 000000000..57d855556
--- /dev/null
+++ b/domains/ashwin.json
@@ -0,0 +1,12 @@
+{
+ "description": "sample repo",
+ "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io",
+ "owner": {
+ "username": "ashwin3082002",
+ "email": "ashwin3082002@gmail.com",
+ "twitter": "ashwin3082002"
+ },
+ "record": {
+ "CNAME": "ashwin3082002.github.io"
+ }
+}
diff --git a/domains/atharv.json b/domains/atharv.json
new file mode 100644
index 000000000..23357630c
--- /dev/null
+++ b/domains/atharv.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website for Atharv",
+ "repo": "https://github.com/realatharv/atharv.github.io",
+ "owner": {
+ "username": "realatharv",
+ "email": "atharv.sbiz@gmail.com",
+ "twitter": "realatharv"
+ },
+ "record": {
+ "CNAME": "realatharv.github.io"
+ }
+}
diff --git a/domains/atharva.json b/domains/atharva.json
new file mode 100644
index 000000000..0f3020159
--- /dev/null
+++ b/domains/atharva.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/atharvalt/atharvalt.github.io",
+ "owner": {
+ "username": "atharvalt",
+ "email": "atharva.upadhyay1099@gmail.com",
+ "discord": "シAtharva#5374"
+ },
+ "record": {
+ "CNAME": "atharvalt.github.io"
+ }
+}
diff --git a/domains/attaditya.json b/domains/attaditya.json
new file mode 100644
index 000000000..4db27b576
--- /dev/null
+++ b/domains/attaditya.json
@@ -0,0 +1,11 @@
+{
+ "description": "I am Aditya, a Game Developer, a Web Developer, a YouTuber and a Student.",
+ "repo": "https://github.com/Attachment-Studios/AttAditya",
+ "owner": {
+ "username": "Attachment-Studios",
+ "email": "aditya.adigo@gmail.com"
+ },
+ "record": {
+ "URL": "https://attaditya.repl.co/"
+ }
+}
diff --git a/domains/ave.json b/domains/ave.json
new file mode 100644
index 000000000..f7afb1d3c
--- /dev/null
+++ b/domains/ave.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal site for github@ayvacs",
+ "repo": "https://github.com/ayvacs/ayvacs.github.io",
+ "owner": {
+ "username": "ayvacs",
+ "email": "ayvacs@protonmail.com",
+ "twitter": "ayvacs_"
+ },
+ "record": {
+ "CNAME": "ayvacs.github.io"
+ }
+}
diff --git a/domains/avellea.json b/domains/avellea.json
new file mode 100644
index 000000000..b6a105c4d
--- /dev/null
+++ b/domains/avellea.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website.",
+ "repo": "https://github.com/Avellea/Avellea.github.io/",
+ "owner": {
+ "username": "Avellea",
+ "email": "",
+ "discord": "Ave#2776"
+ },
+ "record": {
+ "CNAME": "avellea.github.io"
+ }
+}
diff --git a/domains/avery.json b/domains/avery.json
new file mode 100644
index 000000000..af5e85347
--- /dev/null
+++ b/domains/avery.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "caverym",
+ "email": "averylapine@gmail.com",
+ "discord": "Avery~#1845"
+ },
+ "description": "A cool domain that will most likely use!",
+ "record": {
+ "CNAME": "caverym.net"
+ }
+}
diff --git a/domains/azer.json b/domains/azer.json
new file mode 100644
index 000000000..d0380e4f4
--- /dev/null
+++ b/domains/azer.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal page of Azer Sadykhzadeh",
+ "owner": {
+ "username": "sadykhzadeh",
+ "email": "azer.piano14@gmail.com"
+ },
+ "record": {
+ "CNAME": "sadykhzadeh.github.io"
+ }
+}
diff --git a/domains/bad.boy.json b/domains/bad.boy.json
new file mode 100644
index 000000000..e5c47f7b6
--- /dev/null
+++ b/domains/bad.boy.json
@@ -0,0 +1,10 @@
+{
+ "description": "https://badboy.is-a.dev/ redirector",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "contact@mail.badboy.is-a.dev"
+ },
+ "record": {
+ "CNAME": "a.redirect.pizza"
+ }
+}
diff --git a/domains/badboy.json b/domains/badboy.json
index a9247e793..1a6bea1a4 100644
--- a/domains/badboy.json
+++ b/domains/badboy.json
@@ -1,11 +1,13 @@
{
"description": "Bad Boy's Website",
- "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io",
"owner": {
- "username": "badboy",
- "email": "badboyplays9999@gmail.com"
+ "username": "bad-boy-codes",
+ "email": "contact@mail.badboy.is-a.dev",
+ "discord": "445073800850046977",
+ "note": "My Discord ID is 445073800850046977.",
+ "twitter": "BadBoyGoesBrr"
},
"record": {
- "URL": "https://bad-boy-codes.github.io/"
+ "CNAME": "4baf80cb-7f87-4d2c-8e40-938f4045acfd.id.repl.co"
}
}
diff --git a/domains/bank.json b/domains/bank.json
new file mode 100644
index 000000000..4c45c9c86
--- /dev/null
+++ b/domains/bank.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "tithanayut",
+ "email": "b@thanayut.in.th"
+ },
+ "description": "Bank Thanayut's Personal Site",
+ "record": {
+ "URL": "https://thanayut.in.th"
+ }
+}
diff --git a/domains/baquir.json b/domains/baquir.json
new file mode 100644
index 000000000..ce53bed23
--- /dev/null
+++ b/domains/baquir.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/mohd-baquir-qureshi/mohd-baquir-qureshi.github.io",
+ "owner": {
+ "username": "mohd-baquir-qureshi",
+ "email": "dumboo0798@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohd-baquir-qureshi.github.io"
+ }
+}
diff --git a/domains/bear.json b/domains/bear.json
new file mode 100644
index 000000000..b66b74ec9
--- /dev/null
+++ b/domains/bear.json
@@ -0,0 +1,11 @@
+{
+ "description": "Bear's Portfolio Website",
+ "repo": "https://github.com/bearts/PortFolio",
+ "owner": {
+ "username": "bearts",
+ "email": "bearjs@protonmail.com"
+ },
+ "record": {
+ "CNAME": "bearts.github.io"
+ }
+}
diff --git a/domains/berry.json b/domains/berry.json
new file mode 100644
index 000000000..40581dbbe
--- /dev/null
+++ b/domains/berry.json
@@ -0,0 +1,11 @@
+{
+ "description": "Berry's developer website",
+ "owner": {
+ "username": "AhmedBaari",
+ "email": "ahmed4baari@gmail.com",
+ "instagram": "berryciouss"
+ },
+ "record": {
+ "CNAME": "cname.short.io"
+ }
+}
diff --git a/domains/beta.omxpro.json b/domains/beta.omxpro.json
new file mode 100644
index 000000000..c49987bcc
--- /dev/null
+++ b/domains/beta.omxpro.json
@@ -0,0 +1,12 @@
+{
+ "description": "this is a subdomain for the beta version of my portfolio",
+ "repo": "https://github.com/omxproYT/omxproyt.github.io",
+ "owner": {
+ "username": "omxproYT",
+ "email": "omsenjalia@gmail.com",
+ "twitter": "DaRealOmxpro"
+ },
+ "record": {
+ "CNAME": "omxproYT.github.io"
+ }
+}
diff --git a/domains/blake.json b/domains/blake.json
new file mode 100644
index 000000000..1366c9473
--- /dev/null
+++ b/domains/blake.json
@@ -0,0 +1,12 @@
+{
+ "description": "A redirection to my github page",
+ "repo": "https://github.com/BlakeH2208",
+ "owner": {
+ "username": "BlakeH2208",
+ "email": "contact@blakehurley.com"
+ },
+
+ "record": {
+ "A": ["89.41.169.49"]
+ }
+}
diff --git a/domains/blog.aditya.json b/domains/blog.aditya.json
new file mode 100644
index 000000000..571526b5f
--- /dev/null
+++ b/domains/blog.aditya.json
@@ -0,0 +1,17 @@
+{
+ "description": "A Subdomain For My Blogs!!",
+ "repo": "https://github.com/icancodebeauty/blog",
+ "owner": {
+ "username": "icancodebeauty",
+ "email": "ishqaddy@gmail.com",
+ "twitter": "CodeWithAadi"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/blog.catzboy.json b/domains/blog.catzboy.json
new file mode 100644
index 000000000..e11095ae3
--- /dev/null
+++ b/domains/blog.catzboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Catzboy's Blog",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/blog.dhruva.json b/domains/blog.dhruva.json
new file mode 100644
index 000000000..6a513ff40
--- /dev/null
+++ b/domains/blog.dhruva.json
@@ -0,0 +1,11 @@
+
+{
+ "description": "my hashnode blog",
+ "owner": {
+ "username": "carrotfarmer",
+ "email": "dhruvas17068@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blog.samihatasnim.json b/domains/blog.samihatasnim.json
new file mode 100644
index 000000000..9eb910b79
--- /dev/null
+++ b/domains/blog.samihatasnim.json
@@ -0,0 +1,13 @@
+{
+ "description": "Samiha Tasnim's blog.",
+ "repo": "https://github.com/samihaTasnim/website",
+ "owner": {
+ "username": "samihaTasnim",
+ "discord": "sam.#7750",
+ "email": "samxtasnim@gmail.com",
+ "twitter": "@SamihaTasnimm"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blog.whine.json b/domains/blog.whine.json
new file mode 100644
index 000000000..372134a0b
--- /dev/null
+++ b/domains/blog.whine.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "description": "whi_ne's blog",
+ "record": {
+ "CNAME": "blog-production-f684.up.railway.app"
+ }
+}
diff --git a/domains/blogs.aakanksha.json b/domains/blogs.aakanksha.json
new file mode 100644
index 000000000..9fb453d71
--- /dev/null
+++ b/domains/blogs.aakanksha.json
@@ -0,0 +1,11 @@
+{
+ "description": "Aakanksha's Blog",
+ "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
+ "owner": {
+ "username": "aakankshabhende",
+ "email": "aakanksha0407@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+ }
\ No newline at end of file
diff --git a/domains/blogs.shaunak.json b/domains/blogs.shaunak.json
new file mode 100644
index 000000000..1af1bd18c
--- /dev/null
+++ b/domains/blogs.shaunak.json
@@ -0,0 +1,11 @@
+{
+ "description": "Shaunak's Blog",
+ "repo": "https://github.com/Shaunak-Pandya/Shaunak-Pandya.github.io",
+ "owner": {
+ "username": "Shaunak-Pandya",
+ "email": "shaunak.n.pandya@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blox.json b/domains/blox.json
new file mode 100644
index 000000000..ff4b9f06d
--- /dev/null
+++ b/domains/blox.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "soudblox",
+ "email": "nick8x@gmail.com"
+ },
+ "record": {
+ "CNAME": "bloxsite.up.railway.app"
+ }
+}
diff --git a/domains/blurnope.json b/domains/blurnope.json
new file mode 100644
index 000000000..4292de666
--- /dev/null
+++ b/domains/blurnope.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/blurnope/blurnope.github.io",
+ "owner": {
+ "username": "blurnope",
+ "email": "cynosuregone@gmail.com",
+ "discord": "blurnope.#2655"
+ },
+ "record": {
+ "CNAME": "blurnope.github.io"
+ }
+}
diff --git a/domains/boba.json b/domains/boba.json
new file mode 100644
index 000000000..d6226cdb3
--- /dev/null
+++ b/domains/boba.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal blog.",
+ "repo": "https://github.com/tarob0ba/tarob0ba.github.io",
+ "owner": {
+ "username": "tarob0ba",
+ "email": "beckett@chatter-social.com"
+ },
+ "record": {
+ "CNAME": "tarob0ba.github.io"
+ }
+}
diff --git a/domains/bobbrown.json b/domains/bobbrown.json
new file mode 100644
index 000000000..ba0202d5c
--- /dev/null
+++ b/domains/bobbrown.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website!",
+ "repo": "https://github.com/BobBrown1/BobBrown1.github.io",
+ "owner": {
+ "username": "BobBrown1",
+ "email": "bob.brown.the.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "bob-brown.info"
+ }
+}
diff --git a/domains/bolt.json b/domains/bolt.json
new file mode 100644
index 000000000..5c0693a25
--- /dev/null
+++ b/domains/bolt.json
@@ -0,0 +1,11 @@
+{
+ "description": "Bolt's portfolio website",
+ "repo": "https://github.com/Adityeahhh/portfolio",
+ "owner": {
+ "username": "Adityeahhh",
+ "email": "adty200807@gmail.com"
+ },
+ "record": {
+ "CNAME": "adityeahhh.github.io"
+ }
+}
diff --git a/domains/boolean44.json b/domains/boolean44.json
new file mode 100644
index 000000000..cde6bc82b
--- /dev/null
+++ b/domains/boolean44.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/boolean44-repos/boolean44-repos.github.io",
+ "owner": {
+ "username": "boolean44-repos",
+ "email": "serenitypalmer10@gmail.com"
+ },
+ "record": {
+ "CNAME": "boolean44-repos.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/boredcodebyk.json b/domains/boredcodebyk.json
new file mode 100644
index 000000000..35083dd51
--- /dev/null
+++ b/domains/boredcodebyk.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio/Personal landing page",
+ "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io",
+ "owner": {
+ "username": "boredcodebyk",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "boredcodebyk.github.io"
+ }
+}
diff --git a/domains/bot.riskymh.json b/domains/bot.riskymh.json
new file mode 100644
index 000000000..6608dea8a
--- /dev/null
+++ b/domains/bot.riskymh.json
@@ -0,0 +1,13 @@
+{
+ "description": "Discord Bot Website",
+ "repo": "https://github.com/RiskyMH/RiskyBOT",
+ "owner": {
+ "username": "RiskyMH",
+ "discord": "RiskyMH#0182",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://riskymh.github.io/RiskyBOT"
+ }
+ }
+
diff --git a/domains/breadomaticc.json b/domains/breadomaticc.json
new file mode 100644
index 000000000..e2f98517f
--- /dev/null
+++ b/domains/breadomaticc.json
@@ -0,0 +1,11 @@
+{
+ "description": "BreadoMatic Beginner Dev",
+ "repo": "https://github.com/breadomaticc/breadomaticc.github.io",
+ "owner": {
+ "username": "breadomaticc",
+ "email": "animaxionpd@gmail.com"
+ },
+ "record": {
+ "CNAME": "breadomaticc.github.io"
+ }
+}
diff --git a/domains/brian.json b/domains/brian.json
new file mode 100644
index 000000000..6f3b89d78
--- /dev/null
+++ b/domains/brian.json
@@ -0,0 +1,11 @@
+{
+ "description": "fittsqo's is-a.dev domain",
+ "repo": "https://github.com/fittsqo/fittsqo.github.io",
+ "owner": {
+ "username": "fittsqo",
+ "email": "fittsqo@gmail.com"
+ },
+ "record": {
+ "CNAME": "fittsqo.github.io"
+ }
+}
diff --git a/domains/brin.json b/domains/brin.json
new file mode 100644
index 000000000..2b4ccbf78
--- /dev/null
+++ b/domains/brin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site",
+ "repo": "https://github.com/xXTgamerXx/xXTgamerXx.github.io",
+ "owner": {
+ "username": "xXTgamerXx",
+ "email": "trin.n2848@gmail.com"
+ },
+ "record": {
+ "CNAME": "xxtgamerxx.github.io"
+ }
+}
diff --git a/domains/burandby.json b/domains/burandby.json
new file mode 100644
index 000000000..9d661b37a
--- /dev/null
+++ b/domains/burandby.json
@@ -0,0 +1,11 @@
+{
+ "description": "Pico-8 in-browser emulator.",
+ "repo": "https://github.com/burandby",
+ "owner": {
+ "username": "burandby",
+ "email": "bur.and.by@gmail.com"
+ },
+ "record": {
+ "CNAME": "burandby.github.io"
+ }
+}
diff --git a/domains/casper.json b/domains/casper.json
new file mode 100644
index 000000000..6bdae7c6e
--- /dev/null
+++ b/domains/casper.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KZacharski",
+ "email": "apki@kacperzacharski.pl"
+ },
+ "record": {
+ "CNAME": "puffercat.xyz"
+ }
+}
diff --git a/domains/catzboy.json b/domains/catzboy.json
new file mode 100644
index 000000000..5a35b961c
--- /dev/null
+++ b/domains/catzboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Catzboy Profilo",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/caz.json b/domains/caz.json
new file mode 100644
index 000000000..b0a412822
--- /dev/null
+++ b/domains/caz.json
@@ -0,0 +1,12 @@
+{
+ "description": "Just Another One Of Those Portfolios.",
+ "repo": "https://github.com/crazyaccess/crazyaccess.github.io/",
+ "owner": {
+ "username": "crazyaccess",
+ "email": "caz@monke.team",
+ "discord": "crazyaccess#7707"
+ },
+ "record": {
+ "CNAME": "crazyaccess.github.io"
+ }
+}
diff --git a/domains/cdn.badboy.json b/domains/cdn.badboy.json
new file mode 100644
index 000000000..7ec332465
--- /dev/null
+++ b/domains/cdn.badboy.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/Bad-Boy-Codes/cdn",
+ "description": "My static database",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "contact@mail.badboy.is-a.dev"
+ },
+ "record": {
+ "CNAME": "a322b85b-dae2-4ae1-87b4-4d75db26c7e5.id.repl.co"
+ }
+}
diff --git a/domains/cdn.json b/domains/cdn.json
new file mode 100644
index 000000000..4036ab7f0
--- /dev/null
+++ b/domains/cdn.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "LellisV2",
+ "email": "cloud@lellis.tech",
+ "discord": "Lellis#9405",
+ "note": "I dont look that much on my email, Fast Respons on Discord."
+ },
+ "description": "I will use it for my CDN to be able to access the files",
+ "record": {
+ "A": ["130.162.183.250"]
+ }
+}
diff --git a/domains/censor.json b/domains/censor.json
new file mode 100644
index 000000000..5fa90ee8e
--- /dev/null
+++ b/domains/censor.json
@@ -0,0 +1,13 @@
+{
+ "description": "My personal Website",
+ "repo": "https://github.com/cens6r/cens6r.github.io",
+ "owner": {
+ "username": "censor",
+ "email": "cens6r.dev@gmail.com",
+ "discord": "cens6r#0001",
+ "note": "It is faster to contact me on Discord."
+ },
+ "record": {
+ "CNAME": "cens6r.github.io"
+ }
+}
diff --git a/domains/ceon.json b/domains/ceon.json
new file mode 100644
index 000000000..c700b6212
--- /dev/null
+++ b/domains/ceon.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hey, I am Ceon!",
+ "repo": "https://github.com/internetmagduru",
+ "owner": {
+ "username": "internetmagduru",
+ "email": "ceon@ceon.tech"
+ },
+"record": {
+ "URL": "https://ceon.tech"
+ }
+}
diff --git a/domains/chad.json b/domains/chad.json
new file mode 100644
index 000000000..409e5eef0
--- /dev/null
+++ b/domains/chad.json
@@ -0,0 +1,12 @@
+{
+ "description": "Chad's GitHub",
+ "repo": "https://github.com/djsnipa1/djsnipa1.github.io",
+ "owner": {
+ "username": "djsnipa1",
+ "email": "chadboyce@gmail.com",
+ "twitter": "djsnipa1"
+ },
+ "record": {
+ "CNAME": "djsnipa1.github.io"
+ }
+}
diff --git a/domains/chandra.json b/domains/chandra.json
new file mode 100644
index 000000000..4124c9dd4
--- /dev/null
+++ b/domains/chandra.json
@@ -0,0 +1,12 @@
+{
+ "description": "An Data Analyst Portfolio",
+ "repo": "https://github.com/sekharmalla/portfolio/",
+ "owner": {
+ "username": "sekharmalla",
+ "email": "chandra.malla@msftcommunity.com",
+ "twitter": "ChandraSMalla"
+ },
+ "record": {
+ "CNAME": "sekharmalla.github.io"
+ }
+}
diff --git a/domains/chang.json b/domains/chang.json
new file mode 100644
index 000000000..446500884
--- /dev/null
+++ b/domains/chang.json
@@ -0,0 +1,12 @@
+{
+ "description": "Chang's Personal Website",
+ "repo": "https://github.com/bobbyliu117/bobbyliu117.github.io",
+ "owner": {
+ "username": "bobbyliu117",
+ "email": "",
+ "twitter": "changisadev"
+ },
+ "record": {
+ "CNAME": "bobbyliu117.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/charcg.json b/domains/charcg.json
new file mode 100644
index 000000000..f49dbde7e
--- /dev/null
+++ b/domains/charcg.json
@@ -0,0 +1,12 @@
+{
+ "description": "CharCG's Website",
+ "repo": "https://github.com/charcg/charcg.github.io",
+ "owner": {
+ "username": "CharCG",
+ "email": "charlescong91@gmail.com",
+ "twitter": "charlescong91"
+ },
+ "record": {
+ "CNAME": "charcg.github.io"
+ }
+}
diff --git a/domains/chat-with.sx9.json b/domains/chat-with.sx9.json
new file mode 100644
index 000000000..ae54b7571
--- /dev/null
+++ b/domains/chat-with.sx9.json
@@ -0,0 +1,14 @@
+{
+ "description": "SX's Discord Server",
+ "repo": "https://sx-9.github.io/sx-discord-redirect",
+ "owner": {
+ "username": "SX-9",
+ "twitter": "SX_Discord",
+ "discord": "SX-Spy-Agent#1377",
+ "email": "sx-91@outlook.com",
+ "note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me"
+ },
+ "record": {
+ "CNAME": "sx-9.github.io"
+ }
+}
diff --git a/domains/chris8889.json b/domains/chris8889.json
new file mode 100644
index 000000000..f4299369b
--- /dev/null
+++ b/domains/chris8889.json
@@ -0,0 +1,11 @@
+{
+ "description": "testing",
+ "owner": {
+ "username": "Chris8889",
+ "email": "chris88892@protonmail.com",
+ "Twitter": "@Chris8889"
+ },
+ "record": {
+ "CNAME": "5d931f3a-d63d-4ccf-b14c-5b566fd0c5f0.id.repl.co"
+ }
+}
diff --git a/domains/ck.json b/domains/ck.json
new file mode 100644
index 000000000..814ca4948
--- /dev/null
+++ b/domains/ck.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/plu5/plu5.github.io",
+ "owner": {
+ "username": "plu5",
+ "email": "ctre@users.sourceforge.net",
+ "twitter": "preminster"
+ },
+ "record": {
+ "CNAME": "plu5.github.io"
+ }
+}
diff --git a/domains/coder100.json b/domains/coder100.json
new file mode 100644
index 000000000..d0faebc5a
--- /dev/null
+++ b/domains/coder100.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cursorweb",
+ "email": "",
+ "twitter": "Coder1002"
+ },
+ "description": "Personal Home Page and Blog",
+ "record": {
+ "CNAME": "coder100-blog-production.up.railway.app"
+ }
+}
diff --git a/domains/coffee.json b/domains/coffee.json
new file mode 100644
index 000000000..fb3b505d8
--- /dev/null
+++ b/domains/coffee.json
@@ -0,0 +1,10 @@
+{
+ "description": "Link for Coffee's personal site",
+ "owner": {
+ "username": "C0ffeeCode",
+ "email": "c0ffeecode@outlook.com"
+ },
+ "record": {
+ "CNAME": "coffeeco.dev"
+ }
+}
diff --git a/domains/colourfullyy.json b/domains/colourfullyy.json
new file mode 100644
index 000000000..ca5e1893a
--- /dev/null
+++ b/domains/colourfullyy.json
@@ -0,0 +1,11 @@
+{
+ "description": "colourfullyy's developer website",
+ "repo": "https://github.com/colourfullyy/colourfullyy.github.io",
+ "owner": {
+ "username": "colourfullyy",
+ "email": "phiblu900@gmail.com"
+ },
+ "record": {
+ "CNAME": "colourfullyy.github.io"
+ }
+}
diff --git a/domains/cooper.json b/domains/cooper.json
new file mode 100644
index 000000000..6f9f30f9f
--- /dev/null
+++ b/domains/cooper.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for my Portfolio Thing",
+ "repo": "https://github.com/cooper25/portfolio2021",
+ "owner": {
+ "username": "cooper25",
+ "email": "cooper@tsor.is"
+ },
+ "record": {
+ "URL": "https://cppr.dev"
+ }
+}
diff --git a/domains/corentin-sotoca.json b/domains/corentin-sotoca.json
new file mode 100644
index 000000000..96e9e075e
--- /dev/null
+++ b/domains/corentin-sotoca.json
@@ -0,0 +1,13 @@
+{
+ "description": "Curiculum Vitae - Corentin SOTOCA",
+ "owner": {
+ "username": "CorentinSotoca",
+ "email": "corentin.sotoca@gmail.com"
+ },
+ "record": {
+ "A": [
+ "62.171.174.120"
+ ]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/cornix.json b/domains/cornix.json
new file mode 100644
index 000000000..38e86f2f9
--- /dev/null
+++ b/domains/cornix.json
@@ -0,0 +1,10 @@
+{
+ "description": "cornix's website",
+ "owner": {
+ "username": "MysteryDev01",
+ "email": "cornixytofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "cornix32122.carrd.co"
+ }
+}
diff --git a/domains/cozymy.json b/domains/cozymy.json
new file mode 100644
index 000000000..9d227224a
--- /dev/null
+++ b/domains/cozymy.json
@@ -0,0 +1,12 @@
+{
+ "description": "A personal portfolio site for all my projects.",
+ "repo": "https://github.com/cozymy/cozymy.github.io",
+ "owner": {
+ "username": "cozymy",
+ "email": "kunalkundrra@gmail.com",
+ "twitter": "kunalkundrra"
+ },
+ "record": {
+ "CNAME": "cozymy.github.io"
+ }
+}
diff --git a/domains/cr0nus.json b/domains/cr0nus.json
new file mode 100644
index 000000000..b895a86bc
--- /dev/null
+++ b/domains/cr0nus.json
@@ -0,0 +1,12 @@
+{
+ "description": "A personal portfolio site for all my projects.",
+ "repo": "https://github.com/umgbhalla",
+ "owner": {
+ "username": "umgbhalla",
+ "email": "umg.bhalla88@gmail.com",
+ "twitter": "umgbhalla"
+ },
+ "record": {
+ "CNAME": "umgbhalla.github.io"
+ }
+}
diff --git a/domains/cyanic76.json b/domains/cyanic76.json
new file mode 100644
index 000000000..aa82ba169
--- /dev/null
+++ b/domains/cyanic76.json
@@ -0,0 +1,11 @@
+{
+ "description": "Cyanic's website (link to cyanic.tk)",
+ "repo": "https://github.com/Cyanic76/Cyanic76",
+ "owner": {
+ "username": "Cyanic76",
+ "email": "git@cyanic.tk"
+ },
+ "record": {
+ "URL": "https://cyanic.tk"
+ }
+}
diff --git a/domains/cyanide.json b/domains/cyanide.json
new file mode 100644
index 000000000..205e97255
--- /dev/null
+++ b/domains/cyanide.json
@@ -0,0 +1,12 @@
+{
+ "description": "I am a professional developer that loves to code in HTML, CSS, and JavaScript!",
+ "repo": "https://github.com/cyanide1x/cyanide1x.github.io",
+ "owner": {
+ "username": "cyanide1x",
+ "email": "contact@cyanidedev.mn",
+ "twitter": "cyanide1x"
+ },
+ "record": {
+ "CNAME": "cyanide1x.github.io"
+ }
+}
diff --git a/domains/daanbreur.json b/domains/daanbreur.json
new file mode 100644
index 000000000..8c57f7d93
--- /dev/null
+++ b/domains/daanbreur.json
@@ -0,0 +1,10 @@
+{
+ "description": "My blog with writeups :)",
+ "owner": {
+ "username": "daanbreur",
+ "email": "me@daanbreur.systems"
+ },
+ "record": {
+ "URL": "https://blog.daanbreur.systems/"
+ }
+}
diff --git a/domains/dani.json b/domains/dani.json
new file mode 100644
index 000000000..fa4d9f757
--- /dev/null
+++ b/domains/dani.json
@@ -0,0 +1,12 @@
+{
+ "description": "Danidev's Website",
+ "repo": "https://github.com/Danidev819/danidev819.github.io",
+ "owner": {
+ "username": "Danidev819",
+ "email": "danidev82@gmail.com",
+ "twitter": "Danidev819"
+ },
+ "record": {
+ "CNAME": "danidev819.github.io"
+ }
+}
diff --git a/domains/daniel-shuy.json b/domains/daniel-shuy.json
new file mode 100644
index 000000000..49e8ee4bb
--- /dev/null
+++ b/domains/daniel-shuy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "daniel-shuy",
+ "email": "daniel_shuy@hotmail.com"
+ },
+ "record": {
+ "A": [
+ "76.76.21.21"
+ ]
+ }
+}
diff --git a/domains/daniel4-dev.json b/domains/daniel4-dev.json
new file mode 100644
index 000000000..d9a6e6ad6
--- /dev/null
+++ b/domains/daniel4-dev.json
@@ -0,0 +1,10 @@
+{
+ "description": "Daniel Barton's games site",
+ "owner": {
+ "username": "daniel4-scratch",
+ "email": "llama552621@gmail.com"
+ },
+ "record": {
+ "CNAME": "daniel4-scratch.gamejolt.io"
+ }
+}
diff --git a/domains/darsh.json b/domains/darsh.json
new file mode 100644
index 000000000..f32357fa4
--- /dev/null
+++ b/domains/darsh.json
@@ -0,0 +1,11 @@
+{
+ "description": "DarshSood's personal website",
+ "repo": "https://replit.com/@DarshS/introduction-page",
+ "owner": {
+ "username": "DarshSood",
+ "email": "darshsood1@gmail.com"
+ },
+ "record": {
+ "CNAME": "5dcb1e8b-787e-43ce-bd1d-217d51ab09e1.id.repl.co"
+ }
+}
diff --git a/domains/dashboard.zeppelin.maskduck.json b/domains/dashboard.zeppelin.maskduck.json
new file mode 100644
index 000000000..bc90b7c35
--- /dev/null
+++ b/domains/dashboard.zeppelin.maskduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "MaskDuck's personal website!",
+ "repo": "https://github.com/maskducks/maskducks.github.io",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "CNAME": "zeppelin-railway-dashboard.up.railway.app"
+ }
+}
diff --git a/domains/dave9123.json b/domains/dave9123.json
new file mode 100644
index 000000000..ed3d84ec9
--- /dev/null
+++ b/domains/dave9123.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "dave9123",
+ "discord": "Dave9123#0757",
+ "email": "dave.turmawan@outlook.com"
+ },
+ "record": {
+ "CNAME": "dave9123.netlify.app"
+ }
+}
diff --git a/domains/dc.whine.json b/domains/dc.whine.json
new file mode 100644
index 000000000..64e2b4a8f
--- /dev/null
+++ b/domains/dc.whine.json
@@ -0,0 +1,11 @@
+{
+ "description": "whi_ne's discord",
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "record": {
+ "CNAME": "a.redirect.pizza"
+ }
+}
\ No newline at end of file
diff --git a/domains/de.whine.json b/domains/de.whine.json
new file mode 100644
index 000000000..ea93bb80a
--- /dev/null
+++ b/domains/de.whine.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "description": "whi_ne's deno subdomain",
+ "record": {
+ "A": ["34.120.54.55"],
+ "TXT": "deno-com-validation=572b9c00ebc922b6f8367944"
+ }
+}
\ No newline at end of file
diff --git a/domains/debertjamie.json b/domains/debertjamie.json
new file mode 100644
index 000000000..299834afc
--- /dev/null
+++ b/domains/debertjamie.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal website",
+ "repo": "https://github.com/debertjamie",
+ "owner": {
+ "username": "debertjamie",
+ "email": "debert123@protonmail.com"
+ },
+ "record": {
+ "CNAME": "debertjamie.up.railway.app"
+ }
+}
diff --git a/domains/demonitize.json b/domains/demonitize.json
new file mode 100644
index 000000000..4eafedaf9
--- /dev/null
+++ b/domains/demonitize.json
@@ -0,0 +1,19 @@
+{
+ "owner": {
+ "username": "demonitize",
+ "email": "",
+ "twitter": "demonitized_boi",
+ "twitch": "demonitized_boi",
+ "discord": "DEMONITIZED BOI#6969"
+ },
+ "description": "Probably will use this to redirect to GitHub, because custom domain look cool",
+ "repo": "https://github.com/demonitize",
+ "record": {
+ "URL": "https://github.com/demonitize",
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/dev.win11.notaperson535.json b/domains/dev.win11.notaperson535.json
new file mode 100644
index 000000000..57e1c1b19
--- /dev/null
+++ b/domains/dev.win11.notaperson535.json
@@ -0,0 +1,11 @@
+{
+ "description": "My windows 11 in HTML Developer repository",
+ "repo": "https://github.com/notAperson535/Dev-Win11-HTML",
+ "owner": {
+ "username": "notAperson535",
+ "email": "notAperson939@gmail.com"
+ },
+ "record": {
+ "CNAME": "notAperson535.github.io"
+ }
+}
diff --git a/domains/devan.json b/domains/devan.json
index 829305623..bc9be1737 100644
--- a/domains/devan.json
+++ b/domains/devan.json
@@ -1,5 +1,5 @@
{
- "description": "devans super swag image host because they cant afford a domain",
+ "description": "devans cool looking domain that he wants for a portfolio",
"owner": {
"username": "devanwashere",
"email": "devan@devan.cool"
diff --git a/domains/devcomp.json b/domains/devcomp.json
new file mode 100644
index 000000000..84ec2861b
--- /dev/null
+++ b/domains/devcomp.json
@@ -0,0 +1,11 @@
+{
+ "description": "Cool looking redirection for my site.",
+ "repo": "https://github.com/CompeyDev",
+ "owner": {
+ "username": "CompeyDev",
+ "email": "hi@devcomp.tk"
+ },
+ "record": {
+ "URL": "https://landing.devcomp.xyz"
+ }
+}
diff --git a/domains/dexo.json b/domains/dexo.json
new file mode 100644
index 000000000..026a9312d
--- /dev/null
+++ b/domains/dexo.json
@@ -0,0 +1,15 @@
+{
+ "description": "Ce cauti ma aici?",
+ "owner": {
+ "username": "DeXoHigh",
+ "email": "dexocash@gmail.com"
+ },
+ "record": {
+ "A": ["185.141.25.116"],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/dhruva.json b/domains/dhruva.json
new file mode 100644
index 000000000..77169214b
--- /dev/null
+++ b/domains/dhruva.json
@@ -0,0 +1,11 @@
+{
+ "description": "personal site",
+ "repo": "https://github.com/carrotfarmer/portfolio-1",
+ "owner": {
+ "username": "carrotfarmer",
+ "email": "dhruvas17068@gmail.com"
+ },
+ "record": {
+ "CNAME": "dhruva.up.railway.app"
+ }
+}
diff --git a/domains/dib.json b/domains/dib.json
new file mode 100644
index 000000000..db99c50ae
--- /dev/null
+++ b/domains/dib.json
@@ -0,0 +1,12 @@
+{
+ "description": "URL Shortener for sites.",
+ "repo": "https://github.com/DIBSTERYT",
+ "owner": {
+ "username": "DIBSTERYT",
+ "email": "contact@dibster.ml",
+ "twitter": "DEV_DIBSTER"
+ },
+ "record": {
+ "A": ["192.95.42.74"]
+ }
+}
diff --git a/domains/dibster.json b/domains/dibster.json
new file mode 100644
index 000000000..46d8cc8e8
--- /dev/null
+++ b/domains/dibster.json
@@ -0,0 +1,14 @@
+{
+ "description": "ShareX Server/Protfolio Site. Under @DIBSTERYT on GitHub.",
+ "repo": "https://github.com/DIBSTERYT",
+ "owner": {
+ "username": "DIBSTERYT",
+ "email": "contact@dibster.ml",
+ "twitter": "DEV_DIBSTER"
+ },
+ "record": {
+ "A": ["192.95.42.74"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/dimas.json b/domains/dimas.json
new file mode 100644
index 000000000..7b4f1b7ba
--- /dev/null
+++ b/domains/dimas.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/duangdeong/duangdeong.github.io",
+ "owner": {
+ "username": "duangdeong",
+ "email": "duangdeong@gmail.com",
+ "twitter": "DimasAndriano_"
+ },
+ "record": {
+ "CNAME": "duangdeong.github.io"
+ }
+}
diff --git a/domains/dimszyxx.json b/domains/dimszyxx.json
new file mode 100644
index 000000000..1d9dabaa7
--- /dev/null
+++ b/domains/dimszyxx.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Blog",
+ "repo": "https://github.com/nobuyaki/nobuyaki.github.io",
+ "owner": {
+ "username": "nobuyaki",
+ "email": "dimas2214sa@gmail.com"
+ },
+ "record": {
+ "CNAME": "nobuyaki.github.io"
+ }
+}
diff --git a/domains/dinothedev.json b/domains/dinothedev.json
new file mode 100644
index 000000000..ed6cccb14
--- /dev/null
+++ b/domains/dinothedev.json
@@ -0,0 +1,11 @@
+{
+ "description": "Subdomain for DinoTheDev",
+ "repo": "https://github.com/DinoTheDevOfficial",
+ "owner": {
+ "username": "DinoTheDevOfficial",
+ "email": "dinothedevofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "dinothedev.repl.co"
+ }
+}
diff --git a/domains/discord.badboy.json b/domains/discord.badboy.json
new file mode 100644
index 000000000..b3e3a3c4a
--- /dev/null
+++ b/domains/discord.badboy.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/Bad-Boy-Codes/Discord-Projects",
+ "description": "Discord Webhook and Interface Viewer.",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "contact@mail.badboy.is-a.dev"
+ },
+ "record": {
+ "CNAME": "bad-boy-codes.github.io"
+ }
+}
diff --git a/domains/discord.maskduck.json b/domains/discord.maskduck.json
new file mode 100644
index 000000000..ac1d57731
--- /dev/null
+++ b/domains/discord.maskduck.json
@@ -0,0 +1,11 @@
+{
+ "description": "My discord server",
+ "owner": {
+ "email": "",
+ "username": "MaskDuck",
+ "reddit": "u/maskduck"
+ },
+ "record": {
+ "URL": "https://discord.gg/weMcPBJV77"
+ }
+}
diff --git a/domains/divik.json b/domains/divik.json
new file mode 100644
index 000000000..a04fc4ed3
--- /dev/null
+++ b/domains/divik.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal site",
+ "repo": "https://github.com/Code19Master/portfolio",
+ "owner": {
+ "username": "Code19Master",
+ "email": "divikbabbar@gmail.com"
+ },
+ "record": {
+ "CNAME": "code19master.github.io"
+ }
+}
diff --git a/domains/domin.json b/domains/domin.json
new file mode 100644
index 000000000..4efeab4f7
--- /dev/null
+++ b/domains/domin.json
@@ -0,0 +1,13 @@
+{
+ "description": "Subdomain of is-a.dev for my profile card. I use DBH as hosting if it is necessary to let you know<3",
+ "repo": "https://github.com/Domin-MND/",
+ "owner": {
+ "username": "Domin-MND",
+ "email": "dominproject@gmail.com"
+ },
+ "record": {
+ "A": [
+ "164.132.74.251"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/domains/dylan.json b/domains/dylan.json
index 3e883d17c..ae756741e 100644
--- a/domains/dylan.json
+++ b/domains/dylan.json
@@ -6,6 +6,6 @@
"email": "dylan@tritan.gg"
},
"record": {
- "URL": "https://gitlab.com/team-tritan"
+ "A": ["209.216.85.142"]
}
}
diff --git a/domains/earthnuker.json b/domains/earthnuker.json
new file mode 100644
index 000000000..22612fb6c
--- /dev/null
+++ b/domains/earthnuker.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "earthnuker",
+ "email": "earthnuker+isadev@gmail.com"
+ },
+ "record": {
+ "CNAME":"earthnuker.keybase.pub"
+ }
+}
diff --git a/domains/eax.json b/domains/eax.json
new file mode 100644
index 000000000..e3af4cf06
--- /dev/null
+++ b/domains/eax.json
@@ -0,0 +1,11 @@
+{
+ "description": "is-a.dev website of eaxly",
+ "repo": "https://github.com/eaxly/eaxly.github.io",
+ "owner": {
+ "username": "eaxly",
+ "email": "extinctaxolotl@protonmail.com"
+ },
+ "record": {
+ "CNAME": "eaxly.github.io"
+ }
+}
diff --git a/domains/eazyblack.json b/domains/eazyblack.json
new file mode 100644
index 000000000..b6576582d
--- /dev/null
+++ b/domains/eazyblack.json
@@ -0,0 +1,11 @@
+{
+ "description": "eazyblack website.",
+ "repo": "https://github.com/EAZYBLACK/eazyblack.github.io",
+ "owner": {
+ "username": "eazyblack",
+ "email": "eazywhite40@gmail.com"
+ },
+ "record": {
+ "CNAME": "eazyblack.github.io"
+ }
+}
diff --git a/domains/eclipse.json b/domains/eclipse.json
new file mode 100644
index 000000000..b5efee529
--- /dev/null
+++ b/domains/eclipse.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Just-a-Unity-Dev",
+ "email": "",
+ "twitter": "@eclips_e69"
+ },
+ "description": "A little portfolio based with a basic account system for learning purposes.",
+ "record": {
+ "CNAME": "eclips-espace-production.up.railway.app"
+ }
+}
diff --git a/domains/eddyraz-trfk.json b/domains/eddyraz-trfk.json
new file mode 100644
index 000000000..3cf720a6b
--- /dev/null
+++ b/domains/eddyraz-trfk.json
@@ -0,0 +1,12 @@
+{
+ "description": "Traefik Console Demo Subdomain",
+ "repo": "https://github.com/eddyraz",
+ "owner": {
+ "username": "eddyraz",
+ "email": "eddyraz.fl@gmail.com"
+ },
+ "record": {
+ "CNAME": "srv231139-206152.vps.etecsa.cu"
+ }
+
+}
diff --git a/domains/eddyraz.json b/domains/eddyraz.json
new file mode 100644
index 000000000..cc90796da
--- /dev/null
+++ b/domains/eddyraz.json
@@ -0,0 +1,12 @@
+{
+ "description": "Eddyraz Public is-a.dev domain",
+ "repo": "https://github.com/eddyraz",
+ "owner": {
+ "username": "eddyraz",
+ "email": "eddyraz.fl@gmail.com"
+ },
+ "record": {
+ "CNAME": "srv231139-206152.vps.etecsa.cu"
+ }
+
+}
diff --git a/domains/ejaz.json b/domains/ejaz.json
new file mode 100644
index 000000000..a6664dc9b
--- /dev/null
+++ b/domains/ejaz.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal portfolio site.",
+ "repo": "https://github.com/ejaz/ejaz4.github.io",
+ "owner": {
+ "username": "ejaz4",
+ "email": "ejaz@ceccun.com",
+ "twitter": "ejazaIi"
+ },
+ "record": {
+ "CNAME": "ejaz4.github.io"
+ }
+}
diff --git a/domains/eldano.json b/domains/eldano.json
new file mode 100644
index 000000000..0cef3a142
--- /dev/null
+++ b/domains/eldano.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website for eldano dev",
+ "repo": "https://github.com/eldano/eldano.github.io",
+ "owner": {
+ "username": "eldano",
+ "email": "",
+ "twitter": "eldanov2"
+ },
+ "record": {
+ "CNAME": "eldano.github.io"
+ }
+}
diff --git a/domains/elias.json b/domains/elias.json
new file mode 100644
index 000000000..60f56f91a
--- /dev/null
+++ b/domains/elias.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website, im learning web dev!",
+ "repo": "https://github.com/EliasKernel/EliasKernel.github.io",
+ "owner": {
+ "username": "eliaskernel",
+ "email": "eliaskernel@protonmail.com",
+ "twitter": "eliaskernel"
+ },
+ "record": {
+ "CNAME": "eliaskernel.github.io"
+ }
+}
diff --git a/domains/elma.json b/domains/elma.json
new file mode 100644
index 000000000..655ee71ba
--- /dev/null
+++ b/domains/elma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "minibox24",
+ "email": "minibox724@gmail.com"
+ },
+ "record": {
+ "CNAME": "isadev.minibox.xyz"
+ }
+}
diff --git a/domains/enderdev.json b/domains/enderdev.json
new file mode 100644
index 000000000..733156ddd
--- /dev/null
+++ b/domains/enderdev.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal site for EnderDev",
+ "repo": "https://github.com/EnderDev/EnderDev",
+ "owner": {
+ "username": "EnderDev",
+ "email": "kieran@dothq.co",
+ "twitter": "EnderDev_"
+ },
+ "record": {
+ "CNAME": "enderdev.github.io"
+ }
+}
diff --git a/domains/enzo.json b/domains/enzo.json
new file mode 100644
index 000000000..49b8a0170
--- /dev/null
+++ b/domains/enzo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Enzo's portfolio",
+ "repo": "https://github.com/enzonaute/",
+ "owner": {
+ "username": "enzonaute",
+ "email": "hello@enzonaute.me"
+ },
+ "record": {
+ "CNAME": "enzonaute.me"
+ }
+}
diff --git a/domains/epnq.json b/domains/epnq.json
new file mode 100644
index 000000000..43558ab9d
--- /dev/null
+++ b/domains/epnq.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Site",
+ "repo": "https://github.com/wensente27",
+ "owner": {
+ "username": "wensente27",
+ "email": "",
+ "twitter": "pnqe_eli"
+ },
+ "record": {
+ "CNAME": "epnq.up.railway.app"
+ }
+}
diff --git a/domains/erik.json b/domains/erik.json
new file mode 100644
index 000000000..2422f9cb7
--- /dev/null
+++ b/domains/erik.json
@@ -0,0 +1,11 @@
+{
+ "description": "Erik Personal Website",
+ "repo": "https://github.com/Erik3010",
+ "owner": {
+ "username": "erik3010",
+ "email": "erikhau3010@gmail.com"
+ },
+ "record": {
+ "CNAME": "erik3010.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/eutrix.json b/domains/eutrix.json
new file mode 100644
index 000000000..9faa10060
--- /dev/null
+++ b/domains/eutrix.json
@@ -0,0 +1,12 @@
+{
+ "description": "A website to show off my projects.",
+ "repo": "https://github.com/Eutrix/eutrix.github.io",
+ "owner": {
+ "username": "Eutrix",
+ "email": "",
+ "discord": "Tony25#4455"
+ },
+ "record": {
+ "CNAME": "eutrix.github.io"
+ }
+}
diff --git a/domains/eviternal.json b/domains/eviternal.json
new file mode 100644
index 000000000..e5078a2df
--- /dev/null
+++ b/domains/eviternal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EviternalOfficial",
+ "email": "",
+ "discord": "Vaibhav Kashyap#5747"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/fake.json b/domains/fake.json
index b48861568..161498b2f 100644
--- a/domains/fake.json
+++ b/domains/fake.json
@@ -6,6 +6,11 @@
"email": "fake@fake.is-a.dev"
},
"record": {
- "CNAME": "yeeett.github.io"
+ "A": ["185.199.108.153"],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/faris.json b/domains/faris.json
similarity index 84%
rename from faris.json
rename to domains/faris.json
index 132e5d2e8..6bc346566 100644
--- a/faris.json
+++ b/domains/faris.json
@@ -2,6 +2,7 @@
"repo": "https://github.com/farisjalal",
"owner": {
"username": "farisjalal",
+ "email": "",
"twitter": "faris__jalal"
},
"record": {
@@ -9,4 +10,4 @@
"168.138.104.44"
]
}
-}
\ No newline at end of file
+}
diff --git a/domains/farish.json b/domains/farish.json
new file mode 100644
index 000000000..f7dc35832
--- /dev/null
+++ b/domains/farish.json
@@ -0,0 +1,14 @@
+{
+ "description": "Email",
+ "repo": "",
+ "owner": {
+ "username": "fxrysh",
+ "discord": "Fxrysh#5947",
+ "twitter": "fxryshdev",
+ "email": "hello@farish.is-a.dev"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/fastering.json b/domains/fastering.json
new file mode 100644
index 000000000..ec3da1f81
--- /dev/null
+++ b/domains/fastering.json
@@ -0,0 +1,11 @@
+{
+ "description": "Fastering18 portofolio website",
+ "repo": "https://github.com/Fastering18/Fastering18.github.io",
+ "owner": {
+ "username": "fastering18",
+ "email": "fastering18@gmail.com"
+ },
+ "record": {
+ "CNAME": "fastering18.github.io"
+ }
+}
diff --git a/domains/fbi.json b/domains/fbi.json
new file mode 100644
index 000000000..07f537c44
--- /dev/null
+++ b/domains/fbi.json
@@ -0,0 +1,11 @@
+{
+ "description": "2Much4U's Website",
+ "repo": "https://github.com/2m4u",
+ "owner": {
+ "username": "2M4U",
+ "email": "2m4u@fbi.is-a.dev"
+ },
+ "record": {
+ "URL": "https://2m4u.netlify.app"
+ }
+}
diff --git a/domains/fcircle-doc.json b/domains/fcircle-doc.json
new file mode 100644
index 000000000..2b7319f95
--- /dev/null
+++ b/domains/fcircle-doc.json
@@ -0,0 +1,11 @@
+{
+ "description": "fcircle-doc",
+ "repo": "https://github.com/hiltay/hexo-circle-of-friends-doc",
+ "owner": {
+ "username": "yyyz",
+ "email": "yyyzlyh@gmail.com"
+ },
+ "record": {
+ "URL": "https://hiltay.github.io/hexo-circle-of-friends-doc"
+ }
+}
diff --git a/domains/fdciabdul.json b/domains/fdciabdul.json
new file mode 100644
index 000000000..c52c8c9bc
--- /dev/null
+++ b/domains/fdciabdul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fdciabdul",
+ "email": "abdulmuttaqin456@gmail.com"
+ },
+ "record": {
+ "CNAME": "fdciabdul.github.io"
+ }
+}
diff --git a/domains/fel1x0u.json b/domains/fel1x0u.json
new file mode 100644
index 000000000..9bcaaca82
--- /dev/null
+++ b/domains/fel1x0u.json
@@ -0,0 +1,12 @@
+{
+ "description": "Add some description",
+ "repo": "https://github.com/fel1x0u/fel1x0u.github.io",
+ "owner": {
+ "username": "fel1x0u",
+ "email": "felixcou@pm.me",
+ "twitter": "fel1x0u1"
+ },
+ "record": {
+ "CNAME": "fel1x0u.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/felga.json b/domains/felga.json
new file mode 100644
index 000000000..fc90b54b7
--- /dev/null
+++ b/domains/felga.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Felga7453",
+ "email": "wojciech.faruga@outlook.com"
+ },
+ "record": {
+ "CNAME": "felga.ddns.net"
+ }
+}
diff --git a/domains/felixtr.json b/domains/felixtr.json
new file mode 100644
index 000000000..aa74e2904
--- /dev/null
+++ b/domains/felixtr.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/tphuc/tphuc.github.io",
+ "owner": {
+ "username": "tphuc",
+ "email": "felixtran2000@gmail.com"
+ },
+ "record": {
+ "CNAME": "tphuc.github.io"
+ }
+}
diff --git a/domains/foufou-exe.json b/domains/foufou-exe.json
new file mode 100644
index 000000000..537ba5fb1
--- /dev/null
+++ b/domains/foufou-exe.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/Foufou-exe/foufou-exe.github.io",
+ "owner": {
+ "username": "Foufou-exe",
+ "email": "thibaut.maurras34@gmail.com",
+ "twitter": "MaurrasT"
+ },
+ "record": {
+ "CNAME": "foufou-exe.github.io"
+ }
+}
diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json
new file mode 100644
index 000000000..2cef409e2
--- /dev/null
+++ b/domains/fourjuaneight.json
@@ -0,0 +1,11 @@
+{
+ "description": "Juan's personal site",
+ "repo": "https://github.com/fourjuaneight",
+ "owner": {
+ "username": "fourjuaneight",
+ "email": "juan@villela.co"
+ },
+ "record": {
+ "URL": "https://juanvillela.dev"
+ }
+}
diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json
new file mode 100644
index 000000000..727b37a31
--- /dev/null
+++ b/domains/foxie.arman.json
@@ -0,0 +1,16 @@
+{
+ "description": "Foxie's Homepage by arman",
+ "repo": "https://github.com/ItzArman09/foxie.js",
+ "owner": {
+ "username": "ItzArman09",
+ "email": "contact@mail.arman.is-a.dev"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/foxy4096.json b/domains/foxy4096.json
new file mode 100644
index 000000000..cba5df249
--- /dev/null
+++ b/domains/foxy4096.json
@@ -0,0 +1,12 @@
+{
+ "description": "A Dumb Web Devloper Who Loves Django",
+ "repo": "https://github.com/foxy4096/foxy4096.github.io",
+ "owner": {
+ "username": "foxy4096",
+ "email": "adityapriyadarshi669@gmail.com",
+ "twitter": "Foxy4096"
+ },
+ "record": {
+ "CNAME": "foxy4096.github.io"
+ }
+}
diff --git a/domains/franciskafieh.json b/domains/franciskafieh.json
new file mode 100644
index 000000000..73e05b07c
--- /dev/null
+++ b/domains/franciskafieh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Francis Kafieh's Personal Blog",
+ "repo": "https://github.com/franciskafieh/franciskafieh.github.io",
+ "owner": {
+ "username": "franciskafieh",
+ "email": "kafieh.francis@gmail.com"
+ },
+ "record": {
+ "CNAME": "franciskafieh.github.io"
+ }
+}
diff --git a/domains/frazix.json b/domains/frazix.json
new file mode 100644
index 000000000..1add9d6f9
--- /dev/null
+++ b/domains/frazix.json
@@ -0,0 +1,11 @@
+{
+ "description": "Frazix's personal developer website",
+ "repo": "https://github.com/Frazix12/Frazix12.github.io",
+ "owner": {
+ "username": "Frazix12",
+ "email": "frazixgaming22@gmail.com"
+ },
+ "record": {
+ "CNAME": "frazix12.github.io"
+ }
+}
diff --git a/domains/frcat.json b/domains/frcat.json
new file mode 100644
index 000000000..235e95ab1
--- /dev/null
+++ b/domains/frcat.json
@@ -0,0 +1,12 @@
+{
+ "description": "FRCat's Website",
+ "repo": "https://github.com/frcat/Website",
+ "owner": {
+ "username": "French-Cat",
+ "email": "",
+ "discord": "French Cat#0002"
+ },
+ "record": {
+ "CNAME": "frcat.github.io"
+ }
+}
diff --git a/domains/frog.json b/domains/frog.json
new file mode 100644
index 000000000..de9e121a4
--- /dev/null
+++ b/domains/frog.json
@@ -0,0 +1,11 @@
+{
+ "description": "The Frog's Website",
+ "repo": "https://github.com/FrogIsADev",
+ "owner": {
+ "username": "MrNover",
+ "email": "alfie@nytern.com"
+ },
+ "record": {
+ "CNAME": "51780377-151b-4095-b4d5-113b2a9d12e0.id.repl.co"
+ }
+}
diff --git a/domains/fullpwn.json b/domains/fullpwn.json
new file mode 100644
index 000000000..3987438e6
--- /dev/null
+++ b/domains/fullpwn.json
@@ -0,0 +1,12 @@
+{
+ "description": "My main site.",
+ "repo": "https://github.com/fullpwn/fullpwn.github.io",
+ "owner": {
+ "username": "fullpwn",
+ "email": "fullpwn@cumallover.me",
+ "twitter": "fullpwn"
+ },
+ "record": {
+ "CNAME": "fullpwn.github.io"
+ }
+}
diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json
new file mode 100644
index 000000000..403673491
--- /dev/null
+++ b/domains/fulminatingmoat.json
@@ -0,0 +1,12 @@
+{
+ "description": "Website",
+ "repo": "https://github.com/fulminatingmoat",
+ "owner": {
+ "username": "fulminatingmoat",
+ "email": "fulminatingmoat@fulminatingmoat.com",
+ "discord": "ᅠᅠ#6266"
+ },
+ "record": {
+ "URL": "https://fulminatingmoat.com"
+ }
+}
diff --git a/domains/fxrysh.json b/domains/fxrysh.json
new file mode 100644
index 000000000..6ae337754
--- /dev/null
+++ b/domains/fxrysh.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal portfolio written in VueJS",
+ "repo": "https://github.com/fxrysh/portfolio",
+ "owner": {
+ "username": "fxrysh",
+ "discord": "Fxrysh#5947",
+ "twitter": "fxryshdev",
+ "email": "hello@farish.is-a.dev"
+ },
+ "record": {
+ "CNAME": "86872205c14179c98afa1392.cname.deno.dev"
+ }
+}
diff --git a/domains/gamingboots.json b/domains/gamingboots.json
new file mode 100644
index 000000000..9e892ff7b
--- /dev/null
+++ b/domains/gamingboots.json
@@ -0,0 +1,11 @@
+{
+ "description": "A description",
+ "repo": "https://github.com/gamingboots/gamingboots.github.io",
+ "owner": {
+ "username": "gamingboots",
+ "email": "gamngboots19@gmail.com"
+ },
+ "record": {
+ "CNAME": "gamingboots.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/garden.json b/domains/garden.json
new file mode 100644
index 000000000..b7efda5aa
--- /dev/null
+++ b/domains/garden.json
@@ -0,0 +1,11 @@
+{
+ "description": "my personal website",
+ "repo": "https://github.com/nocekek",
+ "owner": {
+ "username": "nocekek",
+ "email": "nocekek.heytherebuddy@gmail.com"
+ },
+ "record": {
+ "CNAME": "b8642d5b-1564-4bcd-aa54-03228a9b8d96.id.repl.co"
+ }
+}
diff --git a/domains/gautam.json b/domains/gautam.json
new file mode 100644
index 000000000..45204e0e0
--- /dev/null
+++ b/domains/gautam.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "GautamMKGarg",
+ "email": "",
+ "twitter": "GautamMKGarg"
+ },
+ "record": {
+ "URL": "https://www.fiverr.com/gautammkgarg"
+ }
+}
diff --git a/domains/gavrielsatrio.json b/domains/gavrielsatrio.json
new file mode 100644
index 000000000..09b6e0234
--- /dev/null
+++ b/domains/gavrielsatrio.json
@@ -0,0 +1,11 @@
+{
+ "description": "Gavriel Satrio github pages",
+ "repo": "https://github.com/gavrielsatrio/gavrielsatrio.github.io",
+ "owner": {
+ "username": "gavrielsatrio",
+ "email": "gavriel228@gmail.com"
+ },
+ "record": {
+ "CNAME": "gavrielsatrio.github.io"
+ }
+}
diff --git a/domains/ghex.json b/domains/ghex.json
new file mode 100644
index 000000000..6642b98f8
--- /dev/null
+++ b/domains/ghex.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website",
+ "repo": "https://github.com/ghextercortes/ghextercortes.github.io",
+ "owner": {
+ "username": "ghextercortes",
+ "email": "ghextershumies@gmail.com",
+ "twitter": "CortesGhexter"
+ },
+ "record": {
+ "CNAME": "ghextercortes.github.io"
+ }
+}
diff --git a/domains/ghost.json b/domains/ghost.json
new file mode 100644
index 000000000..d931c1561
--- /dev/null
+++ b/domains/ghost.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ghostdevv",
+ "email": "ghostdevbusiness@gmail.com",
+ "twitter": "onlyspaceghost"
+ },
+ "repo": "https://github.com/ghostdevv/website",
+ "record": {
+ "URL": "https://ghostdev.xyz"
+ }
+ }
\ No newline at end of file
diff --git a/domains/git.maskduck.json b/domains/git.maskduck.json
new file mode 100644
index 000000000..422bc24fc
--- /dev/null
+++ b/domains/git.maskduck.json
@@ -0,0 +1,11 @@
+{
+ "description": "my git repos",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "maskduckuwu@gmail.com",
+ "discord": "MaskDuck#7325"
+ },
+ "record": {
+ "CNAME": "a.redirect.pizza"
+ }
+}
diff --git a/domains/givinghawk.json b/domains/givinghawk.json
new file mode 100644
index 000000000..26b632d07
--- /dev/null
+++ b/domains/givinghawk.json
@@ -0,0 +1,11 @@
+{
+ "description": "My is-a.dev cname record",
+ "repo": "https://github.com/givinghawk",
+ "owner": {
+ "username": "givinghawk",
+ "email": "gh@givinghawk.xyz"
+ },
+ "record": {
+ "URL": "https://givinghawk.xyz"
+ }
+}
diff --git a/domains/glitchish.json b/domains/glitchish.json
new file mode 100644
index 000000000..02740359a
--- /dev/null
+++ b/domains/glitchish.json
@@ -0,0 +1,11 @@
+{
+ "description": "Glitch's .IS-A.DEV domain",
+ "repo": "https://github.com/glitchish.github.io",
+ "owner": {
+ "username": "glitchish",
+ "email": "gavinjstacey@gmail.com"
+ },
+ "record": {
+ "CNAME": "glitchish.github.io"
+ }
+}
diff --git a/domains/gnanaelisa.json b/domains/gnanaelisa.json
new file mode 100644
index 000000000..87e0d2330
--- /dev/null
+++ b/domains/gnanaelisa.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website",
+ "repo": "https://github.com/jgnanaelisa/gnanaelisa.github.io",
+ "owner": {
+ "username": "jgnanaelisa",
+ "email": "gnanaelisa@gmail.com"
+ },
+ "record": {
+ "CNAME": "jgnanaelisa.github.io"
+ }
+}
diff --git a/domains/go.avasthi.json b/domains/go.avasthi.json
new file mode 100644
index 000000000..89158a2ce
--- /dev/null
+++ b/domains/go.avasthi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "avasthi-git",
+ "email": "",
+ "telegram": "avasthie"
+ },
+
+ "record": {
+ "CNAME": "cname.short.io"
+ }
+}
diff --git a/domains/godwhite.json b/domains/godwhite.json
new file mode 100644
index 000000000..253481fff
--- /dev/null
+++ b/domains/godwhite.json
@@ -0,0 +1,12 @@
+{
+ "description": "A javascript developer!",
+ "repo": "https://github.com/GodwhiteTaiwan/Docs",
+ "owner": {
+ "username": "GodwhiteTaiwan",
+ "email": "godwhite.yt.channel@gmail.com",
+ "twitter": "GW_GodwhiteTW"
+ },
+ "record": {
+ "CNAME": "godwhitetaiwan.github.io"
+ }
+}
diff --git a/domains/grapeapplefruit.json b/domains/grapeapplefruit.json
new file mode 100644
index 000000000..6a4ce5fbb
--- /dev/null
+++ b/domains/grapeapplefruit.json
@@ -0,0 +1,11 @@
+{
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/grapeapplefruit/grapeapplefruit.github.io",
+ "owner": {
+ "username": "grapeapplefruit",
+ "email": "jaxenreiter957@gmail.com"
+ },
+ "record": {
+ "CNAME": "grapeapplefruit.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/gravy.json b/domains/gravy.json
new file mode 100644
index 000000000..a000f4104
--- /dev/null
+++ b/domains/gravy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thatgravyboat",
+ "twitter": "thatgravyboat",
+ "discord": "thatgravyboat#0001",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://thatgravyboat.tech"
+ }
+}
diff --git a/domains/grif.json b/domains/grif.json
new file mode 100644
index 000000000..902587b56
--- /dev/null
+++ b/domains/grif.json
@@ -0,0 +1,12 @@
+{
+ "description": "My own hub for everything that I do!",
+ "repo": "https://github.com/GrifTheDev/grifthedev.github.io",
+ "owner": {
+ "username": "Grif (GrifTheDev on GitHub)",
+ "email": "tmjeteo3@gmail.com"
+ },
+ "record": {
+ "CNAME": "grifthedev.github.io"
+ }
+}
+
diff --git a/domains/hansen.json b/domains/hansen.json
new file mode 100644
index 000000000..bacf2efcc
--- /dev/null
+++ b/domains/hansen.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio site",
+ "repo": "https://github.com/HansenKhi/hansenkhi.github.io",
+ "owner": {
+ "username": "HansenKhi",
+ "email": "hansenkhi45@gmail.com"
+ },
+ "record": {
+ "CNAME": "hansenkhi.github.io"
+ }
+}
diff --git a/domains/harmputman.json b/domains/harmputman.json
new file mode 100644
index 000000000..c28ee2497
--- /dev/null
+++ b/domains/harmputman.json
@@ -0,0 +1,12 @@
+{
+ "description": "Harm Putman a.k.a. High Five",
+ "repo": "https://github.com/harmputman",
+ "owner": {
+ "username": "harmputman",
+ "email": "",
+ "twitter": "harmputman"
+ },
+ "record": {
+ "URL": "https://www.high-five.dev"
+ }
+}
diff --git a/domains/harshatwo.json b/domains/harshatwo.json
index 61771d5f0..6edcd3422 100644
--- a/domains/harshatwo.json
+++ b/domains/harshatwo.json
@@ -4,6 +4,6 @@
"email": "harshavarthankarunakaran@gmail.com"
},
"record": {
- "URL": "https://harshatwo.netlify.app/"
+ "URL": "https://harshatwo.ga/"
}
}
diff --git a/domains/helge.json b/domains/helge.json
new file mode 100644
index 000000000..b5fa7d5f0
--- /dev/null
+++ b/domains/helge.json
@@ -0,0 +1,11 @@
+{
+ "description": "personal website at some point, now pointing to a VPS I own",
+ "repo": "https://github.com/iohansson/kldcs",
+ "owner": {
+ "username": "iohansson",
+ "email": "root@helge8.one"
+ },
+ "record": {
+ "CNAME": "helge8.cc"
+ }
+}
diff --git a/domains/henry.json b/domains/henry.json
new file mode 100644
index 000000000..e3a3f8415
--- /dev/null
+++ b/domains/henry.json
@@ -0,0 +1,12 @@
+{
+ "description": "My website, I guess?",
+ "repo": "https://github.com/henryhuangbc/henryhuangbc.github.io",
+ "owner": {
+ "username": "henryhuangbc",
+ "email": "space.galaxy.world@gmail.com",
+ "twitter": "hd3vv"
+ },
+ "record": {
+ "CNAME": "henryhuangbc.github.io"
+ }
+}
diff --git a/domains/henrymartin.json b/domains/henrymartin.json
new file mode 100644
index 000000000..0625d9d7a
--- /dev/null
+++ b/domains/henrymartin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HENRYMARTIN5",
+ "email": "henrysjmartinthesecond@gmail.com"
+ },
+ "record": {
+ "CNAME": "henrymartin5.github.io"
+ }
+}
diff --git a/domains/herkura.json b/domains/herkura.json
new file mode 100644
index 000000000..363a1eb9f
--- /dev/null
+++ b/domains/herkura.json
@@ -0,0 +1,11 @@
+{
+ "description": "Herkura's Portfolio",
+ "repo": "https://github.com/herkura/.me",
+ "owner": {
+ "username": "herkura",
+ "email":"hershilpiplani16@gmail.com"
+ },
+ "record": {
+ "CNAME": "herkura.github.io"
+ }
+}
diff --git a/domains/hironichu.json b/domains/hironichu.json
new file mode 100644
index 000000000..622c6bf6c
--- /dev/null
+++ b/domains/hironichu.json
@@ -0,0 +1,16 @@
+{
+ "description": "Yes I am a developer",
+ "repo": "https://github.com/hironichu",
+ "owner": {
+ "username": "hironichu",
+ "email": "hironichu@gmail.com"
+ },
+ "record": {
+ "A": [
+ "34.120.54.55"
+ ],
+ "TXT": [
+ "deno-com-validation=f1b7200ba5f97a80db0aaa12"
+ ]
+ }
+}
diff --git a/domains/hod.json b/domains/hod.json
new file mode 100644
index 000000000..cf4c7e60f
--- /dev/null
+++ b/domains/hod.json
@@ -0,0 +1,13 @@
+{
+ "description": "hod's primary website.",
+ "repo": "https://github.com/hodss/hodssxyz",
+ "owner": {
+ "username": "hodss",
+ "email": "hod@hodss.xyz",
+ "twitter": "@hodss_",
+ "discord": "hod#2311"
+ },
+ "record": {
+ "URL": "https://hodss.xyz/?refer=is-a-dev"
+ }
+}
diff --git a/domains/hugovidafe.json b/domains/hugovidafe.json
index 7c1773c2a..b0ef69294 100644
--- a/domains/hugovidafe.json
+++ b/domains/hugovidafe.json
@@ -3,10 +3,10 @@
"repo": "https://github.com/Hugovidafe-OSS",
"owner": {
"username": "Hugovidafe",
- "email": "hugo.vidal.ferre@gmail.com",
+ "email": "hugo@hugovidafe.dev",
"twitter": "Hugovidafe"
},
"record": {
- "CNAME": "hugovidafe.github.io"
+ "URL": "https://hugovidafe.dev"
}
}
diff --git a/domains/hycord.json b/domains/hycord.json
new file mode 100644
index 000000000..e694b105e
--- /dev/null
+++ b/domains/hycord.json
@@ -0,0 +1,12 @@
+{
+ "description": "Hi! I'm Hycord!",
+ "repo": "https://github.com/hycord/hycord.github.io",
+ "owner": {
+ "username": "hycord",
+ "email": "hycord@duck.com",
+ "twitter": "IGNHycord"
+ },
+ "record": {
+ "CNAME": "hycord.github.io"
+ }
+}
diff --git a/domains/hypermusic.json b/domains/hypermusic.json
new file mode 100644
index 000000000..d31f76d14
--- /dev/null
+++ b/domains/hypermusic.json
@@ -0,0 +1,20 @@
+{
+ "owner": {
+ "username": "Git-Jaydeep",
+ "email": "anij9825@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.110.153",
+ "185.199.111.153",
+ "185.199.109.153"
+ ],
+ "TXT": "google-site-verification=KgttGW-UWONYH2KEFMY3WgmRTb8xyBsk5h-6mLd-CkU",
+ "MX": [
+ "mx.zoho.in",
+ "mx2.zoho.in",
+ "mx3.zoho.in"
+ ]
+ }
+}
diff --git a/domains/iakshay.json b/domains/iakshay.json
new file mode 100644
index 000000000..6d86515b0
--- /dev/null
+++ b/domains/iakshay.json
@@ -0,0 +1,12 @@
+{
+ "description": "Hola! This is Akshay's personal website.",
+ "repo": "https://github.com/akshay1018/akshay1018.github.io",
+ "owner": {
+ "username": "Akshay1018",
+ "email": "ak715173@gmail.com",
+ "twitter": "@i_Akshay09"
+ },
+ "record": {
+ "CNAME": "Akshay1018.github.io"
+ }
+}
diff --git a/domains/iansalazar.json b/domains/iansalazar.json
new file mode 100644
index 000000000..f23e98bd7
--- /dev/null
+++ b/domains/iansalazar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Ian Salazar's portfolio website",
+ "repo": "https://github.com/dertrockx/freelance-frontend-app",
+ "owner": {
+ "username": "dertrockx",
+ "email": "iansalazar67@gmail.com"
+ },
+ "record": {
+ "CNAME": "freelance-frontend-app-production.up.railway.app"
+ }
+}
diff --git a/domains/icm.json b/domains/icm.json
new file mode 100644
index 000000000..323ffb176
--- /dev/null
+++ b/domains/icm.json
@@ -0,0 +1,11 @@
+{
+ "description": "Im ICM, a monster who likes to code but a noob in it, trying to learn js and likes to edit photos.",
+ "repo": "https://github.com/ICM185/icm185.github.io",
+ "owner": {
+ "username": "ICM185",
+ "email": "ironcladmonster185@gmail.com"
+},
+ "record": {
+ "CNAME": "icm185.github.io"
+ }
+}
diff --git a/domains/ico.json b/domains/ico.json
new file mode 100644
index 000000000..50f240c05
--- /dev/null
+++ b/domains/ico.json
@@ -0,0 +1,11 @@
+{
+ "description": "Simply Iconical",
+ "repo": "https://github.com/babyico/babyico.github.io",
+ "owner": {
+ "username": "babyico",
+ "email": "iconical@programmer.net"
+ },
+ "record": {
+ "CNAME": "babyico.github.io"
+ }
+}
diff --git a/domains/imad.json b/domains/imad.json
new file mode 100644
index 000000000..a6f00d379
--- /dev/null
+++ b/domains/imad.json
@@ -0,0 +1,13 @@
+{
+ "description": "Imad",
+ "repo": "https://github.com/imadboy89",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "A": [
+ "20.101.44.225"
+ ]
+ }
+}
diff --git a/domains/imd.json b/domains/imd.json
new file mode 100644
index 000000000..a6f00d379
--- /dev/null
+++ b/domains/imd.json
@@ -0,0 +1,13 @@
+{
+ "description": "Imad",
+ "repo": "https://github.com/imadboy89",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "A": [
+ "20.101.44.225"
+ ]
+ }
+}
diff --git a/domains/imsudip.json b/domains/imsudip.json
new file mode 100644
index 000000000..acfb3019f
--- /dev/null
+++ b/domains/imsudip.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal portfolio site for all my projects",
+ "repo": "https://github.com/imsudip/portfolio",
+ "owner": {
+ "username": "imsudip",
+ "email": "sudipghosh9333@gmail.com"
+ },
+ "record": {
+ "URL": "https://portfolio.imsudip.ml"
+ }
+}
diff --git a/domains/infinitecode.json b/domains/infinitecode.json
new file mode 100644
index 000000000..c33f88ec6
--- /dev/null
+++ b/domains/infinitecode.json
@@ -0,0 +1,10 @@
+{
+ "description": "Infinite's personal portfolio!",
+ "owner": {
+ "username": "InfiniteCode",
+ "email": "foxyss@pm.me"
+ },
+ "record": {
+ "A": ["130.61.72.125"]
+ }
+}
diff --git a/domains/insta.badboy.json b/domains/insta.badboy.json
new file mode 100644
index 000000000..5655344b9
--- /dev/null
+++ b/domains/insta.badboy.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/Bad-Boy-Codes/Instagram-Projects",
+ "description": "Instagram profile viewer.",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "contact@mail.badboy.is-a.dev"
+ },
+ "record": {
+ "CNAME": "bad-boy-codes.github.io"
+ }
+}
diff --git a/domains/instapi.aditya.json b/domains/instapi.aditya.json
new file mode 100644
index 000000000..c7acbfab5
--- /dev/null
+++ b/domains/instapi.aditya.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "pythonmcpi",
+ "email": "user3456@insomnia247.nl",
+ "irc": "user3456@irc.insomnia247.nl/#shells",
+ "discord": "Little Furret#7901",
+ "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
+ },
+ "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
+ "record": {
+ "A": ["76.223.55.44"]
+ }
+}
diff --git a/domains/its-pablo.json b/domains/its-pablo.json
new file mode 100644
index 000000000..e755d4111
--- /dev/null
+++ b/domains/its-pablo.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "email": "itspablo@null.net",
+ "username": "its-pablo",
+ "discord": "pablo g#4477"
+ },
+ "description": "its-pablo's official website :)",
+ "repo": "github.com/its-pablo/its-pablo.github.io",
+ "record": {
+ "CNAME": "its-pablo.github.io"
+ }
+}
diff --git a/domains/j1shnu.json b/domains/j1shnu.json
new file mode 100644
index 000000000..dcfbc47de
--- /dev/null
+++ b/domains/j1shnu.json
@@ -0,0 +1,11 @@
+{
+ "description": "Jishnu's site for is-a.dev",
+ "repo": "https://github.com/j1shnu/j1shnu.github.io",
+ "owner": {
+ "username": "j1shnu",
+ "email": "pjishnu44@gmail.com"
+ },
+ "record": {
+ "CNAME": "www.j1shnu.ml"
+ }
+}
\ No newline at end of file
diff --git a/domains/jacobtm.json b/domains/jacobtm.json
new file mode 100644
index 000000000..dcb28dc3a
--- /dev/null
+++ b/domains/jacobtm.json
@@ -0,0 +1,12 @@
+{
+ "description": "About me.",
+ "repo": "https://github.com/Jacob1Tm",
+ "owner": {
+ "username": "Jacob1Tm",
+ "email": "",
+ "twitter": "Jacob1_Tm"
+ },
+ "record": {
+ "URL": "https://jacobtm.ga"
+ }
+}
diff --git a/domains/jakehe.json b/domains/jakehe.json
new file mode 100644
index 000000000..4691f032e
--- /dev/null
+++ b/domains/jakehe.json
@@ -0,0 +1,12 @@
+{
+ "description": "Jake He's Portfolio",
+ "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio",
+ "owner": {
+ "username": "Jakethebest1238",
+ "email": "jakehe1226@gmail.com",
+ "twitter": "jakethebest1238"
+ },
+ "record": {
+ "CNAME": "Jakethebest1238.github.io"
+ }
+}
diff --git a/domains/jalaj.json b/domains/jalaj.json
new file mode 100644
index 000000000..64ad19746
--- /dev/null
+++ b/domains/jalaj.json
@@ -0,0 +1,23 @@
+{
+
+ "description": "Jalaj's Portfolio",
+
+ "repo": "https://github.com/jalajcodes/jalaj",
+
+ "owner": {
+
+ "username": "jalajcodes",
+
+ "email": "",
+
+ "twitter": "jalajcodes"
+
+ },
+
+ "record": {
+
+ "CNAME": "jalaj.up.railway.app"
+
+ }
+
+}
diff --git a/domains/janeberru.json b/domains/janeberru.json
new file mode 100644
index 000000000..3751cf607
--- /dev/null
+++ b/domains/janeberru.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "nicholasyoannou",
+ "email": "",
+ "discord": "janeberru#4594",
+ "note": "You can contact me by email or discord, really don't mind :)"
+ },
+ "description": "I'll probably be testing code and such on janeberru.is-a.dev. ¯\\_(ツ)_/¯",
+ "record": {
+ "CNAME": "testing-12.nicholas.dev"
+ }
+}
diff --git a/domains/jarmos.json b/domains/jarmos.json
new file mode 100644
index 000000000..608589827
--- /dev/null
+++ b/domains/jarmos.json
@@ -0,0 +1,12 @@
+{
+ "description": "A personal blog which is hosted on Medium temporarily.",
+ "repo": "https://github.com/Jarmos-san/blog",
+ "owner": {
+ "username": "Jarmos-san",
+ "email": "",
+ "twitter": "Jarmosan"
+ },
+ "record": {
+ "CNAME": "jarmos.medium.com"
+ }
+}
diff --git a/domains/jellobow.json b/domains/jellobow.json
new file mode 100644
index 000000000..ace21ed18
--- /dev/null
+++ b/domains/jellobow.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "homelyseven250",
+ "email": "",
+ "discord": "JelloBow#6734"
+ },
+ "record": {
+ "CNAME": "mysite-production-556a.up.railway.app"
+ }
+}
diff --git a/domains/jeweetzelf.json b/domains/jeweetzelf.json
new file mode 100644
index 000000000..ccfeb7103
--- /dev/null
+++ b/domains/jeweetzelf.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jeweetzelfWasTaken",
+ "email": "jeweetzelf@rtexbot.com"
+ },
+ "record": {
+ "CNAME": "jeweetzelfwastaken.github.io"
+ }
+}
diff --git a/domains/jeydin.json b/domains/jeydin.json
new file mode 100644
index 000000000..3b8497af6
--- /dev/null
+++ b/domains/jeydin.json
@@ -0,0 +1,12 @@
+{
+ "description": "I play a game called Genshin Impact",
+ "repo": "https://github.com/Jeydin/jeydin.github.io",
+ "owner": {
+ "username": "Jeydin",
+ "email": "JeyPham21@gmail.com",
+ "twitter": "Jeydin21"
+ },
+ "record": {
+ "CNAME": "jeydin.github.io"
+ }
+}
diff --git a/domains/jimmy.json b/domains/jimmy.json
new file mode 100644
index 000000000..b9a33769e
--- /dev/null
+++ b/domains/jimmy.json
@@ -0,0 +1,12 @@
+{
+ "description": "JIMMY's Personal Website",
+ "repo": "https://github.com/JIMMY1371/jimmy1371.github.io",
+ "owner": {
+ "username": "JIMMY1371",
+ "email": "idkvro8@gmail.com",
+ "discord": "JIMMY#1371"
+ },
+ "record": {
+ "CNAME": "jimmy1371.github.io"
+ }
+}
diff --git a/domains/joaovitorzv.json b/domains/joaovitorzv.json
new file mode 100644
index 000000000..779e03599
--- /dev/null
+++ b/domains/joaovitorzv.json
@@ -0,0 +1,12 @@
+{
+ "description": "@joaovitorzv blog",
+ "repo": "https://github.com/joaovitorzv/joaovitorzv.github.io",
+ "owner": {
+ "username": "joaovitorzv",
+ "email": "joaovitorzv@outlook.com",
+ "twitter": "null"
+ },
+ "record": {
+ "CNAME": "joaovitorzv.github.io"
+ }
+}
diff --git a/domains/joe-dawley.json b/domains/joe-dawley.json
new file mode 100644
index 000000000..b11aa52ee
--- /dev/null
+++ b/domains/joe-dawley.json
@@ -0,0 +1,12 @@
+{
+ "description": "Joe Dawley",
+ "repo": "https://github.com/jdawley",
+ "owner": {
+ "username": "jdawley",
+ "email": "",
+ "twitter": "joedawley"
+ },
+ "record": {
+ "CNAME": "joedawley.com"
+ }
+}
diff --git a/domains/joshua.json b/domains/joshua.json
new file mode 100644
index 000000000..15e1e6e77
--- /dev/null
+++ b/domains/joshua.json
@@ -0,0 +1,11 @@
+{
+ "description": "Joshua's Website",
+ "repo": "https://github.com/joshua-noakes1",
+ "owner": {
+ "username": "joshua-noakes1",
+ "email": "joshua.noakes1@icloud.com"
+ },
+ "record": {
+ "A": ["143.47.226.76"]
+ }
+}
diff --git a/domains/jqshuv.json b/domains/jqshuv.json
new file mode 100644
index 000000000..aa2341712
--- /dev/null
+++ b/domains/jqshuv.json
@@ -0,0 +1,12 @@
+{
+ "description": "Jqshuv's Portfolio Page",
+ "repo": "https://github.com/jqshuv/jqshuv.github.io",
+ "owner": {
+ "username": "jqshuv",
+ "email": "jqshuv@gmail.com",
+ "twitter": "jqshuv"
+ },
+ "record": {
+ "CNAME": "jqshuv.github.io"
+ }
+}
diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json
new file mode 100644
index 000000000..65defaeeb
--- /dev/null
+++ b/domains/justtrynacode.json
@@ -0,0 +1,12 @@
+{
+ "description": "Tryna's website",
+ "repo": "https://github.com/JustTrynacodee/JustTrynaCodee.github.io",
+ "owner": {
+ "username": "JustTrynacodee",
+ "email": "",
+ "discord": "JustTrynaCode#0810"
+ },
+ "record": {
+ "CNAME": "JustTrynaCodee.github.io"
+ }
+}
diff --git a/domains/k93msy.json b/domains/k93msy.json
new file mode 100644
index 000000000..d72cdaf03
--- /dev/null
+++ b/domains/k93msy.json
@@ -0,0 +1,11 @@
+{
+ "description": "K93MSY website",
+ "repo": "https://github.com/K93MSY/K93MSY.github.io",
+ "owner": {
+ "username": "K93MSY",
+ "email": "kuritama0903@gmail.com"
+ },
+ "record": {
+ "CNAME": "k93msy.github.io"
+ }
+}
diff --git a/domains/kaz.json b/domains/kaz.json
new file mode 100644
index 000000000..18a5fd01f
--- /dev/null
+++ b/domains/kaz.json
@@ -0,0 +1,11 @@
+{
+ "description": "Add some description",
+ "repo": "https://github.com/kazz0001/kazz0001.github.io",
+ "owner": {
+ "username": "kazz0001",
+ "email": "badchicken11690@gmail.com"
+ },
+ "record": {
+ "CNAME": "kazz0001.github.io"
+ }
+}
diff --git a/domains/keju.json b/domains/keju.json
new file mode 100644
index 000000000..b19ed8fdf
--- /dev/null
+++ b/domains/keju.json
@@ -0,0 +1,12 @@
+{
+ "description": "Kelvin Julian - Personal Website",
+ "repo": "https://github.com/kejuuu/kejuuu.github.io",
+ "owner": {
+ "username": "kejuuu",
+ "email": "kelvinjulian.kj@gmail.com",
+ "twitter": "@Keju__"
+ },
+ "record": {
+ "CNAME": "kejuuu.github.io"
+ }
+}
diff --git a/domains/kekda.json b/domains/kekda.json
new file mode 100644
index 000000000..01dd1fb78
--- /dev/null
+++ b/domains/kekda.json
@@ -0,0 +1,12 @@
+{
+ "description": "A description",
+ "repo": "https://github.com/kekda-py/kekda-py.github.io",
+ "owner": {
+ "username": "kekda-py",
+ "email": "yashverma7869@gmail.com",
+ "twitter": "your-twitter-username"
+ },
+ "record": {
+ "CNAME": "kekdais-adev-production.up.railway.app"
+ }
+}
diff --git a/domains/kenwu.json b/domains/kenwu.json
new file mode 100644
index 000000000..83dcbaf90
--- /dev/null
+++ b/domains/kenwu.json
@@ -0,0 +1,12 @@
+{
+ "description": "This is Ken Wu's personal portfolio website.",
+ "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io",
+ "owner": {
+ "username": "KenWuqianghao",
+ "email": "wooqianghao@gmail.com",
+ "twitter": "KenWuqianghao"
+ },
+ "record": {
+ "CNAME": "kenwuqianghao.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/kiara.json b/domains/kiara.json
new file mode 100644
index 000000000..1d3eb6904
--- /dev/null
+++ b/domains/kiara.json
@@ -0,0 +1,11 @@
+{
+ "description": "Amelia Corp Official Website.",
+ "repo": "https://github.com/aaraam/aaraam.github.io",
+ "owner": {
+ "username": "ameliakiara",
+ "email": "contact@kiara.my.id"
+ },
+ "record": {
+ "CNAME": "lavalink-music-bot-production.up.railway.app"
+ }
+}
diff --git a/domains/kicrops.json b/domains/kicrops.json
new file mode 100644
index 000000000..314199a08
--- /dev/null
+++ b/domains/kicrops.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal website for me and my organization",
+ "repo": "https://github.com/Kicrops/website",
+ "owner": {
+ "username": "Kicrops",
+ "email": "kicropsdevelopment@gmail.com"
+ },
+ "record": {
+ "CNAME": "d3aeb170-58da-460e-aad2-29a40a7a0d80.id.repl.co"
+ }
+}
diff --git a/domains/kilic.json b/domains/kilic.json
new file mode 100644
index 000000000..c7ef9a8b8
--- /dev/null
+++ b/domains/kilic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kiliczsh",
+ "email": "muhammeddkilicc@gmail.com"
+ },
+ "description": "personal site",
+ "repo": "https://github.com/kiliczsh/kiliczsh.github.io",
+ "record": {
+ "CNAME": "kiliczsh.github.io"
+ }
+}
diff --git a/domains/kiyora.json b/domains/kiyora.json
new file mode 100644
index 000000000..96b5a39bb
--- /dev/null
+++ b/domains/kiyora.json
@@ -0,0 +1,12 @@
+{
+ "description": "using for personal projects",
+ "repo": "https://github.com/ItsMyEyes",
+ "owner": {
+ "username": "ItsMyEyes",
+ "email": "dev@sipaling.top"
+ },
+ "record": {
+ "CNAME": "itsmyeyes.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/kkdesigns.json b/domains/kkdesigns.json
index dbe5591bd..4c561b711 100644
--- a/domains/kkdesigns.json
+++ b/domains/kkdesigns.json
@@ -1,11 +1,11 @@
{
- "description": "All of K.K Designs Fitbit® applications",
- "repo": "https://github.com/KK-Designs/K.K-Designs-Website",
- "owner": {
- "username": "KK-Designs",
- "email": "kkart2007@gmail.com"
- },
- "record": {
- "URL": "https://kk-designs.github.io/K.K-Designs-Website/home/home.html"
- }
+ "description": "All of K.K Designs Fitbit® applications",
+ "repo": "https://github.com/KK-Designs/K.K-Designs-Website",
+ "owner": {
+ "username": "KK-Designs",
+ "email": "kkart2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "kk-designs.github.io"
+ }
}
diff --git a/domains/klouqzz.json b/domains/klouqzz.json
new file mode 100644
index 000000000..c4df0f69e
--- /dev/null
+++ b/domains/klouqzz.json
@@ -0,0 +1,11 @@
+{
+ "description": "Klouqz Website's",
+ "repo": "https://github.com/klouqzz/klouqzz.github.io",
+ "owner": {
+ "username": "klouqzz",
+ "email": "klouqz@gmail.com"
+ },
+ "record": {
+ "CNAME": "klouqzz.github.io"
+ }
+}
diff --git a/domains/korauo.json b/domains/korauo.json
new file mode 100644
index 000000000..90b615987
--- /dev/null
+++ b/domains/korauo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "korauo",
+ "email": "korauo69@gmail.com",
+ "twitter": "korauo",
+ "discord": "korauo#1423"
+ },
+ "record": {
+ "CNAME": "korauo.github.io"
+ }
+}
diff --git a/domains/koton-bads.json b/domains/koton-bads.json
new file mode 100644
index 000000000..6c6f80cca
--- /dev/null
+++ b/domains/koton-bads.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Site",
+ "owner": {
+ "username": "KotonBads",
+ "email": "kotonbads@duck.com"
+ },
+ "record" : {
+ "CNAME": "kotonbads.github.io"
+ }
+}
diff --git a/domains/kr-tukimi.json b/domains/kr-tukimi.json
new file mode 100644
index 000000000..f217fd6d1
--- /dev/null
+++ b/domains/kr-tukimi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "kr-tukimi",
+ "email": "",
+ "twitter": "kr_tukimi"
+ },
+ "record": {
+ "URL": "https://kr-tukimi.com"
+ }
+}
\ No newline at end of file
diff --git a/domains/krix.json b/domains/krix.json
new file mode 100644
index 000000000..6da0c8a17
--- /dev/null
+++ b/domains/krix.json
@@ -0,0 +1,15 @@
+{
+ "description": "Krix's portfolio",
+ "owner": {
+ "username": "Krix12",
+ "email": "kristjan.kocevar89@gmail.com"
+ },
+ "record": {
+ "A": ["35.186.245.55"],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/kshitij.json b/domains/kshitij.json
new file mode 100644
index 000000000..132e479af
--- /dev/null
+++ b/domains/kshitij.json
@@ -0,0 +1,11 @@
+{
+ "description": "Kshitij Subedi",
+ "owner": {
+ "username": "Kshitij Subedi",
+ "email": "2subedikshitij@gmail.com"
+ },
+ "record": {
+ "CNAME": "kshitijsubedi.com.np"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/kylemartin.json b/domains/kylemartin.json
new file mode 100644
index 000000000..b0d003cd7
--- /dev/null
+++ b/domains/kylemartin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Kyle Martin",
+ "repo": "https://github.com/js-kyle/js-kyle.github.io",
+ "owner": {
+ "username": "js-kyle",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "js-kyle.github.io"
+ }
+}
diff --git a/domains/kyoki.json b/domains/kyoki.json
new file mode 100644
index 000000000..d9aa4e14d
--- /dev/null
+++ b/domains/kyoki.json
@@ -0,0 +1,10 @@
+{
+ "owner":{
+ "username": "kyokiii",
+ "discord": "kyoki#0162",
+ "email": "kyokisunn@gmail.com"
+ },
+ "record": {
+ "CNAME": "d7dc33e6-0a6b-49ab-bad4-4b006a476a02.id.repl.co"
+ }
+}
diff --git a/domains/lambda.json b/domains/lambda.json
new file mode 100644
index 000000000..1e8d02e3e
--- /dev/null
+++ b/domains/lambda.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Site for Stadial",
+ "repo": "https://github.com/stadial/stadial.github.io",
+ "owner": {
+ "username": "stadial",
+ "email": "kfulain.uphrj@aleeas.com"
+ },
+ "record": {
+ "CNAME": "stadial.github.io"
+ }
+}
diff --git a/domains/latealways.json b/domains/latealways.json
new file mode 100644
index 000000000..abe722665
--- /dev/null
+++ b/domains/latealways.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sky-FoxGAMING",
+ "email": "jparedesmoure@awakenclient.com"
+ },
+ "record": {
+ "CNAME": "Sky-FoxGAMING.github.io"
+ }
+}
diff --git a/domains/laufey.json b/domains/laufey.json
new file mode 100644
index 000000000..f86d723a1
--- /dev/null
+++ b/domains/laufey.json
@@ -0,0 +1,12 @@
+{
+ "description": "Configuring a .is-a.dev domain for my friend, laufey.",
+ "repo": "https://github.com/idlidev/laufey-web",
+ "owner": {
+ "username": "idlidev",
+ "email": "idliyout@gmail.com",
+ "twitter": ""
+ },
+ "record": {
+ "CNAME": "idlidev.github.io"
+ }
+}
diff --git a/domains/lazyllama.json b/domains/lazyllama.json
index 9db79af66..9ef0c5496 100644
--- a/domains/lazyllama.json
+++ b/domains/lazyllama.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "hapyllama",
+ "username": "lazylllama",
"email": "kws102522@gmail.com"
},
"record": {
- "CNAME": "hapyllama.github.io"
+ "CNAME": "lazylllama.github.io"
}
}
diff --git a/domains/lellis.json b/domains/lellis.json
index 3a654d56f..669e1d59b 100644
--- a/domains/lellis.json
+++ b/domains/lellis.json
@@ -1,11 +1,11 @@
{
"description": "a cool subdomain",
- "repo": "https://github.com/LellisV2",
+ "repo": "https://github.com/LellisV2/register",
"owner": {
"username": "LellisV2",
- "email": "me@lellis.xyz"
+ "email": "cloud@lellis.tech"
},
"record": {
- "CNAME": "dev.lellis.ga"
+ "A": ["150.230.126.219"]
}
}
diff --git a/domains/lenicyl.json b/domains/lenicyl.json
new file mode 100644
index 000000000..c56736f56
--- /dev/null
+++ b/domains/lenicyl.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Lenicyl",
+ "discord": "HUT#5940",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "lenicyl.github.io"
+ }
+}
diff --git a/domains/leo.json b/domains/leo.json
new file mode 100644
index 000000000..24046e7b9
--- /dev/null
+++ b/domains/leo.json
@@ -0,0 +1,12 @@
+{
+ "description": "Leonard's Personal Website",
+ "repo": "https://github.com/LeonardSSH",
+ "owner": {
+ "username": "LeonardSSH",
+ "email": "leonardssh22@gmail.com",
+ "twitter": "leonardssh22"
+ },
+ "record": {
+ "URL": "https://leonard.sh"
+ }
+}
diff --git a/domains/li.whine.json b/domains/li.whine.json
new file mode 100644
index 000000000..603257aef
--- /dev/null
+++ b/domains/li.whine.json
@@ -0,0 +1,11 @@
+{
+ "description": "whi_ne's redirects",
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "record": {
+ "CNAME": "a.redirect.pizza"
+ }
+}
\ No newline at end of file
diff --git a/domains/lilac.json b/domains/lilac.json
new file mode 100644
index 000000000..76ce024cf
--- /dev/null
+++ b/domains/lilac.json
@@ -0,0 +1,12 @@
+{
+ "description": "ima runnit up til my feet stop, pls god",
+ "repo": "https://github.com/capoxxo/capoxxo.github.io",
+ "owner": {
+ "username": "capoxxo",
+ "email": "cloudberry1337@gmail.com",
+ "twitter": "lilachvh"
+ },
+ "record": {
+ "CNAME": "capoxxo.github.io"
+ }
+}
diff --git a/domains/lingle.json b/domains/lingle.json
new file mode 100644
index 000000000..05c997414
--- /dev/null
+++ b/domains/lingle.json
@@ -0,0 +1,12 @@
+{
+ "description": "LingleDev's developer site",
+ "repo": "https://github.com/LingleDev/lingledev.github.io",
+ "owner": {
+ "username": "LingleDev",
+ "email": "gideon.lingle2023@gmail.com",
+ "twitter": "LingleDev"
+ },
+ "record": {
+ "CNAME": "lingledev.github.io"
+ }
+}
diff --git a/domains/linkme.noma.json b/domains/linkme.noma.json
new file mode 100644
index 000000000..4c8cdad70
--- /dev/null
+++ b/domains/linkme.noma.json
@@ -0,0 +1,10 @@
+{
+ "description": "A website for my bit.ly clone LinkMe",
+ "owner": {
+ "username": "Noma4321",
+ "email": "noma4321business@gmail.com"
+ },
+ "record": {
+ "CNAME": "d6bddc39-8514-4494-9b17-d80409cfcbee.id.repl.co"
+ }
+}
diff --git a/domains/links.aditya.json b/domains/links.aditya.json
new file mode 100644
index 000000000..9e4866a91
--- /dev/null
+++ b/domains/links.aditya.json
@@ -0,0 +1,12 @@
+{
+ "description": "A Subdomain For My Links Redirection!!",
+ "repo": "https://github.com/icancodebeauty/links",
+ "owner": {
+ "username": "icancodebeauty",
+ "email": "ishqaddy@gmail.com",
+ "twitter": "CodeWithAadi"
+ },
+ "record": {
+ "CNAME": "a.redirect.pizza"
+ }
+}
diff --git a/domains/local.jj.json b/domains/local.jj.json
new file mode 100644
index 000000000..4f4a6b048
--- /dev/null
+++ b/domains/local.jj.json
@@ -0,0 +1,10 @@
+{
+ "description": "my playit.gg ip",
+ "owner": {
+ "username": "TheBotlyNoob",
+ "email": "jj@jj.is-a.dev"
+ },
+ "record": {
+ "A": ["147.185.221.193"]
+ }
+}
diff --git a/domains/localhost.sx9.json b/domains/localhost.sx9.json
new file mode 100644
index 000000000..830d05962
--- /dev/null
+++ b/domains/localhost.sx9.json
@@ -0,0 +1,14 @@
+{
+ "description": "SX's Web Server",
+ "repo": "https://sx-9.github.io",
+ "owner": {
+ "username": "SX-9",
+ "twitter": "SX_Discord",
+ "discord": "SX-Spy-Agent#1377",
+ "email": "sx-91@outlook.com",
+ "note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me"
+ },
+ "record": {
+ "A": ["176.31.203.25"]
+ }
+}
diff --git a/domains/lthon09.json b/domains/lthon09.json
index 0ddea91ed..1c5a62251 100644
--- a/domains/lthon09.json
+++ b/domains/lthon09.json
@@ -7,6 +7,6 @@
"twitter": "lthon09"
},
"record": {
- "CNAME": "a2e619e5-4084-4893-b593-76c3198a277f.repl.co"
+ "A": ["76.223.55.44"]
}
}
diff --git a/domains/luna.json b/domains/luna.json
index 6986c2bfc..9c2f665b5 100644
--- a/domains/luna.json
+++ b/domains/luna.json
@@ -1,10 +1,11 @@
{
- "description": "Luna sia's personal website",
+ "description": "Luna Seemann's personal website",
+ "repo": "https://github.com/Luna-devv/luna-site",
"owner": {
"username": "Luna-devv",
- "email": "luna@xyna.space"
+ "email": "luna@waya.one"
},
"record": {
- "A": ["75.2.60.5"]
+ "A": ["51.161.24.80"]
}
}
diff --git a/domains/lunah.json b/domains/lunah.json
new file mode 100644
index 000000000..065644bc6
--- /dev/null
+++ b/domains/lunah.json
@@ -0,0 +1,11 @@
+{
+ "description": "VPS hosted domain",
+ "repo": "https://github.com/piotr25691",
+ "owner": {
+ "username": "piotr25691",
+ "email": "lunah@lunahdev.ml"
+ },
+ "record": {
+ "A": ["5.161.46.209"]
+ }
+}
diff --git a/domains/lunax0390.json b/domains/lunax0390.json
new file mode 100644
index 000000000..12ef571a8
--- /dev/null
+++ b/domains/lunax0390.json
@@ -0,0 +1,11 @@
+{
+ "description": "Nobio Yep",
+ "repo": "https://github.com/lunax0390/lunax0390.github.io",
+ "owner": {
+ "username": "lunax0390",
+ "email": "moonsec99@gmail.com"
+ },
+ "record": {
+ "CNAME": "lunax0390.github.io"
+ }
+}
diff --git a/domains/lytwest.json b/domains/lytwest.json
new file mode 100644
index 000000000..e53a9e9aa
--- /dev/null
+++ b/domains/lytwest.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Website uwu :3",
+ "repo": "https://github.com/Lytwest/lytwest.github.io",
+ "owner": {
+ "username": "Lytwest",
+ "email": "lytwest@gmail.com"
+ },
+ "record": {
+ "CNAME": "lytwest.github.io"
+ }
+}
diff --git a/domains/maddy.json b/domains/maddy.json
new file mode 100644
index 000000000..39386af2d
--- /dev/null
+++ b/domains/maddy.json
@@ -0,0 +1,12 @@
+{
+ "description": "Maddy Rocks :)",
+ "repo": "https://github.com/madhav-madhusoodanan/madhav-madhusoodanan.github.io",
+ "owner": {
+ "username": "madhav-madhusoodanan",
+ "email": "f20200049@pilani.bits-pilani.ac.in"
+ },
+ "record": {
+ "CNAME": "madhav-madhusoodanan.github.io"
+ }
+}
+
\ No newline at end of file
diff --git a/domains/magniquick.json b/domains/magniquick.json
new file mode 100644
index 000000000..e7e8892ba
--- /dev/null
+++ b/domains/magniquick.json
@@ -0,0 +1,22 @@
+{
+ "description": "magniquick's personal site",
+ "repo": "https://github.com/Magniquick/magniquick.github.io",
+ "owner": {
+ "username": "magniquick",
+ "email": "",
+ "discord": "Magniquick#5003"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mai.json b/domains/mai.json
new file mode 100644
index 000000000..31fe3e938
--- /dev/null
+++ b/domains/mai.json
@@ -0,0 +1,10 @@
+{
+ "description": "Mai's personal developer website",
+ "owner": {
+ "username": "Mai1ii",
+ "email": "mail@apexure.cf"
+ },
+ "record": {
+ "CNAME": "mai1ii.github.io"
+ }
+}
diff --git a/domains/mail-noma.json b/domains/mail-noma.json
new file mode 100644
index 000000000..3d35217dd
--- /dev/null
+++ b/domains/mail-noma.json
@@ -0,0 +1,14 @@
+{
+ "description": "A Subdomain For Mails!!",
+ "owner": {
+ "username": "Noma4321",
+ "email": "Noma4321business@gmail.com"
+ },
+ "record": {
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.aditya.json b/domains/mail.aditya.json
new file mode 100644
index 000000000..a367c686c
--- /dev/null
+++ b/domains/mail.aditya.json
@@ -0,0 +1,22 @@
+{
+ "description": "A Subdomain For Mails!!",
+ "repo": "https://github.com/icancodebeauty/mail",
+ "owner": {
+ "username": "icancodebeauty",
+ "email": "ishqaddy@gmail.com",
+ "twitter": "CodeWithAadi"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.arman.json b/domains/mail.arman.json
new file mode 100644
index 000000000..3c4a641a5
--- /dev/null
+++ b/domains/mail.arman.json
@@ -0,0 +1,21 @@
+{
+"owner": {
+"username": "arman",
+"github": "ItzArman09",
+"email": "contact@mail.arman.is-a.dev"
+},
+"repo": "https://github.com/ItzArman09/mail.git",
+"record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.badboy.json b/domains/mail.badboy.json
new file mode 100644
index 000000000..23d2d5fd6
--- /dev/null
+++ b/domains/mail.badboy.json
@@ -0,0 +1,23 @@
+{
+ "repo": "https://github.com/Bad-Boy-Codes/contact",
+ "description": "My email forwarder",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "sonupanda078@gmail.com",
+ "discord": "Bad Boy Plays#9608",
+ "note": "My Discord ID is 445073800850046977."
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.boolean44.json b/domains/mail.boolean44.json
new file mode 100644
index 000000000..1afd08f1c
--- /dev/null
+++ b/domains/mail.boolean44.json
@@ -0,0 +1,11 @@
+
+{
+ "owner": {
+ "username": "boolean44-repos",
+ "email": "serenitypalmer10@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.notaperson535.json b/domains/mail.notaperson535.json
new file mode 100644
index 000000000..1b17786bf
--- /dev/null
+++ b/domains/mail.notaperson535.json
@@ -0,0 +1,11 @@
+{
+ "description": "My email forwarder",
+ "owner": {
+ "username": "notAperson535",
+ "email": "notAperson939@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=notaperson939@gmail.com"
+ }
+}
diff --git a/domains/mail.rika.json b/domains/mail.rika.json
new file mode 100644
index 000000000..55e71de16
--- /dev/null
+++ b/domains/mail.rika.json
@@ -0,0 +1,21 @@
+{
+ "description": "Domain for gmail",
+ "repo": "https://github.com/NicolDev/mail",
+ "owner": {
+ "username": "NicolDev",
+ "email": "cainiao1509@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.whine.json b/domains/mail.whine.json
new file mode 100644
index 000000000..a8f050e40
--- /dev/null
+++ b/domains/mail.whine.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "description": "whi_ne's mail subdomain",
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/malbouy.json b/domains/malbouy.json
new file mode 100644
index 000000000..97da1c598
--- /dev/null
+++ b/domains/malbouy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Coming soon",
+ "repo": "https://github.com/malbouy/malbouy.github.io",
+ "owner": {
+ "username": "malbouy",
+ "email": "malbouy@techie.com"
+ },
+ "record": {
+ "CNAME": "malbouy.github.io"
+ }
+}
diff --git a/domains/manash.json b/domains/manash.json
new file mode 100644
index 000000000..bd5c50311
--- /dev/null
+++ b/domains/manash.json
@@ -0,0 +1,11 @@
+{
+ "description": "Manash Sonowal - DEV",
+ "repo": "https://github.com/msonowal",
+ "owner": {
+ "username": "msonowal",
+ "email": "manash149@gmail.com"
+ },
+ "record": {
+ "CNAME": "www.claritytech.io"
+ }
+}
diff --git a/domains/maninder.json b/domains/maninder.json
new file mode 100644
index 000000000..f62a88fe1
--- /dev/null
+++ b/domains/maninder.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Github Page!",
+ "repo": "https://github.com/github4maninder",
+ "owner": {
+ "username": "github4maninder",
+ "email": "iamgoat@tutanota.com"
+ },
+ "record": {
+ "CNAME": "maninder.github.io"
+ }
+}
diff --git a/domains/manish.json b/domains/manish.json
new file mode 100644
index 000000000..11b607bb2
--- /dev/null
+++ b/domains/manish.json
@@ -0,0 +1,11 @@
+{
+ "description": "Manish's Personal Website",
+ "repo": "https://github.com/manish7479dlp/manish7479dlp.github.io",
+ "owner": {
+ "username": "manish7479dlp",
+ "email": "manish7479dlp@gmail.com"
+ },
+ "record": {
+ "CNAME": "manish7479dlp.github.io"
+ }
+}
diff --git a/domains/manjushri.json b/domains/manjushri.json
new file mode 100644
index 000000000..8084bbe2d
--- /dev/null
+++ b/domains/manjushri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "manjushri",
+ "email": "btinformativemessenger@gmail.com",
+ "telegram": "dreynakchung"
+ },
+ "record": {
+ "URL": "https://www.manjushri.dev"
+ }
+}
diff --git a/domains/marcus.json b/domains/marcus.json
index cbc3efd0a..851a898ec 100644
--- a/domains/marcus.json
+++ b/domains/marcus.json
@@ -1,9 +1,9 @@
{
- "description": "A personal website",
+ "description": "A portfolio website for HeroGamers (Marcus).",
"repo": "https://github.com/HeroGamers/HeroGamers",
"owner": {
"username": "HeroGamers",
- "email": "hero@herogamers.xyz",
+ "email": "webmaster@herogamers.dev",
"twitter": "ItsHeroGamers"
},
"record": {
diff --git a/domains/maskduck.json b/domains/maskduck.json
new file mode 100644
index 000000000..b080ca967
--- /dev/null
+++ b/domains/maskduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "MaskDuck's personal website!",
+ "repo": "https://github.com/maskducks/maskducks.github.io",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "CNAME": "maskducks.github.io"
+ }
+}
diff --git a/domains/massick.json b/domains/massick.json
new file mode 100644
index 000000000..a3d7c1c44
--- /dev/null
+++ b/domains/massick.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "M4ss1ck",
+ "email": "4ndyraul@gmail.com",
+ "twitter": "M4ss1ck"
+ },
+ "repo": "https://github.com/M4ss1ck/massick-portfolio",
+ "record": {
+ "URL": "https://massick.gatsbyjs.io/"
+ }
+}
diff --git a/domains/mathiassm.json b/domains/mathiassm.json
new file mode 100644
index 000000000..326d932a4
--- /dev/null
+++ b/domains/mathiassm.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "mathiassm",
+ "email": "",
+ "twitter": "mathiassm"
+ },
+ "description": "MathiasSM's Personal Site",
+ "repo": "https://github.com/MathiasSM/mathiassm.github.io",
+ "record": {
+ "URL": "https://mathiassm.dev"
+ }
+}
diff --git a/domains/mathiscool.json b/domains/mathiscool.json
new file mode 100644
index 000000000..c90223efc
--- /dev/null
+++ b/domains/mathiscool.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mathiscool personal website",
+ "repo": "https://testbot-github.github.io/Mathiscool/",
+ "owner": {
+ "username": "testbot-github",
+ "email": "testbot-github@gmail.com"
+ },
+ "record": {
+ "CNAME": "Mathiscool.github.io"
+ }
+}
diff --git a/domains/mattdavison.json b/domains/mattdavison.json
new file mode 100644
index 000000000..714ac3760
--- /dev/null
+++ b/domains/mattdavison.json
@@ -0,0 +1,13 @@
+{
+ "description": "A domain for launching my person portfolio on!",
+ "repo": "https://github.com/mattjdavison",
+ "owner": {
+ "username": "mattjdavison",
+ "email": "matt@spectrebot.net"
+ },
+ "record": {
+ "A": [
+ "134.209.176.85"
+ ]
+ }
+}
diff --git a/domains/mattw.json b/domains/mattw.json
new file mode 100644
index 000000000..fa446b79b
--- /dev/null
+++ b/domains/mattw.json
@@ -0,0 +1,13 @@
+{
+ "description": "Matt is a Developer!",
+ "repo": "https://github.com/Tweak4141",
+ "owner": {
+ "username": "tweak4141",
+ "email": "ynan243@gmail.com"
+ },
+ "record": {
+ "A": ["147.135.109.83"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/maxt.json b/domains/maxt.json
new file mode 100644
index 000000000..ed3b1c60e
--- /dev/null
+++ b/domains/maxt.json
@@ -0,0 +1,11 @@
+{
+ "description": "Max's Portfolio/Cool Website",
+ "repo": "https://github.com/MaxTCodes/maxt-is-a.dev",
+ "owner": {
+ "username": "MaxTCodes",
+ "email": "dev@maxt-is-a.dev"
+ },
+ "record": {
+ "URL": "https://maxt-is-a.dev/"
+ }
+}
diff --git a/domains/mazengohar.json b/domains/mazengohar.json
new file mode 100644
index 000000000..79bee6893
--- /dev/null
+++ b/domains/mazengohar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mazen Gohar - DEV",
+ "repo": "https://github.com/MazenGohar",
+ "owner": {
+ "username": "MazenGohar",
+ "email": "mizoiology@gmail.com"
+ },
+ "record": {
+ "CNAME": "mazen-gohar-dev.onrender.com"
+ }
+}
diff --git a/domains/mc.mousemoosz.json b/domains/mc.mousemoosz.json
new file mode 100644
index 000000000..9aa2faa62
--- /dev/null
+++ b/domains/mc.mousemoosz.json
@@ -0,0 +1,10 @@
+{
+ "description": "For my Minecraft server",
+ "owner": {
+ "username": "MouseMoosz",
+ "email": "mousemoosz@protonmail.com"
+ },
+ "record": {
+ "CNAME": "ge.terohost.com"
+ }
+}
diff --git a/domains/mcz.json b/domains/mcz.json
new file mode 100644
index 000000000..98e604217
--- /dev/null
+++ b/domains/mcz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mczgodpiggy",
+ "email": "dragonhuntergamingweb@gmail.com"
+ },
+ "record": {
+ "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co"
+ }
+}
diff --git a/domains/mega.json b/domains/mega.json
new file mode 100644
index 000000000..a31fbdc22
--- /dev/null
+++ b/domains/mega.json
@@ -0,0 +1,12 @@
+{
+ "description": "My Personal website and possibly an API",
+ "repo": "https://github.com/MegaDevGuy",
+ "owner": {
+ "username": "MegaDevGuy",
+ "email": "",
+ "twitter":"@_Mega_Dev_"
+ },
+ "record": {
+ "CNAME": "flask-production-b336.up.railway.app"
+ }
+}
diff --git a/domains/mehf.json b/domains/mehf.json
deleted file mode 100644
index 232d52c90..000000000
--- a/domains/mehf.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My site for socials and more",
- "repo": "https://github.com/dzired/dzired.github.io",
- "owner": {
- "username": "dzired",
- "email": "mehf@protonmail.com"
- },
- "record": {
- "CNAME": "dzired.github.io"
- }
-}
diff --git a/domains/micah.json b/domains/micah.json
new file mode 100644
index 000000000..9efad83fc
--- /dev/null
+++ b/domains/micah.json
@@ -0,0 +1,11 @@
+{
+ "description": "Micah Lindley is a web developer.",
+ "repo": "https://github.com/micahlt",
+ "owner": {
+ "username": "micahlt",
+ "email": "hi@micahlindley.com"
+ },
+ "record": {
+ "URL": "https://micahlindley.com"
+ }
+}
diff --git a/domains/michaelbelete.json b/domains/michaelbelete.json
new file mode 100644
index 000000000..05156f862
--- /dev/null
+++ b/domains/michaelbelete.json
@@ -0,0 +1,11 @@
+{
+ "description": "michael belete portfolio website",
+ "repo": "https://github.com/michaelbelete",
+ "owner": {
+ "username": "michaelbelete",
+ "email": "it.michael.belete@gmail.com"
+ },
+ "record": {
+ "URL": "https://michaelb.iceiy.com/"
+ }
+}
diff --git a/domains/mihai.json b/domains/mihai.json
new file mode 100644
index 000000000..0aac6f95d
--- /dev/null
+++ b/domains/mihai.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/8xu/web",
+ "owner": {
+ "username": "8xu",
+ "email": "mihai@8xu.tech",
+ "twitter": "reallymihai"
+ },
+ "record": {
+ "CNAME": "8xu.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/mikko.json b/domains/mikko.json
new file mode 100644
index 000000000..64a7c0e2f
--- /dev/null
+++ b/domains/mikko.json
@@ -0,0 +1,12 @@
+{
+ "description": "Mikko's Developer Page",
+ "repo": "https://github.com/mikkortx/cv",
+ "owner": {
+ "username": "mikkortx",
+ "email": "mikkoahh@gmail.com",
+ "twitter": "mikkortx"
+ },
+ "record": {
+ "CNAME": "mikkortx.github.io"
+ }
+}
diff --git a/domains/mimic.json b/domains/mimic.json
new file mode 100644
index 000000000..59a6e7c93
--- /dev/null
+++ b/domains/mimic.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mimic Services",
+ "repo": "https://github.com/mimicdotga",
+ "owner": {
+ "username": "mimicdotga",
+ "email": "hello@mimic.ga"
+ },
+ "record": {
+ "CNAME": "mimicdotga.duckdns.org"
+ }
+}
diff --git a/domains/mirror.json b/domains/mirror.json
new file mode 100644
index 000000000..bf0222655
--- /dev/null
+++ b/domains/mirror.json
@@ -0,0 +1,11 @@
+{
+ "description": "A simple personal website",
+ "repo": "https://github.com/justamirror",
+ "owner": {
+ "username": "justamirror",
+ "email": "Eren0078@outlook.com"
+ },
+ "record": {
+ "CNAME": "1eeecca8-a190-4548-9fc9-f936dcdda410.id.repl.co"
+ }
+}
diff --git a/domains/mohannadk28.json b/domains/mohannadk28.json
new file mode 100644
index 000000000..6332056ef
--- /dev/null
+++ b/domains/mohannadk28.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mohannadk28's Temporary Page",
+ "repo": "https://github.com/Mohannadk28/Mohannadk28.github.io",
+ "owner": {
+ "username": "Mohannadk28",
+ "email": "mohannadk28@protonmail.com"
+ },
+ "record": {
+ "CNAME": "mohannadk28.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/mousemoosz.json b/domains/mousemoosz.json
new file mode 100644
index 000000000..e18c837ff
--- /dev/null
+++ b/domains/mousemoosz.json
@@ -0,0 +1,20 @@
+{
+ "description": "For my website",
+ "owner": {
+ "username": "MouseMoosz",
+ "email": "mousemoosz@protonmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mrcorpz.json b/domains/mrcorpz.json
new file mode 100644
index 000000000..18696553f
--- /dev/null
+++ b/domains/mrcorpz.json
@@ -0,0 +1,12 @@
+{
+ "description": "Mrcorpz's Website",
+ "repo": "https://github.com/mrcorpz/mrcorpz.github.io",
+ "owner": {
+ "username": "mrcorpz",
+ "email": "mrcorpzpro@gmail.com",
+ "twitter": "mrcorpz"
+ },
+ "record": {
+ "CNAME": "mrcorpz.github.io"
+ }
+}
diff --git a/domains/mricecream.json b/domains/mricecream.json
new file mode 100644
index 000000000..1ff6049ac
--- /dev/null
+++ b/domains/mricecream.json
@@ -0,0 +1,12 @@
+{
+ "description": "Mr. Icecream's Website",
+ "repo": "https://github.com/mr1cecream/mr1cecream.github.io",
+ "owner": {
+ "username": "mr1cecream",
+ "email": "guy@ochakov.com",
+ "twitter": "@Mr__Icecream"
+ },
+ "record": {
+ "CNAME": "mr1cecream.github.io"
+ }
+}
diff --git a/domains/mrj.json b/domains/mrj.json
new file mode 100644
index 000000000..2bcdab054
--- /dev/null
+++ b/domains/mrj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MRJ Badshah",
+ "email": "illegalhacker2.0@gmail.com"
+ },
+ "record": {
+ "CNAME": "glitch.edgeapp.net"
+ }
+}
diff --git a/domains/mrshoe.json b/domains/mrshoe.json
new file mode 100644
index 000000000..6562e9777
--- /dev/null
+++ b/domains/mrshoe.json
@@ -0,0 +1,11 @@
+{
+ "description": "MrShoe Development website",
+ "repo": "https://github.com/MrShoe-Development/Website",
+ "owner": {
+ "username": "mrshoeshoe66",
+ "email": "mrshoeshoe66@gmail.com"
+ },
+ "record": {
+ "URL": "https://mrshoe.dev"
+ }
+}
diff --git a/domains/music.json b/domains/music.json
new file mode 100644
index 000000000..2dcd3ba8d
--- /dev/null
+++ b/domains/music.json
@@ -0,0 +1,11 @@
+{
+ "description": "my personal website",
+ "repo": "https://github.com/leecheeyong/me",
+ "owner": {
+ "username": "leecheeyong",
+ "email": "tojoeleeofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "088a7314-b3d4-4927-92ca-e669833b0aed.id.repl.co"
+ }
+}
diff --git a/domains/naman.json b/domains/naman.json
new file mode 100644
index 000000000..d2f85e209
--- /dev/null
+++ b/domains/naman.json
@@ -0,0 +1,11 @@
+{
+ "description": "Naman - Portfolio",
+ "repo": "https://github.com/Naman-Gururani/Naman-Gururani.github.io",
+ "owner": {
+ "username": "Naman-Gururani",
+ "email": "gururaninaman@gmail.com"
+ },
+ "record": {
+ "CNAME": "Naman-Gururani.github.io"
+ }
+}
diff --git a/domains/nat.json b/domains/nat.json
new file mode 100644
index 000000000..55aa10d59
--- /dev/null
+++ b/domains/nat.json
@@ -0,0 +1,10 @@
+{
+ "owner":{
+ "username": "Natasquare",
+ "discord": "Natasquare#8297",
+ "email": "natasquarelol@gmail.com"
+ },
+ "record": {
+ "CNAME": "d42474b9-07e0-4f87-94ba-d47a4477dde5.id.repl.co"
+ }
+}
diff --git a/domains/neeyl.json b/domains/neeyl.json
new file mode 100644
index 000000000..a9e8a9210
--- /dev/null
+++ b/domains/neeyl.json
@@ -0,0 +1,12 @@
+{
+ "description": "Subhramit's experimental playfield",
+ "repo": "https://github.com/subhramit/subhramit.github.io",
+ "owner": {
+ "username": "subhramit",
+ "email": "subhramit.bb@live.in"
+ },
+ "record": {
+ "CNAME": "subhramit.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/neko7sora.json b/domains/neko7sora.json
new file mode 100644
index 000000000..a06a29f14
--- /dev/null
+++ b/domains/neko7sora.json
@@ -0,0 +1,13 @@
+{
+ "description": "Neko7sora personal website",
+ "repo": "https://github.com/Neko7sora/Neko7sora.github.io",
+ "owner": {
+ "username": "Neko7sora",
+ "email": "",
+ "twitter": "Neko7sora",
+ "keybase": "neko7sora"
+ },
+ "record": {
+ "CNAME": "neko7sora.github.io"
+ }
+}
diff --git a/domains/neppkun.json b/domains/neppkun.json
deleted file mode 100644
index b3582c30a..000000000
--- a/domains/neppkun.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "The site where I keep stuff, yes",
- "repo": "https://github.com/Neppkun/neppkun.github.io",
- "owner": {
- "username": "Neppkun",
- "email": "n3ppkun@protonmail.com",
- "twitter": "Neppkun"
- },
- "record": {
- "CNAME": "neppkun.github.io"
- }
-}
diff --git a/domains/neven.json b/domains/neven.json
new file mode 100644
index 000000000..59c4b67a8
--- /dev/null
+++ b/domains/neven.json
@@ -0,0 +1,12 @@
+{
+ "repo": "https://github.com/nevenxr/nevenxr.github.io",
+ "description": "Personal Website",
+ "owner": {
+ "username": "nevenxr",
+ "email": "",
+ "discord": "Neven#3985"
+ },
+ "record": {
+ "CNAME": "nevenxr.github.io"
+ }
+}
diff --git a/domains/nicesapien.json b/domains/nicesapien.json
new file mode 100644
index 000000000..c36ef1f18
--- /dev/null
+++ b/domains/nicesapien.json
@@ -0,0 +1,11 @@
+{
+"description": "NiceSapien's portfolio website",
+ "owner": {
+ "username": "NiceSapien",
+ "email": "nicesapien@gmail.com",
+ "discord": "NiceSapien#2356"
+ },
+ "record": {
+ "CNAME": "nicesapien.gatsbyjs.io"
+ }
+}
diff --git a/domains/nicholas.json b/domains/nicholas.json
new file mode 100644
index 000000000..2a334c8ed
--- /dev/null
+++ b/domains/nicholas.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "nicholasyoannou",
+ "email": "nicholas@nicholas.dev",
+ "discord": "janeberru#4594",
+ "note": "You can contact me by email or discord, really don't mind :)"
+ },
+ "description": "I'll probably put some project pages on nicholas.is-a.dev. ¯\\_(ツ)_/¯",
+ "record": {
+ "CNAME": "nicholas.dev"
+ }
+}
diff --git a/domains/nick.json b/domains/nick.json
new file mode 100644
index 000000000..b65ad8936
--- /dev/null
+++ b/domains/nick.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nimolas",
+ "email": "nick.o@microfnclan.com"
+ },
+ "record": {
+ "CNAME": "microfnclan.com"
+ }
+}
diff --git a/domains/nicol.json b/domains/nicol.json
new file mode 100644
index 000000000..53fafa4ae
--- /dev/null
+++ b/domains/nicol.json
@@ -0,0 +1,12 @@
+{
+ "description": "Lina website",
+ "repo": "https://github.com/Linadevv/Linadevv.github.io",
+ "owner": {
+ "username": "Linadevv",
+ "email": "any@email",
+ "twitter": "Lina"
+ },
+ "record": {
+ "CNAME": "Linadevv.github.io"
+ }
+}
diff --git a/domains/nine.json b/domains/nine.json
new file mode 100644
index 000000000..47a29e1aa
--- /dev/null
+++ b/domains/nine.json
@@ -0,0 +1,11 @@
+{
+ "description": "A passionate Back and Front-end Developer 🚀 Having An Experience Of Building Web And Discord Bots With JavaScript / HTML / CSS / Nodejs / Python And Some Other Cool Libraries And Frameworks.",
+ "repo": "https://github.com/ninelel",
+ "record": {
+ "CNAME": "c7fddd40-732e-4b19-8a94-80edfaf0c369.id.repl.co"
+ },
+ "owner": {
+ "username": "NineLEL",
+ "email": "notninelel@gmail.com"
+ }
+}
diff --git a/domains/ninjaasmoke.json b/domains/ninjaasmoke.json
new file mode 100644
index 000000000..11d683016
--- /dev/null
+++ b/domains/ninjaasmoke.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio | nithin",
+ "repo": "https://github.com/ninjaasmoke/ninjaasmoke.github.io",
+ "owner": {
+ "username": "ninjaasmoke",
+ "email": "nithins674@gmail.com"
+ },
+ "record": {
+ "CNAME": "ninjaasmoke.github.io"
+ }
+}
diff --git a/domains/nischay.json b/domains/nischay.json
new file mode 100644
index 000000000..70ecfa34d
--- /dev/null
+++ b/domains/nischay.json
@@ -0,0 +1,21 @@
+{
+ "description": "OGGY's Main Website",
+ "github": "https://github.com/nischay876",
+ "owner": {
+ "username": "nischay876",
+ "email": "nischay876@gmail.com",
+ "instagram": "nischay_02",
+ "snapchat": "nischay_02",
+ "discord": "OGGY#9889"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/node-appwrite.json b/domains/node-appwrite.json
new file mode 100644
index 000000000..b27b753f9
--- /dev/null
+++ b/domains/node-appwrite.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "appwrite",
+ "email": "mohamed.haneefa@agiratech.com"
+ },
+ "record": {
+ "URL": "https://www.appwrite-node.com/"
+ }
+}
diff --git a/domains/node.json b/domains/node.json
new file mode 100644
index 000000000..9ca25425f
--- /dev/null
+++ b/domains/node.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/node0505/node0505.github.io",
+ "owner": {
+ "username": "node0505",
+ "email": "",
+ "discord": "node#0505"
+ },
+ "record": {
+ "CNAME": "node0505.github.io"
+ }
+}
diff --git a/domains/noel.json b/domains/noel.json
new file mode 100644
index 000000000..03e789111
--- /dev/null
+++ b/domains/noel.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal profile page",
+ "repo": "https://github.com/noeljacob/noeljacob.github.io",
+ "owner": {
+ "username": "NoelJacob",
+ "email": "noeljacob91@gmail.com",
+ "twitter": "NoelJacob01",
+ "discord": "Noel Jacob#7465"
+ },
+ "record": {
+ "CNAME": "noeljacob.github.io"
+ }
+}
diff --git a/domains/noir.json b/domains/noir.json
new file mode 100644
index 000000000..bd7badc3c
--- /dev/null
+++ b/domains/noir.json
@@ -0,0 +1,12 @@
+{
+ "description": "noir's website",
+ "repo": "https://github.com/noirdevelopment/noirdevelopment.github.io",
+ "owner": {
+ "username": "noirdevelopment",
+ "email": "xyroemail1@gmail.com",
+ "twitter": "zPyrooooo"
+ },
+ "record": {
+ "CNAME": "noirdevelopment.github.io"
+ }
+}
diff --git a/domains/noma.json b/domains/noma.json
new file mode 100644
index 000000000..f96f4c501
--- /dev/null
+++ b/domains/noma.json
@@ -0,0 +1,11 @@
+{
+ "description": "noma4321's personal website",
+ "repo": "https://github.com/Noma4321/noma4321.github.io",
+ "owner": {
+ "username": "Noma4321",
+ "email": "noma4321business@gmail.com"
+ },
+ "record": {
+ "CNAME": "noma4321.github.io"
+ }
+}
diff --git a/domains/notaperson535.json b/domains/notaperson535.json
new file mode 100644
index 000000000..00dd1d1d2
--- /dev/null
+++ b/domains/notaperson535.json
@@ -0,0 +1,11 @@
+{
+ "description": "My about me website",
+ "repo": "https://github.com/notAperson535/notAperson535",
+ "owner": {
+ "username": "notAperson535",
+ "email": "notAperson939@gmail.com"
+ },
+ "record": {
+ "CNAME": "notAperson535.github.io"
+ }
+}
diff --git a/domains/nthn.json b/domains/nthn.json
new file mode 100644
index 000000000..622f63a89
--- /dev/null
+++ b/domains/nthn.json
@@ -0,0 +1,11 @@
+{
+ "description": "Storage Untuk Mengupload Semua Filemu",
+ "repo": "https://github.com/ZeroChanBot",
+ "owner": {
+ "username": "Nathan",
+ "email": "contact@webraku.xyz"
+ },
+ "record": {
+ "CNAME": "storage-production.up.railway.app"
+ }
+}
diff --git a/domains/nuxsh.json b/domains/nuxsh.json
new file mode 100644
index 000000000..2c0db117e
--- /dev/null
+++ b/domains/nuxsh.json
@@ -0,0 +1,12 @@
+{
+ "description": "hi, im nuxsh",
+ "repo": "https://github.com/nuxshed/nuxshed.github.io",
+ "owner": {
+ "username": "nuxshed",
+ "email": "nuxshed@gmail.com",
+ "discord": "nuxsh#9338"
+ },
+ "record": {
+ "CNAME": "nuxshed.github.io"
+ }
+}
diff --git a/domains/nziie.json b/domains/nziie.json
new file mode 100644
index 000000000..fe0efd19c
--- /dev/null
+++ b/domains/nziie.json
@@ -0,0 +1,11 @@
+{
+ "description": "Nziie's Developer Website",
+ "repo": "https://github.com/Nziie3/nziie3.github.io",
+ "owner": {
+ "username": "Nziie3",
+ "email": "exeyst@gmail.com"
+ },
+ "record": {
+ "CNAME": "nziie3.github.io"
+ }
+}
diff --git a/domains/omer.json b/domains/omer.json
new file mode 100644
index 000000000..a4850d21c
--- /dev/null
+++ b/domains/omer.json
@@ -0,0 +1,12 @@
+{
+ "description": "omercup's personal website",
+ "repo": "https://github.com/omercup/omercup.github.io",
+ "owner": {
+ "username": "omercup",
+ "email": "",
+ "twitter": "heisomercup"
+ },
+ "record": {
+ "CNAME": "omercup.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/omxpro.json b/domains/omxpro.json
new file mode 100644
index 000000000..7d0d3f16c
--- /dev/null
+++ b/domains/omxpro.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio - a simple portfolio website for Omxpro. It's in Beta Stages. Thanks for visiting my Portfolio! I hope to see you again.",
+ "repo": "https://github.com/omxpro/omxpro.github.io",
+ "owner": {
+ "username": "omxpro",
+ "email": "omsenjalia@gmail.com",
+ "twitter": "DaRealOmxpro"
+ },
+ "record": {
+ "CNAME": "omxpro.github.io"
+ }
+}
diff --git a/domains/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json
new file mode 100644
index 000000000..2135c3dd1
--- /dev/null
+++ b/domains/oneclick-macos-simple-kvm.notaperson535.json
@@ -0,0 +1,11 @@
+{
+ "description": "My macOS VM guide website",
+ "repo": "https://github.com/notAperson535/OneClick-macOS-Simple-KVM",
+ "owner": {
+ "username": "notAperson535",
+ "email": "notAperson939@gmail.com"
+ },
+ "record": {
+ "CNAME": "notAperson535.github.io"
+ }
+}
diff --git a/domains/onichan.json b/domains/onichan.json
new file mode 100644
index 000000000..189c2ecb3
--- /dev/null
+++ b/domains/onichan.json
@@ -0,0 +1,11 @@
+{
+ "description": "onichan's plugins. what can i say?",
+ "repo": "https://github.com/rbstsoul",
+ "owner": {
+ "username": "rbstsoul",
+ "email": "rbstsoul@gmail.com"
+ },
+ "record": {
+ "CNAME": "readthedocs.io"
+ }
+}
diff --git a/domains/oreki.json b/domains/oreki.json
index d64cbfddf..6b4b80f6f 100644
--- a/domains/oreki.json
+++ b/domains/oreki.json
@@ -6,8 +6,8 @@
"email": "oreki@oreki.gq"
},
"record": {
- "A": ["198.251.81.131"],
+ "A": ["181.214.41.250"],
"MX": ["ns1.crystalcloud.xyz", "ns2.crystalcloud.xyz"],
- "TXT": "v=spf1 a mx ip4:198.251.81.131 ~all"
+ "TXT": "v=spf1 a mx ip4:181.214.41.250 ~all"
}
}
diff --git a/domains/oreo.json b/domains/oreo.json
new file mode 100644
index 000000000..ae229d19c
--- /dev/null
+++ b/domains/oreo.json
@@ -0,0 +1,12 @@
+{
+ "description": "A website for YummyOreo",
+ "repo": "https://github.com/YummyOreo/yummyoreo.github.io",
+ "owner": {
+ "username": "YummyOreo",
+ "email": "bobgim20@gmail.com",
+ "twitter": "YummyOreo3"
+ },
+ "record": {
+ "CNAME": "yummyoreo.github.io"
+ }
+}
diff --git a/domains/osada.json b/domains/osada.json
new file mode 100644
index 000000000..d3823a364
--- /dev/null
+++ b/domains/osada.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "osadavc",
+ "email": "osadavidath@gmail.com",
+ "twitter": "osadavidath"
+ },
+ "record": {
+ "URL": "https://osada-is-a-dev.vercel.app"
+ }
+}
diff --git a/domains/pansy.json b/domains/pansy.json
new file mode 100644
index 000000000..927f76798
--- /dev/null
+++ b/domains/pansy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pansy27",
+ "email": "uselessshogun99@gmail.com"
+ },
+ "record": {
+ "CNAME": "pansy27.github.io"
+ }
+}
diff --git a/domains/paul.json b/domains/paul.json
new file mode 100644
index 000000000..4c0dc502d
--- /dev/null
+++ b/domains/paul.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Landing Page!",
+ "repo": "https://github.com/NotKaskus",
+ "owner": {
+ "username": "NotKaskus",
+ "email": "kaskus45@protonmail.com"
+ },
+ "record": {
+ "CNAME": "notkaskus.github.io"
+ }
+}
diff --git a/domains/penguin.json b/domains/penguin.json
new file mode 100644
index 000000000..9fa7ca004
--- /dev/null
+++ b/domains/penguin.json
@@ -0,0 +1,22 @@
+{
+ "owner": {
+ "username": "bcyayay14",
+ "email": "br14n.universe@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx.zoho.com.au",
+ "mx2.zoho.com.au",
+ "mx3.zoho.com.au"
+ ],
+ "TXT": "v=spf1 include:zoho.com.au ~all"
+
+ }
+
+}
diff --git a/domains/phantom.json b/domains/phantom.json
index 34b4c0f2c..19d8b51b3 100644
--- a/domains/phantom.json
+++ b/domains/phantom.json
@@ -3,9 +3,9 @@
"repo": "https://github.com/SealedSaucer",
"owner": {
"username": "SealedSaucer",
- "email": "phantom@phantomcodes.ga"
+ "email": "sealedsaucer@gmail.com"
},
"record": {
- "URL": "https://phantomcodes.ga"
+ "CNAME": "phantom.pages.dev"
}
}
diff --git a/domains/pinchese.json b/domains/pinchese.json
new file mode 100644
index 000000000..0fc394b29
--- /dev/null
+++ b/domains/pinchese.json
@@ -0,0 +1,11 @@
+{
+ "description": "a website and portfolio for me and my projects",
+ "repo": "https://github.com/pinchese/pinchese.github.io",
+ "owner": {
+ "username": "pinchese",
+ "email": "pinchese@protonmail.com"
+ },
+ "record": {
+ "CNAME": "pinchese.github.io"
+ }
+}
diff --git a/domains/pixel.json b/domains/pixel.json
new file mode 100644
index 000000000..4b558abe2
--- /dev/null
+++ b/domains/pixel.json
@@ -0,0 +1,12 @@
+{
+ "description": "BasicPixel's personal website",
+ "repo": "https://github.com/BasicPixel/basicpixel.github.io",
+ "owner": {
+ "username": "BasicPixel",
+ "email": "osama.mo.qudah@gmail.com",
+ "twitter": "pqudah"
+ },
+ "record": {
+ "CNAME": "basicpixel.github.io"
+ }
+}
diff --git a/domains/plopilpy.json b/domains/plopilpy.json
new file mode 100644
index 000000000..43178d678
--- /dev/null
+++ b/domains/plopilpy.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal page, where I demonstrate some HTML and JS",
+ "repo": "https://github.com/plopilpy/plopilpy.github.io",
+ "owner": {
+ "username": "plopilpy",
+ "email": "plopilpy@tazzy.ca",
+ "twitter": "plopilpy"
+ },
+ "record": {
+ "CNAME": "plopilpy.github.io"
+ }
+}
diff --git a/domains/polopro.json b/domains/polopro.json
new file mode 100644
index 000000000..fbfac54f5
--- /dev/null
+++ b/domains/polopro.json
@@ -0,0 +1,11 @@
+{
+ "description": "polo pro",
+ "repo": "https://github.com/polo-1245-oficial/polo-1245-oficial.github.io",
+ "owner": {
+ "username": "polo-1245-oficial",
+ "email": "contacto@polo1245.es"
+ },
+ "record": {
+ "CNAME": "polo-1245-oficial.github.io"
+ }
+}
diff --git a/domains/portal-slot-gacor.json b/domains/portal-slot-gacor.json
new file mode 100644
index 000000000..2c890b57b
--- /dev/null
+++ b/domains/portal-slot-gacor.json
@@ -0,0 +1,11 @@
+{
+ "description": "Demo Spining wheeles slot Gacor",
+ "repo": "https://github.com/cewemanja/portal-slot-gacor",
+ "owner": {
+ "username": "cewemanja",
+ "email": "slotgacor@id123.uno"
+ },
+ "record": {
+ "URL": "https://cewemanja.github.io/portal-slot-gacor/"
+ }
+}
diff --git a/domains/posandu.json b/domains/posandu.json
new file mode 100644
index 000000000..967592d15
--- /dev/null
+++ b/domains/posandu.json
@@ -0,0 +1,12 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/Posandu/posandu.github.io",
+ "owner": {
+ "username": "posandu",
+ "email": "posandumapa@gmail.com",
+ "twitter": "posandu"
+ },
+ "record": {
+ "CNAME": "posandu.github.io"
+ }
+}
diff --git a/domains/potatoland4492.json b/domains/potatoland4492.json
new file mode 100644
index 000000000..8f3f2255f
--- /dev/null
+++ b/domains/potatoland4492.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal site for all my projects.",
+ "repo": "https://github.com/potatoland4492/potatoland4492.github.io",
+ "owner": {
+ "username": "potatoland4492",
+ "email": "potatoland4492@gmail.com"
+ },
+ "record": {
+ "CNAME": "potatoland4492.github.io"
+ }
+}
diff --git a/domains/pr.whine.json b/domains/pr.whine.json
new file mode 100644
index 000000000..8994675cf
--- /dev/null
+++ b/domains/pr.whine.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "description": "whi_ne's projects' subdomain",
+ "record": {
+ "CNAME": "whnya.github.io"
+ }
+}
diff --git a/domains/prabhat.json b/domains/prabhat.json
new file mode 100644
index 000000000..6df0cc828
--- /dev/null
+++ b/domains/prabhat.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/itzPrabhat",
+ "owner": {
+ "username": "itzPrabhat",
+ "email": "prabhatbhatia09@gmail.com"
+ },
+ "record": {
+ "CNAME": "pbdev.ml"
+ }
+}
diff --git a/domains/prabin.json b/domains/prabin.json
new file mode 100644
index 000000000..d97b20bc7
--- /dev/null
+++ b/domains/prabin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Web",
+ "repo": "https://github.com/prabincankod/prabincankod.github.io",
+ "owner": {
+ "username": "prabincankod",
+ "email": "prabinsubedi2016@gmail.com"
+ },
+ "record": {
+ "URL":"https://prabin.tech"
+ }
+}
diff --git a/domains/pratyaydeep.json b/domains/pratyaydeep.json
new file mode 100644
index 000000000..22f7092f3
--- /dev/null
+++ b/domains/pratyaydeep.json
@@ -0,0 +1,11 @@
+{
+ "description": "Pratyaydeep's Microblog",
+ "repo": "https://github.com/pratyaydeep",
+ "owner": {
+ "username": "pratyaydeep",
+ "email": "pratyaydeep@yahoo.com"
+ },
+ "record": {
+ "URL": "https://pratya.pythonanywhere.com"
+ }
+}
diff --git a/domains/projects.catzboy.json b/domains/projects.catzboy.json
new file mode 100644
index 000000000..b3aae05fb
--- /dev/null
+++ b/domains/projects.catzboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Showcase All My Projects",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/proximity.json b/domains/proximity.json
new file mode 100644
index 000000000..a9ad113b0
--- /dev/null
+++ b/domains/proximity.json
@@ -0,0 +1,13 @@
+{
+ "description": "Dev Env",
+ "repo": "https://github.com/hexed",
+ "owner": {
+ "username": "hexed",
+ "email": "me@proximity.sh"
+ },
+ "record": {
+ "A": [
+ "144.172.67.6"
+ ]
+ }
+}
diff --git a/domains/prozt.json b/domains/prozt.json
new file mode 100644
index 000000000..f2bffbdb5
--- /dev/null
+++ b/domains/prozt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TechPro709",
+ "email": "prozt709@gmail.com"
+ },
+ "record": {
+ "CNAME": "techpro709.github.io"
+ }
+}
diff --git a/domains/qwerty.json b/domains/qwerty.json
new file mode 100644
index 000000000..749836d47
--- /dev/null
+++ b/domains/qwerty.json
@@ -0,0 +1,12 @@
+{
+ "description": "Redirecting to my personal website!",
+ "repo": "https://github.com/qwertyiscoding/simple-redirect",
+ "owner": {
+ "username": "QwertyIsCoding",
+ "email": "3kn5nsfkb@relay.firefox.com",
+ "twitter": "qwertyiscoding"
+ },
+ "record": {
+ "CNAME": "qwertyiscoding.github.io"
+ }
+}
diff --git a/domains/qxb3.json b/domains/qxb3.json
new file mode 100644
index 000000000..8fea7bea1
--- /dev/null
+++ b/domains/qxb3.json
@@ -0,0 +1,11 @@
+{
+ "description": "qxb3's personal website",
+ "owner": {
+ "username": "qxb3",
+ "discord": "qxb3#4312",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "qxb-production.up.railway.app"
+ }
+}
diff --git a/domains/radke.json b/domains/radke.json
new file mode 100644
index 000000000..abecd42ed
--- /dev/null
+++ b/domains/radke.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "radekw8733",
+ "email": "radekw8733@gmail.com"
+ },
+ "repo": "https://github.com/radekw8733/radke.is-a.dev",
+ "record": {
+ "CNAME": "radkerouter.ddns.net"
+ }
+}
\ No newline at end of file
diff --git a/domains/rahulcodes.json b/domains/rahulcodes.json
new file mode 100644
index 000000000..690c05eb0
--- /dev/null
+++ b/domains/rahulcodes.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rahul Bussa's Portfolio",
+ "repo": "https://github.com/bussarahul/rahulcodes",
+ "owner": {
+ "username": "rahulcodes",
+ "email": "rahulbussa@outlook.com"
+ },
+ "record": {
+ "CNAME": "bussarahul.github.io"
+ }
+}
diff --git a/domains/ralph.json b/domains/ralph.json
new file mode 100644
index 000000000..bd327f50c
--- /dev/null
+++ b/domains/ralph.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "ralph",
+ "email": "asnowwolf@gmail.com",
+ "irc": "",
+ "discord": "",
+ "note": "A ThoughtWorker & GDE"
+ },
+ "description": "Ralph Wang's blog",
+ "record": {
+ "CNAME": "blog.ralph.wang"
+ }
+}
diff --git a/domains/raviteja.json b/domains/raviteja.json
new file mode 100644
index 000000000..e1cc53fd4
--- /dev/null
+++ b/domains/raviteja.json
@@ -0,0 +1,12 @@
+{
+ "description": "Ravi Teja's portfolio website",
+ "repo": "https://github.com/iraviteja/iraviteja.github.io",
+ "owner": {
+ "username": "iraviteja",
+ "email": "iraviteja77@gmail.com",
+ "twitter": "_iraviteja"
+ },
+ "record": {
+ "CNAME": "iraviteja.github.io"
+ }
+}
diff --git a/domains/ravost.json b/domains/ravost.json
new file mode 100644
index 000000000..a23839f76
--- /dev/null
+++ b/domains/ravost.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Ravost99",
+ "email": "",
+ "discord": "Ravost99#3361"
+ },
+ "description": "Ravost99's Personal website",
+ "record": {
+ "CNAME": "ff6546d8-ce57-4f83-bff1-de3fdf47f30f.id.repl.co"
+ }
+}
diff --git a/domains/raw-kirito.json b/domains/raw-kirito.json
new file mode 100644
index 000000000..6c1555378
--- /dev/null
+++ b/domains/raw-kirito.json
@@ -0,0 +1,10 @@
+{
+ "description": "this a link to My Raw Web Github",
+ "owner": {
+ "username": "ThisMe124",
+ "email": "anonymous.orgn@gmail.com"
+ },
+ "record": {
+ "CNAME": "thisme124.github.io"
+ }
+}
diff --git a/domains/rededge.json b/domains/rededge.json
new file mode 100644
index 000000000..8e02b7c87
--- /dev/null
+++ b/domains/rededge.json
@@ -0,0 +1,11 @@
+{
+ "description": "Chandula Janith's (RedEdge967) personal portfolio website made with glassmorphism UI",
+ "repo": "https://github.com/RedEdge967/RedEdge967.github.io",
+ "owner": {
+ "username": "RedEdge967",
+ "email": "janithc967@gmail.com"
+ },
+ "record": {
+ "CNAME": "RedEdge967.github.io"
+ }
+}
diff --git a/domains/reefsalty.json b/domains/reefsalty.json
new file mode 100644
index 000000000..b5a77cfd7
--- /dev/null
+++ b/domains/reefsalty.json
@@ -0,0 +1,12 @@
+{
+ "description": "ReefSalty",
+ "repo": "https://github.com/github-username/github-username.github.io",
+ "owner": {
+ "username": "ReefSalty",
+ "email": "hi@reefsalty.co.uk",
+ "twitter": "ReefSalty"
+ },
+ "record": {
+ "CNAME": "ReefSalty.github.io"
+ }
+}
diff --git a/domains/refat.json b/domains/refat.json
new file mode 100644
index 000000000..537de405b
--- /dev/null
+++ b/domains/refat.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Site",
+ "owner": {
+ "username": "refatc25",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://www.refatchowdhury.com"
+ }
+}
diff --git a/domains/ricardo.json b/domains/ricardo.json
index ae219a4e6..5180f01fe 100644
--- a/domains/ricardo.json
+++ b/domains/ricardo.json
@@ -1,11 +1,11 @@
{
"description": "My personal website",
- "repo": "https://github.com/RoboticObsession/Website",
+ "repo": "https://github.com/RicardoGonzf/RicardoGonzf",
"owner": {
- "username": "RoboticObsession",
- "email": "ricardo@roboticobsession.xyz"
+ "username": "RicardoGonzf",
+ "email": "ricardo@ricardogonz.es"
},
"record": {
- "URL": "https://roboticobsession.xyz"
+ "URL": "https://ricardogonz.es"
}
}
diff --git a/domains/richie.json b/domains/richie.json
index 856949f16..22b2f00cc 100644
--- a/domains/richie.json
+++ b/domains/richie.json
@@ -1,11 +1,11 @@
{
- "description": "This is for my GitHub pages",
+ "description": "This is for my local server",
"repo": "https://github.com/richiesuper",
"owner": {
"username": "richiesuper",
"email": "richie9963@gmail.com"
},
"record": {
- "CNAME": "richiesuper.github.io"
+ "CNAME": "richiesuper.ddns.net"
}
}
diff --git a/domains/rie.json b/domains/rie.json
new file mode 100644
index 000000000..0e08c02ba
--- /dev/null
+++ b/domains/rie.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rie's Website",
+ "repo": "https://github.com/meguminsama",
+ "owner": {
+ "username": "MeguminSama",
+ "email": "megumin@megu.dev"
+ },
+ "record": {
+ "CNAME": "cname-dev.megu.dev"
+ }
+}
diff --git a/domains/rim.json b/domains/rim.json
new file mode 100644
index 000000000..869b213cd
--- /dev/null
+++ b/domains/rim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itsRim",
+ "email": "purpleblueslime@gmail.com"
+ },
+ "record": {
+ "CNAME": "itsrim.github.io"
+ }
+}
diff --git a/domains/riskybot.riskymh.json b/domains/riskybot.riskymh.json
new file mode 100644
index 000000000..43c6e40ae
--- /dev/null
+++ b/domains/riskybot.riskymh.json
@@ -0,0 +1,13 @@
+{
+ "description": "Discord Bot Website",
+ "repo": "https://github.com/RiskyMH/RiskyBOT",
+ "owner": {
+ "username": "RiskyMH",
+ "discord": "RiskyMH#0182",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://riskymh.github.io/RiskyBOT"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/riskymh.json b/domains/riskymh.json
new file mode 100644
index 000000000..a8ba5ad51
--- /dev/null
+++ b/domains/riskymh.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/RiskyMH/RiskyMH.github.io",
+ "owner": {
+ "username": "RiskyMH",
+ "discord": "RiskyMH#0182",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://riskymh.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/ritwick2006.json b/domains/ritwick2006.json
new file mode 100644
index 000000000..5ab1790e8
--- /dev/null
+++ b/domains/ritwick2006.json
@@ -0,0 +1,11 @@
+{
+ "description": "Ritwick's website",
+ "repo": "https://github.com/BOTDEV123",
+ "owner": {
+ "username": "BOTDEV123",
+ "email": "ritwick2006@hotmail.com"
+ },
+ "record": {
+ "CNAME": "ritwick2006.freecluster.eu"
+ }
+}
diff --git a/domains/rlx.json b/domains/rlx.json
new file mode 100644
index 000000000..1fa2dbd7f
--- /dev/null
+++ b/domains/rlx.json
@@ -0,0 +1,11 @@
+{
+ "description": "RLX's personal website",
+ "repo": "https://github.com/RLX-OP/rlx-op.github.io",
+ "owner": {
+ "username": "RLX-OP",
+ "email": "contactrlxop@gmail.com"
+ },
+ "record": {
+ "CNAME": "rlx-op.github.io"
+ }
+}
diff --git a/domains/roreef.json b/domains/roreef.json
new file mode 100644
index 000000000..8a56cfab8
--- /dev/null
+++ b/domains/roreef.json
@@ -0,0 +1,12 @@
+{
+ "description": "roreef personal website",
+ "repo": "https://github.com/reef1447/reef1447.github.io",
+ "owner": {
+ "username": "reef1447",
+ "email": "spray123kira@gmail.com",
+ "discord": "ro-reef#8899"
+ },
+ "record": {
+ "CNAME": "reef1447.github.io"
+ }
+}
diff --git a/domains/roxza.json b/domains/roxza.json
new file mode 100644
index 000000000..2e8462185
--- /dev/null
+++ b/domains/roxza.json
@@ -0,0 +1,12 @@
+{
+ "description": "Roxza personal developer website",
+ "repo": "https://github.com/Roxza/Roxza.me",
+ "owner": {
+ "username": "roxza",
+ "email": "me@roxza.me",
+ "discord": "Roxza#0002"
+ },
+ "record": {
+ "URL": "https://roxza.me"
+ }
+}
diff --git a/domains/ryan.json b/domains/ryan.json
new file mode 100644
index 000000000..01d5c9bd1
--- /dev/null
+++ b/domains/ryan.json
@@ -0,0 +1,11 @@
+{
+ "description": "is-a.dev domain",
+ "repo": "https://github.com/ryan0204",
+ "owner": {
+ "username": "Ryan0204",
+ "email": "ryan@ssrv.xyz"
+ },
+ "record": {
+ "URL": "https://ssrv.xyz"
+ }
+}
diff --git a/domains/sadie.json b/domains/sadie.json
new file mode 100644
index 000000000..da10491fb
--- /dev/null
+++ b/domains/sadie.json
@@ -0,0 +1,12 @@
+{
+ "description": "Sadie Brooklyn's website",
+ "repo": "https://github.com/night-lake/night-lake.github.io",
+ "owner": {
+ "username": "night-lake",
+ "email": "sadiebk@fluorine.me",
+ "twitter": "_nightlake"
+ },
+ "record": {
+ "CNAME": "night-lake.github.io"
+ }
+}
diff --git a/domains/saharsh.json b/domains/saharsh.json
new file mode 100644
index 000000000..652fa8bda
--- /dev/null
+++ b/domains/saharsh.json
@@ -0,0 +1,12 @@
+{
+ "description": "My portofilio!",
+ "repo": "https://github.com/Saharsh1223/saharsh1223.github.io",
+ "owner": {
+ "username": "Saharsh1223",
+ "email": "psaharsh2@gmail.com",
+ "twitter": "saharsh1223"
+ },
+ "record": {
+ "CNAME": "saharsh1223.github.io"
+ }
+}
diff --git a/domains/sahil.json b/domains/sahil.json
new file mode 100644
index 000000000..a8dc56ac5
--- /dev/null
+++ b/domains/sahil.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Porfolio Records Add.",
+ "repo": "https://github.com/sahilpatel09/sahilpatel09.github.io",
+ "owner": {
+ "username": "sahilpatel09",
+ "email": "smppatel99999@gmail.com",
+ "twitter": "smppatel99999"
+ },
+ "record": {
+ "CNAME": "sahilpatel09.github.io"
+ }
+}
diff --git a/domains/samcarson.json b/domains/samcarson.json
new file mode 100644
index 000000000..6c2941d8d
--- /dev/null
+++ b/domains/samcarson.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "samcarsonx",
+ "email": "sam@carson.industries"
+ },
+ "record": {
+ "CNAME": "isadev.samcarson.co.uk"
+ }
+}
diff --git a/domains/saml2020.json b/domains/samdev.json
similarity index 59%
rename from domains/saml2020.json
rename to domains/samdev.json
index 3caeb810e..eae00f8c7 100644
--- a/domains/saml2020.json
+++ b/domains/samdev.json
@@ -1,8 +1,8 @@
{
"owner": {
- "username": "SamL2020",
+ "username": "SamDev-7",
"email": "",
- "discord": "SamL2020#1767"
+ "discord": "SamDev7#1767"
},
"record": {
"URL": "https://samdev.gq"
diff --git a/domains/samihatasnim.json b/domains/samihatasnim.json
new file mode 100644
index 000000000..644dfaf18
--- /dev/null
+++ b/domains/samihatasnim.json
@@ -0,0 +1,13 @@
+{
+ "description": "Samiha Tasnim's personal website.",
+ "repo": "https://github.com/samihaTasnim/website",
+ "owner": {
+ "username": "samihaTasnim",
+ "discord": "sam.#7750",
+ "email": "samxtasnim@gmail.com",
+ "twitter": "@SamihaTasnimm"
+ },
+ "record": {
+ "CNAME": "website-production-8e6d.up.railway.app"
+ }
+}
diff --git a/domains/samriddha.json b/domains/samriddha.json
new file mode 100644
index 000000000..7ede64278
--- /dev/null
+++ b/domains/samriddha.json
@@ -0,0 +1,12 @@
+{
+ "description": "Link to my website",
+ "repo": "https://github.com/samriddha-basu-cloud/CV",
+ "owner": {
+ "username": "samriddha-basu-cloud",
+ "email": "sb2899@srmist.edu.in",
+ "twitter": "https://twitter.com/BasuSamriddha"
+ },
+ "record": {
+ "CNAME": "samriddha-basu-cloud.github.io"
+ }
+}
diff --git a/domains/sanana.json b/domains/sanana.json
new file mode 100644
index 000000000..238069e9c
--- /dev/null
+++ b/domains/sanana.json
@@ -0,0 +1,12 @@
+{
+ "description": "sanana the skenana's personal website",
+ "repo": "https://github.com/TheOddGarlic/theoddgarlic.github.io",
+ "owner": {
+ "username": "TheOddGarlic",
+ "email": "umutinanerdogan@pm.me",
+ "discord": "sanana the skenana#4025"
+ },
+ "record": {
+ "CNAME": "theoddgarlic.github.io"
+ }
+}
diff --git a/domains/santhosh.json b/domains/santhosh.json
new file mode 100644
index 000000000..a59d2ea01
--- /dev/null
+++ b/domains/santhosh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ABSanthosh",
+ "email": "a.b.santhosh02@gmail.com"
+ },
+ "record": {
+ "CNAME": "absanthosh.github.io"
+ }
+}
diff --git a/domains/santito.json b/domains/santito.json
new file mode 100644
index 000000000..f176be2c9
--- /dev/null
+++ b/domains/santito.json
@@ -0,0 +1,11 @@
+{
+ "description": "Santito's Personal Site",
+ "repo": "https://github.com/DevSantito/devsantito.github.io",
+ "owner": {
+ "username": "DevSantito",
+ "email": "devsantito@gmail.com"
+ },
+ "record": {
+ "CNAME": "devsantito.github.io"
+ }
+ }
diff --git a/domains/sathish.json b/domains/sathish.json
new file mode 100644
index 000000000..fbd4cccc9
--- /dev/null
+++ b/domains/sathish.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal dev blog",
+ "repo": "https://github.com/Muppidathi-sys/Muppidathi-sys.github.io",
+ "owner": {
+ "username": "Muppidathi-sys",
+ "email": "muppidathi00@gmail.com"
+ },
+ "record": {
+ "CNAME": "Muppidathi-sys.github.io"
+ }
+}
diff --git a/domains/scientific-dev.json b/domains/scientific-dev.json
index 38c03b1b1..c86714c4e 100644
--- a/domains/scientific-dev.json
+++ b/domains/scientific-dev.json
@@ -7,6 +7,6 @@
"twitter": "ScientificDev"
},
"record": {
- "CNAME": "scientific-dev.github.io"
+ "URL": "https://thesudarsandev.xyz/"
}
}
diff --git a/domains/sea-shell.jj.json b/domains/sea-shell.jj.json
new file mode 100644
index 000000000..b83d36489
--- /dev/null
+++ b/domains/sea-shell.jj.json
@@ -0,0 +1,11 @@
+{
+ "description": "website for the Sea Shell project",
+ "repo": "https://github.com/Sea-Shell/site",
+ "owner": {
+ "username": "TheBotlyNoob",
+ "email": "jj@jj.is-a.dev"
+ },
+ "record": {
+ "CNAME": "site-production-be0d.up.railway.app"
+ }
+}
diff --git a/domains/search.thomasc.json b/domains/search.thomasc.json
new file mode 100644
index 000000000..2d8e4ec8c
--- /dev/null
+++ b/domains/search.thomasc.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hopefully Thomas Croft's is-a.dev Whoogle instance",
+ "repo": "https://replit.com/@thomascf/whoogle",
+ "owner": {
+ "username": "thomascf",
+ "email": "thomas.croft@pm.me"
+ },
+ "record": {
+ "CNAME": "7c73f282-d33b-4a1d-b36e-bf6da5155d55.id.repl.co"
+ }
+ }
diff --git a/domains/semant.json b/domains/semant.json
new file mode 100644
index 000000000..1890cc030
--- /dev/null
+++ b/domains/semant.json
@@ -0,0 +1,23 @@
+{
+ "description": "Semant's Website",
+ "repo": "https://github.com/bad-boy-codes/bad-boy-codes.github.io",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "sonupanda078@gmail.com",
+ "discord": "Bad Boy Plays#9608",
+ "note": "My Discord ID is 445073800850046977."
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/serena.json b/domains/serena.json
new file mode 100644
index 000000000..cbfe2b68e
--- /dev/null
+++ b/domains/serena.json
@@ -0,0 +1,11 @@
+{
+ "description": "Serena's Website",
+ "owner": {
+ "username": "Serena-io",
+ "email": "",
+ "discord": "Serena#1165"
+ },
+ "record": {
+ "CNAME": "serena-io.github.io"
+ }
+}
diff --git a/domains/shaunak.json b/domains/shaunak.json
new file mode 100644
index 000000000..f947e4686
--- /dev/null
+++ b/domains/shaunak.json
@@ -0,0 +1,11 @@
+{
+ "description": "my .is-a.dev domain",
+ "repo": "https://github.com/Shaunak-Pandya.github.io",
+ "owner": {
+ "username": "Shaunak-Pandya",
+ "email": "shaunak.n.pandya@gmail.com"
+ },
+ "record": {
+ "CNAME": "shaunak-pandya.github.io"
+ }
+}
diff --git a/domains/shin.json b/domains/shin.json
new file mode 100644
index 000000000..0cf88ec7c
--- /dev/null
+++ b/domains/shin.json
@@ -0,0 +1,12 @@
+{
+ "description": "The offcial website by Tachibana Shin (@tachib_shin)",
+ "repo": "https://github.com/tachibana-shin/tachibana-shin.github.io",
+ "owner": {
+ "username": "tachibana-shin",
+ "email": "",
+ "twitter": "tachib_shin"
+ },
+ "record": {
+ "CNAME": "tachibana-shin.github.io"
+ }
+}
diff --git a/domains/shuchirjain.json b/domains/shuchirjain.json
new file mode 100644
index 000000000..4bd0900c3
--- /dev/null
+++ b/domains/shuchirjain.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "CoolCoderSJ",
+ "email": "coolcodersj@gmail.com"
+ },
+
+ "record": {
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/simonknowsstuff.json b/domains/simonknowsstuff.json
new file mode 100644
index 000000000..98c6ff950
--- /dev/null
+++ b/domains/simonknowsstuff.json
@@ -0,0 +1,12 @@
+{
+ "description": "simonknowsstuff's website!",
+ "repo": "https://github.com/github-username/github-username.github.io",
+ "owner": {
+ "username": "simonknowsstuff",
+ "email": "simonknowsstuff@gmail.com",
+ "twitter": "simonknowsstuff"
+ },
+ "record": {
+ "CNAME": "simonknowsstuff.github.io"
+ }
+}
diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json
new file mode 100644
index 000000000..4762d7782
--- /dev/null
+++ b/domains/sirmacr0.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website for me",
+ "repo": "https://github.com/SirMacr0/SirMacr0.github.io",
+ "owner": {
+ "username": "SirMacr0",
+ "email": "tunagunduz03@gmail.com"
+ },
+ "record": {
+ "CNAME": "SirMacr0.github.io"
+ }
+}
diff --git a/domains/sirsimonson.json b/domains/sirsimonson.json
new file mode 100644
index 000000000..5b8107352
--- /dev/null
+++ b/domains/sirsimonson.json
@@ -0,0 +1,10 @@
+{
+ "description": "S!ck S1m0n's Spaßgarten mit Spielwiese und Geräteschuppen",
+ "owner": {
+ "username": "sirsimonson",
+ "email": "srsmnsn@gmail.com"
+ },
+ "record": {
+ "CNAME": "sirsimonson.github.io"
+ }
+}
diff --git a/domains/skduck.json b/domains/skduck.json
new file mode 100644
index 000000000..a2b497bfb
--- /dev/null
+++ b/domains/skduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "my em@il forwarder",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "m@skduck.is-a.dev",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=it-is@too-obvious-that.maskduck.is-a.dev"
+ }
+}
diff --git a/domains/slow.json b/domains/slow.json
new file mode 100644
index 000000000..ebcd11419
--- /dev/null
+++ b/domains/slow.json
@@ -0,0 +1,11 @@
+{
+ "description": "slow personal developer website",
+ "repo": "https://github.com/slowwdev/slow",
+ "owner": {
+ "username": "slowwdev",
+ "email": "slowdev14@gmail.com"
+ },
+ "record": {
+ "CNAME": "slowwdev.github.io"
+ }
+ }
diff --git a/domains/snail.json b/domains/snail.json
new file mode 100644
index 000000000..a1d0c19ab
--- /dev/null
+++ b/domains/snail.json
@@ -0,0 +1,11 @@
+{
+ "description": "Snail's Site",
+ "repo": "https://github.com/snaildos/snail.is.dev",
+ "owner": {
+ "username": "snaildos",
+ "email": "snaildos@snaildos.com"
+ },
+ "record": {
+ "CNAME": "snail-is-dev.pages.dev"
+ }
+}
diff --git a/domains/snowcatridge10.json b/domains/snowcatridge10.json
new file mode 100644
index 000000000..94fabad6a
--- /dev/null
+++ b/domains/snowcatridge10.json
@@ -0,0 +1,11 @@
+{
+ "description": "Snowcatridge10's awesome website!",
+ "repo": "https://github.com/snowcatridge10/snowcatridge10.github.io",
+ "owner": {
+ "username": "snowcatridge10",
+ "email": "akreamer@pm.me"
+ },
+ "record": {
+ "CNAME": "snowcatridge10.github.io"
+ }
+}
diff --git a/domains/soham.json b/domains/soham.json
new file mode 100644
index 000000000..51a2e3e43
--- /dev/null
+++ b/domains/soham.json
@@ -0,0 +1,11 @@
+{
+ "description": "Soham's personal website",
+ "repo": "https://github.com/sohamdoescode/sohamdoescode.github.io",
+ "owner": {
+ "username": "sohamdoescode",
+ "email": "soham.b630@gmail.com"
+ },
+ "record": {
+ "CNAME": "sohamdoescode.github.io"
+ }
+}
diff --git a/domains/someone.json b/domains/someone.json
new file mode 100644
index 000000000..182d02c88
--- /dev/null
+++ b/domains/someone.json
@@ -0,0 +1,11 @@
+{
+ "description": "OwO's page",
+ "repo": "https://github.com/ow0x/ow0x.github.io",
+ "owner": {
+ "username": "ow0x",
+ "email": "studiouifxdesignersandcoders@gmail.com"
+ },
+ "record": {
+ "CNAME": "ow0x.github.io"
+ }
+}
diff --git a/domains/somesh.json b/domains/somesh.json
new file mode 100644
index 000000000..460d2fdea
--- /dev/null
+++ b/domains/somesh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/someshportfoliohome/someshportfoliohome.github.io/",
+ "owner": {
+ "username": "someshportfoliohome",
+ "email": "yeahitspace@gmail.com"
+ },
+ "record": {
+ "CNAME": "someshportfoliohome.github.io"
+ }
+}
diff --git a/domains/someshtiwari.json b/domains/someshtiwari.json
new file mode 100644
index 000000000..d29ff4857
--- /dev/null
+++ b/domains/someshtiwari.json
@@ -0,0 +1,11 @@
+{
+ "description": "Add some description",
+ "repo": "https://github.com/someshportfolio/someshportfolio.github.io",
+ "owner": {
+ "username": "someshportfolio",
+ "email": "yeahitspace@gmail.com"
+ },
+ "record": {
+ "CNAME": "someshportfolio.github.io"
+ }
+}
diff --git a/domains/sonicx180.json b/domains/sonicx180.json
new file mode 100644
index 000000000..6fa70727e
--- /dev/null
+++ b/domains/sonicx180.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/sonicx180/website",
+ "owner": {
+ "username": "sonicx180",
+ "email": "chetanzeogu410@gmail.com"
+ },
+ "record": {
+ "CNAME": "0146e66a-6183-424c-85bd-b240bea14f14.id.repl.co"
+ }
+}
diff --git a/domains/sonu.json b/domains/sonu.json
new file mode 100644
index 000000000..eeeeeda29
--- /dev/null
+++ b/domains/sonu.json
@@ -0,0 +1,11 @@
+{
+ "description": "Sonu's Website",
+ "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "sonupanda078@gmail.com"
+ },
+ "record": {
+ "CNAME": "semant-panda.github.io"
+ }
+}
diff --git a/domains/soulis.json b/domains/soulis.json
new file mode 100644
index 000000000..9f2bab768
--- /dev/null
+++ b/domains/soulis.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anselal",
+ "email": "t.selalmasidis@gmail.com"
+ },
+ "record": {
+ "URL": "https://soulis.tech"
+ }
+}
diff --git a/domains/soyuj.json b/domains/soyuj.json
new file mode 100644
index 000000000..f5e86f57b
--- /dev/null
+++ b/domains/soyuj.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website of Soyuj Jung Basnet",
+ "owner": {
+ "username": "basnetsoyuj",
+ "email": "bsoyuj@gmail.com"
+ },
+ "record": {
+ "URL": "http://soyuj.com.np"
+ }
+}
diff --git a/domains/specteado.json b/domains/specteado.json
new file mode 100644
index 000000000..7dcf6f3c9
--- /dev/null
+++ b/domains/specteado.json
@@ -0,0 +1,11 @@
+{
+ "description": "Specteado's portfolio!",
+ "repo": "https://github.com/Specteado/specteado.github.io",
+ "owner": {
+ "username": "Specteado",
+ "email": "jusefmasabanda10@gmail.com"
+ },
+ "record": {
+ "CNAME": "specteado.github.io"
+ }
+}
diff --git a/domains/spicyaxolotl.json b/domains/spicyaxolotl.json
new file mode 100644
index 000000000..fd548abf4
--- /dev/null
+++ b/domains/spicyaxolotl.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website",
+ "repo": "https://github.com/Spicy-Axolotl/spicy-axolotl.github.io",
+ "owner": {
+ "username": "Spicy-Axolotl",
+ "email": "",
+ "discord": "Axolotl (mycoolface256)#4736"
+ },
+ "record": {
+ "CNAME": "spicy-axolotl.github.io"
+ }
+}
diff --git a/domains/splatterxl.json b/domains/splatterxl.json
new file mode 100644
index 000000000..0c1ec8990
--- /dev/null
+++ b/domains/splatterxl.json
@@ -0,0 +1,12 @@
+{
+ "description": "Splatterxl's very cool site",
+ "repo": "https://github.com/splatterxl/splatterxl.github.io",
+ "owner": {
+ "username": "splatterxl",
+ "email": "splatterxl@outlook.ie",
+ "twitter": "splatterxlisdum"
+ },
+ "record": {
+ "CNAME": "splatterxl.github.io"
+ }
+}
diff --git a/domains/spud.json b/domains/spud.json
new file mode 100644
index 000000000..07811ea16
--- /dev/null
+++ b/domains/spud.json
@@ -0,0 +1,11 @@
+{
+ "description": "My own personal portfolio as a developer",
+ "repo": "https://github.com/MrPotato30/mrotato30.github.io",
+ "owner": {
+ "username": "mrpotato30",
+ "email": "fahrelrizal08@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrpotato30.github.io"
+ }
+}
diff --git a/domains/spyminer.json b/domains/spyminer.json
new file mode 100644
index 000000000..176fc6bc0
--- /dev/null
+++ b/domains/spyminer.json
@@ -0,0 +1,11 @@
+{
+ "description": "SpyMiner's website",
+ "repo": "https://github.com/SpyMinerX/SpyMinerX.github.io",
+ "owner": {
+ "username": "SpyMinerX",
+ "email": "spyminer@glacierclient.net"
+ },
+ "record": {
+ "CNAME": "isadev.engelbrecht.pro"
+ }
+}
diff --git a/domains/ssmidge.json b/domains/ssmidge.json
new file mode 100644
index 000000000..3f1b82978
--- /dev/null
+++ b/domains/ssmidge.json
@@ -0,0 +1,12 @@
+
+{
+ "description": "Ssmidge",
+ "repo": "https://github.com/Ssmidge/register",
+ "owner": {
+ "username": "Ssmidge",
+ "email": "Ssmidgemc@gmail.com"
+ },
+ "record": {
+ "CNAME": "ssmidge.xyz"
+ }
+}
diff --git a/domains/status.mousemoosz.json b/domains/status.mousemoosz.json
new file mode 100644
index 000000000..dcbda452d
--- /dev/null
+++ b/domains/status.mousemoosz.json
@@ -0,0 +1,10 @@
+{
+ "description": "For statuspage",
+ "owner": {
+ "username": "MouseMoosz",
+ "email": "mousemoosz@protonmail.com"
+ },
+ "record": {
+ "CNAME": "mousemoosz.statuspage.io"
+ }
+}
diff --git a/domains/stringent.json b/domains/stringent.json
new file mode 100644
index 000000000..6f3b7e537
--- /dev/null
+++ b/domains/stringent.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Blog/Portfolio",
+ "repo": "https://github.com/StringentDev/StringentDev",
+ "owner": {
+ "username": "StringentDev",
+ "email": "stringentdev@hotmail.com"
+ },
+ "record": {
+ "CNAME": "stringentdev-production.up.railway.app"
+ }
+}
diff --git a/domains/suki.json b/domains/suki.json
index 96356ddf4..713e96d5c 100644
--- a/domains/suki.json
+++ b/domains/suki.json
@@ -7,12 +7,12 @@
},
"record": {
"A": [
- "198.251.81.131"
+ "181.214.41.250"
],
"MX": [
"ns1.crystalcloud.xyz",
"ns2.crystalcloud.xyz"
],
- "TXT": "v=spf1 a mx ip4:198.251.81.131 ~all"
+ "TXT": "v=spf1 a mx ip4:181.214.41.250 ~all"
}
}
diff --git a/domains/superharmony910.json b/domains/superharmony910.json
index b7c4afdd2..29a6534cf 100644
--- a/domains/superharmony910.json
+++ b/domains/superharmony910.json
@@ -3,7 +3,8 @@
"repo": "https://github.com/SuperHarmony910/SuperHarmony910.github.io",
"owner": {
"username": "SuperHarmony910",
- "email": "superharmony910@gmail.com"
+ "email": "superharmony910@gmail.com",
+ "twitter": "s_harmony910"
},
"record": {
"CNAME": "superharmony910.github.io"
diff --git a/domains/suryaansh.json b/domains/suryaansh.json
new file mode 100644
index 000000000..1ca18f4fc
--- /dev/null
+++ b/domains/suryaansh.json
@@ -0,0 +1,11 @@
+{
+ "description": "suryaansh's personal site",
+ "repo": "https://github.com/suryaanshah/suryaanshah.github.io",
+ "owner": {
+ "username": "suryaanshah",
+ "email": "suryaanshchawla@gmail.com"
+ },
+ "record": {
+ "CNAME": "suryaanshah.github.io"
+ }
+}
diff --git a/domains/suzumi.badboy.json b/domains/suzumi.badboy.json
new file mode 100644
index 000000000..c7f7e60ef
--- /dev/null
+++ b/domains/suzumi.badboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Suzumi's Dashboard",
+ "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io",
+ "owner": {
+ "username": "bad-boy-codes",
+ "email": "badboyplays9999@gmail.com"
+ },
+ "record": {
+ "CNAME": "eae8cbdf-2582-400d-8f63-beef5acd45bb.id.repl.co"
+ }
+}
diff --git a/domains/svloog.json b/domains/svloog.json
new file mode 100644
index 000000000..ce357d37f
--- /dev/null
+++ b/domains/svloog.json
@@ -0,0 +1,12 @@
+{
+ "description": "just gonna put some projects here idk thought this might be cool to add some personality",
+ "repo": "https://github.com/slvoog/slvoog.github.io",
+ "owner": {
+ "username": "slvoog",
+ "email": "svloogz@gmail.com",
+ "twitter": "svloogz"
+ },
+ "record": {
+ "CNAME": "slvoog.github.io"
+ }
+}
diff --git a/domains/sx9.json b/domains/sx9.json
new file mode 100644
index 000000000..a3897de71
--- /dev/null
+++ b/domains/sx9.json
@@ -0,0 +1,14 @@
+{
+ "description": "SX's Website",
+ "repo": "https://sx-9.github.io",
+ "owner": {
+ "username": "SX-9",
+ "twitter": "SX_Discord",
+ "discord": "SX-Spy-Agent#1377",
+ "email": "sx-91@outlook.com",
+ "note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me"
+ },
+ "record": {
+ "CNAME": "sx-9.github.io"
+ }
+}
diff --git a/domains/syahiramali.json b/domains/syahiramali.json
new file mode 100644
index 000000000..c7c937927
--- /dev/null
+++ b/domains/syahiramali.json
@@ -0,0 +1,11 @@
+{
+ "description": "syahirAmali Portfolio",
+ "repo": "https://github.com/syahirAmali/syahirAmali.github.io",
+ "owner": {
+ "username": "syahirAmali",
+ "email": "syahiramali@gmail.com"
+ },
+ "record": {
+ "CNAME": "syahiramali.github.io"
+ }
+ }
diff --git a/domains/tagbot.maskduck.json b/domains/tagbot.maskduck.json
new file mode 100644
index 000000000..909c18865
--- /dev/null
+++ b/domains/tagbot.maskduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "HTTP command handler for my bot",
+ "repo": "https://github.com/MaskDuck/tag_bot",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "CNAME": "tagbot-production-bef9.up.railway.app"
+ }
+}
diff --git a/domains/tahakocabuga.json b/domains/tahakocabuga.json
new file mode 100644
index 000000000..1e9d8019c
--- /dev/null
+++ b/domains/tahakocabuga.json
@@ -0,0 +1,12 @@
+{
+ "description": "Taha Kocabuga's Portfolio",
+ "repo": "https://github.com/tahakocabuga/tahakocabuga.github.io",
+ "owner": {
+ "username": "tahakocabuga",
+ "email": "tahakocabuga@gmail.com",
+ "twitter": "tahakocabuga"
+ },
+ "record": {
+ "CNAME": "tahakocabuga.github.io"
+ }
+}
diff --git a/domains/tanio.json b/domains/tanio.json
new file mode 100644
index 000000000..119d1bb7e
--- /dev/null
+++ b/domains/tanio.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hello World",
+ "owner": {
+ "username": "tanmyid",
+ "email": "tanmyid1337@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/tanu.json b/domains/tanu.json
new file mode 100644
index 000000000..4833a5f4a
--- /dev/null
+++ b/domains/tanu.json
@@ -0,0 +1,12 @@
+{
+ "description": "Tanu's Website",
+ "repo": "https://github.com/desktopdotini/desktopdotini.github.io",
+ "owner": {
+ "username": "desktopdotini",
+ "email": "cloneyinnit@gmail.com",
+ "twitter": "tanumakescode"
+ },
+ "record": {
+ "CNAME": "desktopdotini.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/tca.json b/domains/tca.json
new file mode 100644
index 000000000..944241e02
--- /dev/null
+++ b/domains/tca.json
@@ -0,0 +1,12 @@
+{
+ "description": "TCA's official portfolio, if you can call it that.",
+ "repo": "https://github.com/NotTCA/devsite",
+ "owner": {
+ "username": "NotTCA",
+ "email": "me@nottca.tk",
+ "twitter": "https://twitter.com/imTCA_"
+ },
+ "record": {
+ "CNAME": "nottca.github.io"
+ }
+}
diff --git a/domains/tcdavo.json b/domains/tcdavo.json
new file mode 100644
index 000000000..e2e6ec296
--- /dev/null
+++ b/domains/tcdavo.json
@@ -0,0 +1,10 @@
+{
+ "owner":{
+ "username": "Tcdavo",
+ "discord": "FriedUp-_-#6908",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "44f0c26f-c6a3-4a32-bd8b-80614d289b24.id.repl.co"
+ }
+}
diff --git a/domains/tclement0922.json b/domains/tclement0922.json
new file mode 100644
index 000000000..b5645db9f
--- /dev/null
+++ b/domains/tclement0922.json
@@ -0,0 +1,11 @@
+{
+ "description": "tclement0922's personal site",
+ "repo": "https://github.com/tclement0922/tclement0922.github.io",
+ "owner": {
+ "username": "tclement0922",
+ "email": "dev.tclement0922@gmail.com"
+ },
+ "record": {
+ "CNAME": "tclement0922.github.io"
+ }
+ }
diff --git a/domains/technopaws.json b/domains/technopaws.json
new file mode 100644
index 000000000..7c68680ef
--- /dev/null
+++ b/domains/technopaws.json
@@ -0,0 +1,11 @@
+{
+ "description": "A PORTFOLIO FOR MYSELF",
+ "repo": "https://HmmNoSus.realtechnopaws.repl.co",
+ "owner": {
+ "username": "TECHNOPAWS",
+ "email": "technopaws69@gmail.com"
+ },
+ "record": {
+ "CNAME": "78db877f-0bbd-45b9-9c7d-ad02242a1705.id.repl.co"
+ }
+}
diff --git a/domains/techstarmahesh.json b/domains/techstarmahesh.json
new file mode 100644
index 000000000..eb7fab1c1
--- /dev/null
+++ b/domains/techstarmahesh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mahesh Sharma's personal developer website",
+ "repo": "https://github.com/techstarmahesh/techstarmahesh.github.io",
+ "owner": {
+ "username": "TechstarMahesh",
+ "email": "mistermaheshsharma@gmail.com"
+ },
+ "record": {
+ "CNAME": "techstarmahesh.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/tekno.json b/domains/tekno.json
new file mode 100644
index 000000000..751a22734
--- /dev/null
+++ b/domains/tekno.json
@@ -0,0 +1,12 @@
+{
+ "description": "Custom domain for my personal github pages site",
+ "repo": "https://github.com/TeknoSenpai/teknosenpai.github.io",
+ "owner": {
+ "username": "TeknoSenpai",
+ "email": "tekno@hiri.dev",
+ "twitter": "@TeknoSenpai"
+ },
+ "record": {
+ "CNAME": "teknosenpai.github.io"
+ }
+}
diff --git a/domains/teobouvard.json b/domains/teobouvard.json
new file mode 100644
index 000000000..ac0bc8287
--- /dev/null
+++ b/domains/teobouvard.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal github page",
+ "repo": "https://github.com/teobouvard/teobouvard.github.io",
+ "owner": {
+ "username": "teobouvard",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "teobouvard.github.io"
+ }
+}
diff --git a/domains/terminal.sea-shells.jj.json b/domains/terminal.sea-shells.jj.json
new file mode 100644
index 000000000..b260aa518
--- /dev/null
+++ b/domains/terminal.sea-shells.jj.json
@@ -0,0 +1,11 @@
+{
+ "description": "online terminal for the Sea Shell project",
+ "repo": "https://github.com/Sea-Shell/online-terminal",
+ "owner": {
+ "username": "TheBotlyNoob",
+ "email": "jj@jj.is-a.dev"
+ },
+ "record": {
+ "CNAME": "online-terminal-production.up.railway.app"
+ }
+}
diff --git a/domains/terroid.json b/domains/terroid.json
new file mode 100644
index 000000000..e21dc54ac
--- /dev/null
+++ b/domains/terroid.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/skandabhairava/skandabhairava.github.io",
+ "owner": {
+ "username": "skandabhairava",
+ "email": "skandabhairava@gmail.com",
+ "twitter": "TerroidYT"
+ },
+ "record": {
+ "CNAME": "skandabhairava.github.io"
+ }
+}
diff --git a/domains/tesla.json b/domains/tesla.json
new file mode 100644
index 000000000..5380cdea2
--- /dev/null
+++ b/domains/tesla.json
@@ -0,0 +1,11 @@
+{
+ "description": "tesla's personal website",
+ "repo": "https://github.com/hapi-dev",
+ "owner": {
+ "username": "tesla",
+ "email": "stream.hapi@gmail.com"
+ },
+ "record": {
+ "CNAME": "arindev.tech"
+ }
+}
diff --git a/domains/thanbv1510.json b/domains/thanbv1510.json
new file mode 100644
index 000000000..3a8f8dc7b
--- /dev/null
+++ b/domains/thanbv1510.json
@@ -0,0 +1,12 @@
+{
+ "description": "thanbv1510's personal website",
+ "repo": "https://github.com/thanbv1510/thanbv1510.github.io",
+ "owner": {
+ "username": "thanbv1510",
+ "email": "thanbv1510@gmail.com",
+ "twitter": "thanbv1510"
+ },
+ "record": {
+ "CNAME": "thanbv1510.github.io"
+ }
+}
diff --git a/domains/thecashewtrader.json b/domains/thecashewtrader.json
deleted file mode 100644
index 3713b79b9..000000000
--- a/domains/thecashewtrader.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "Fullstack MERN + NestJS + SvelteKit + TailwindCSS + BEM CSS developer.",
- "repo": "https://gitlab.com/thecashewtrader/thecashewtrader.gitlab.io",
- "owner": {
- "username": "thecashewtrader",
- "email": "thecashewtrader@protonmail.com",
- "matrix": "@thecashewtrader:matrix.org",
- "xmpp": "thecashewtrader@01337.io"
- },
- "record": {
- "A": ["35.185.44.232"],
- "TXT": "_gitlab-pages-verification-code.thecashewtrader.is-a.dev TXT gitlab-pages-verification-code=56767e24e22f6b5d40d71be1eca3b908"
- }
-}
diff --git a/domains/thecode-breaker.json b/domains/thecode-breaker.json
new file mode 100644
index 000000000..d1d9b37ec
--- /dev/null
+++ b/domains/thecode-breaker.json
@@ -0,0 +1,11 @@
+{
+ "description": "Link for Adarsh's personal site on GitHub pages",
+ "repo": "https://github.com/theCode-Breaker/theCode-Breaker.github.io/",
+ "owner": {
+ "username": "theCode-Breaker",
+ "email": "limit6@protonmail.com"
+ },
+ "record": {
+ "CNAME": "thecode-breaker.github.io"
+ }
+}
diff --git a/domains/theiocoder.json b/domains/theiocoder.json
deleted file mode 100644
index 669f3f06a..000000000
--- a/domains/theiocoder.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "hi there",
- "repo": "https://github.com/theiocoder.github.io",
- "owner": {
- "username": "theiocoder",
- "email": "gavinjstacey@gmail.com"
- },
- "record": {
- "CNAME": "theiocoder.github.io"
- }
-}
diff --git a/domains/thomas.json b/domains/thomas.json
new file mode 100644
index 000000000..28cefa250
--- /dev/null
+++ b/domains/thomas.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal portfolio as a programming language designer and developer.",
+ "repo": "https://github.com/thomasvergne/thomasvergne.github.io",
+ "owner": {
+ "username": "thomasvergne",
+ "email": "thomas.vergne.contact@gmail.com",
+ "twitter": "thomasvergne_"
+ },
+ "record": {
+ "CNAME": "thomasvergne.github.io"
+ }
+}
diff --git a/domains/thomasc.json b/domains/thomasc.json
new file mode 100644
index 000000000..0ad0adbd4
--- /dev/null
+++ b/domains/thomasc.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hopefully Thomas Croft's is-a.dev site",
+ "repo": "https://github.com/thomascf/thomascf.github.io",
+ "owner": {
+ "username": "thomascf",
+ "email": "thomas.croft@pm.me"
+ },
+ "record": {
+ "CNAME": "thomascf.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/thorgathis.json b/domains/thorgathis.json
new file mode 100644
index 000000000..4680880de
--- /dev/null
+++ b/domains/thorgathis.json
@@ -0,0 +1,11 @@
+{
+ "description": "Thorgathis website",
+ "repo": "https://github.com/Thorgathis/thorgathis.github.io",
+ "owner": {
+ "username": "Thorgathis",
+ "email": "thorgathis.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "thorgathis.github.io"
+ }
+}
diff --git a/domains/tilak.json b/domains/tilak.json
new file mode 100644
index 000000000..f3b8ca7f6
--- /dev/null
+++ b/domains/tilak.json
@@ -0,0 +1,11 @@
+{
+ "description": "Tilak's personal developer website",
+ "repo": "https://github.com/Perry-xD/Perry-xD.github.io",
+ "owner": {
+ "username": "Perry-xD",
+ "email": "heyahelloji@gmail.com"
+ },
+ "record": {
+ "CNAME": "Perry-xD.github.io"
+ }
+}
diff --git a/domains/toan.json b/domains/toan.json
new file mode 100644
index 000000000..bf17a4427
--- /dev/null
+++ b/domains/toan.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hashnode Blog",
+ "repo": "https://github.com/ductoanvo",
+ "owner": {
+ "username": "ductoanvo",
+ "email": "toan@duck.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/tobey.json b/domains/tobey.json
new file mode 100644
index 000000000..cae03e4e3
--- /dev/null
+++ b/domains/tobey.json
@@ -0,0 +1,11 @@
+{
+ "description": "Tobey is a dev",
+ "repo": "https://github.com/yebot",
+ "owner": {
+ "username": "yebot",
+ "email": "tobeyforsman@gmail.com"
+ },
+ "record": {
+ "URL": "https://twitter.com/TobeyForsman"
+ }
+}
\ No newline at end of file
diff --git a/domains/tolis.json b/domains/tolis.json
index 420ce89c6..bd18a8cc6 100644
--- a/domains/tolis.json
+++ b/domains/tolis.json
@@ -5,6 +5,6 @@
"email": "tolis@tolis.tech"
},
"record": {
- "CNAME": "hashnode.network"
+ "CNAME": "vienna.ns.govello.net"
}
}
diff --git a/domains/too-obvious-that.maskduck.json b/domains/too-obvious-that.maskduck.json
new file mode 100644
index 000000000..9d6673904
--- /dev/null
+++ b/domains/too-obvious-that.maskduck.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#1337",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/toster.json b/domains/toster.json
new file mode 100644
index 000000000..c8b4f3c38
--- /dev/null
+++ b/domains/toster.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rafau04",
+ "email": "matiz.rafal@gmail.com"
+ },
+ "record": {
+ "CNAME": "Rafau04.github.io"
+ }
+}
diff --git a/domains/trapdev.json b/domains/trapdev.json
new file mode 100644
index 000000000..41e85c6ed
--- /dev/null
+++ b/domains/trapdev.json
@@ -0,0 +1,11 @@
+{
+ "description": "Add some description",
+ "repo": "https://github.com/voidx999/trapdevweb",
+ "owner": {
+ "username": "voidx999",
+ "email": "vodlsreal@gmail.com"
+ },
+ "record": {
+ "CNAME": "451189ea-5d97-4b3c-9ff1-874973386ae1.id.repl.co"
+ }
+}
diff --git a/domains/trug.json b/domains/trug.json
new file mode 100644
index 000000000..3b308c600
--- /dev/null
+++ b/domains/trug.json
@@ -0,0 +1,11 @@
+{
+ "description": "Hello",
+ "repo": "https://github.com/vietrux/main",
+ "owner": {
+ "username": "vietrux",
+ "email": "leviettrung.social@gmail.com"
+ },
+ "record": {
+ "CNAME": "vietrux.github.io"
+ }
+}
diff --git a/domains/turtle84375.json b/domains/turtle84375.json
new file mode 100644
index 000000000..0243892b1
--- /dev/null
+++ b/domains/turtle84375.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website for Turtle84375",
+ "repo": "https://github.com/turtle84375/turtle84375.is-a.dev",
+ "owner": {
+ "username": "Turtle84375",
+ "email": "turtle84375@programmer.net",
+ "guilded": "turtle84375"
+ },
+ "record": {
+ "CNAME": "turtle84375.github.io"
+ }
+}
diff --git a/domains/urduck.json b/domains/urduck.json
new file mode 100644
index 000000000..1918d7e4a
--- /dev/null
+++ b/domains/urduck.json
@@ -0,0 +1,15 @@
+{
+ "description": "MaskDuck's personal website!",
+ "repo": "https://github.com/maskducks/maskducks.github.io",
+ "owner": {
+ "username": "MaskDuck",
+ "email": "",
+ "discord": "MaskDuck#7325",
+ "twitter": "MaskDuck1",
+ "reddit": "u/maskduck",
+ "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586."
+ },
+ "record": {
+ "CNAME": "maskducks.github.io"
+ }
+}
diff --git a/domains/vadimhl.json b/domains/vadimhl.json
new file mode 100644
index 000000000..d4c5ae018
--- /dev/null
+++ b/domains/vadimhl.json
@@ -0,0 +1,10 @@
+{
+ "description": "My site",
+ "owner": {
+ "username": "vadimhl",
+ "email": "vadimhl@gmail.com"
+ },
+ "record": {
+ "A": ["130.61.49.110"]
+ }
+}
diff --git a/domains/vaibhav.json b/domains/vaibhav.json
new file mode 100644
index 000000000..ebfbf6622
--- /dev/null
+++ b/domains/vaibhav.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Vaibhav-Kashyap",
+ "email": "",
+ "discord": "Vaibhav Kashyap#5747"
+ },
+ "record": {
+ "A": ["35.186.245.55"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/vasharma05.json b/domains/vasharma05.json
new file mode 100644
index 000000000..99ba05d92
--- /dev/null
+++ b/domains/vasharma05.json
@@ -0,0 +1,11 @@
+{
+ "description": "A REACT developer and software enthusiast.",
+ "repo": "https://github.com/vasharma05/vasharma05.github.io",
+ "owner": {
+ "username": "vasharma05",
+ "email": "sharmava05@gmail.com"
+ },
+ "record": {
+ "CNAME": "vasharma05.github.io"
+ }
+}
diff --git a/domains/victoneux.json b/domains/victoneux.json
new file mode 100644
index 000000000..c2ae7a87e
--- /dev/null
+++ b/domains/victoneux.json
@@ -0,0 +1,11 @@
+{
+ "description": "victoneux's personal dev site",
+ "repo": "https://github.com/Victoneux/victoneux.github.io",
+ "owner": {
+ "username": "Victoneux",
+ "email": "victoneux@protonmail.com"
+ },
+ "record": {
+ "CNAME": "victoneux.github.io"
+ }
+}
diff --git a/domains/vinayak.json b/domains/vinayak.json
new file mode 100644
index 000000000..1e62273c0
--- /dev/null
+++ b/domains/vinayak.json
@@ -0,0 +1,12 @@
+{
+ "description": "Vinayak Kulkarni's Website",
+ "repo": "https://github.com/vinayakkulkarni/vinayakkulkarni.dev",
+ "owner": {
+ "username": "vinayakkulkarni",
+ "email": "inbox.vinayak@gmail.com",
+ "twitter": "_vinayak_k"
+ },
+ "record": {
+ "CNAME": "vinayakkulkarni.dev"
+ }
+}
diff --git a/domains/vishnu.json b/domains/vishnu.json
new file mode 100644
index 000000000..f2887686c
--- /dev/null
+++ b/domains/vishnu.json
@@ -0,0 +1,11 @@
+{
+ "description": "Vishnu's personal website",
+ "repo": "https://github.com/vishnu012/vishnu012.github.io",
+ "owner": {
+ "username": "vishnu012",
+ "email": "vishnu012@pm.me"
+ },
+ "record": {
+ "CNAME": "vishnu012.github.io"
+ }
+}
diff --git a/domains/vlab.json b/domains/vlab.json
new file mode 100644
index 000000000..5547a8b9d
--- /dev/null
+++ b/domains/vlab.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/natura4917/",
+ "owner": {
+ "username": "natura4917",
+ "email": "natura4917@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.216.65"]
+ }
+}
diff --git a/domains/wassim.json b/domains/wassim.json
new file mode 100644
index 000000000..73e182235
--- /dev/null
+++ b/domains/wassim.json
@@ -0,0 +1,11 @@
+{
+ "description": "Github profile of wassimbenzarti",
+ "repo": "https://github.com/wassimbenzarti",
+ "owner": {
+ "username": "wassimbenzarti",
+ "email": "wass11121996@gmail.com"
+ },
+ "record": {
+ "CNAME": "wassimbenzarti.github.io"
+ }
+}
diff --git a/domains/watercat.json b/domains/watercat.json
new file mode 100644
index 000000000..437bf48fd
--- /dev/null
+++ b/domains/watercat.json
@@ -0,0 +1,11 @@
+{
+ "description": "I am watercat",
+ "repo": "https://github.com/watercatuwu/watercatuwu.github.io",
+ "owner": {
+ "username": "watercatuwu",
+ "email": "watercat0330@gmail.com"
+ },
+ "record": {
+ "CNAME": "watercatuwu.github.io"
+ }
+}
diff --git a/domains/wbalaile.json b/domains/wbalaile.json
new file mode 100644
index 000000000..dce4b9dd4
--- /dev/null
+++ b/domains/wbalaile.json
@@ -0,0 +1,12 @@
+{
+ "description": "Professional Web Developer portfolio site for William Balaile.",
+ "repo": "https://github.com/wilby-mj/wbalaile-dev",
+ "owner": {
+ "username": "wilby-mj",
+ "email": "",
+ "twitter": "wilby_mj"
+ },
+ "record": {
+ "CNAME": "wilby-mj.github.io"
+ }
+}
diff --git a/domains/wcaleniekubaa.json b/domains/wcaleniekubaa.json
new file mode 100644
index 000000000..aa801cd1d
--- /dev/null
+++ b/domains/wcaleniekubaa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wcaleniekubaa",
+ "email": "to.nie.kubafn@gmail.com"
+ },
+ "record": {
+ "CNAME": "wcaleniekubaa.github.io"
+ }
+}
diff --git a/domains/web.json b/domains/web.json
index a4aad46f2..cac8f43f9 100644
--- a/domains/web.json
+++ b/domains/web.json
@@ -4,6 +4,6 @@
"email": "lellis2x@gmail.com"
},
"record": {
- "CNAME": "vmi629745.contaboserver.net"
+ "A": ["144.21.63.181"]
}
}
diff --git a/domains/webraku.json b/domains/webraku.json
new file mode 100644
index 000000000..4bf18ae95
--- /dev/null
+++ b/domains/webraku.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Nathan",
+ "email": "nathanaelhananta09@gmail.com"
+ },
+ "record": {
+ "CNAME": "storage-production.up.railway.app"
+ }
+}
diff --git a/domains/wesley.json b/domains/wesley.json
new file mode 100644
index 000000000..b0174f94b
--- /dev/null
+++ b/domains/wesley.json
@@ -0,0 +1,11 @@
+{
+ "description": "",
+ "repo": "https://github.com/westhecool/register",
+ "owner": {
+ "username": "westhecool",
+ "email": "wesley@wmail.eu.org"
+ },
+ "record": {
+ "CNAME": "cname.wdns.eu.org"
+ }
+}
diff --git a/domains/west.json b/domains/west.json
new file mode 100644
index 000000000..10af75107
--- /dev/null
+++ b/domains/west.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arslandoesdev",
+ "email": "239@duck.com"
+ },
+ "record": {
+ "CNAME": "arslandoesdev.github.io"
+ }
+}
diff --git a/domains/whine.json b/domains/whine.json
new file mode 100644
index 000000000..0ba3e78c8
--- /dev/null
+++ b/domains/whine.json
@@ -0,0 +1,22 @@
+{
+ "description": "whi_ne's personal site",
+ "repo": "https://github.com/whinee/whinee.github.io",
+ "owner": {
+ "username": "whinee",
+ "email": "",
+ "twitter": "whi_nyaan"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/william.json b/domains/william.json
new file mode 100644
index 000000000..21ad13d81
--- /dev/null
+++ b/domains/william.json
@@ -0,0 +1,24 @@
+{
+ "owner": {
+ "username": "WilliamDavidHarrison",
+ "email": "",
+ "twitter": "WDHarrison09",
+ "discord": "William#0001"
+ },
+
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json
new file mode 100644
index 000000000..f27c20197
--- /dev/null
+++ b/domains/win11.notaperson535.json
@@ -0,0 +1,11 @@
+{
+ "description": "My windows 11 in HTML",
+ "repo": "https://github.com/notAperson535/Win11-HTML",
+ "owner": {
+ "username": "notAperson535",
+ "email": "notAperson939@gmail.com"
+ },
+ "record": {
+ "CNAME": "notAperson535.github.io"
+ }
+}
diff --git a/domains/wired.json b/domains/wired.json
new file mode 100644
index 000000000..9fc9df298
--- /dev/null
+++ b/domains/wired.json
@@ -0,0 +1,12 @@
+{
+ "description": "This site is a little about me and some info soon",
+ "repo": "https://github.com/Wired-design/Wired-design.github.io",
+ "owner": {
+ "username": "Wired-design",
+ "email": "wireddesign@outlook.com",
+ "twitter": "Wired__Design"
+ },
+ "record": {
+ "CNAME": "wired-design.github.io"
+ }
+}
diff --git a/domains/xaxa.json b/domains/xaxa.json
new file mode 100644
index 000000000..294789ef7
--- /dev/null
+++ b/domains/xaxa.json
@@ -0,0 +1,11 @@
+{
+ "description": "Xaxa dev Website",
+ "repo": "https://github.com/333xaxa/333xaxa.github.io",
+ "owner": {
+ "username": "333xaxa",
+ "email": "xaxa_07x10@gmail.com"
+ },
+ "record": {
+ "CNAME": "333xaxa.github.io"
+ }
+}
diff --git a/domains/xiaolangkong.json b/domains/xiaolangkong.json
new file mode 100644
index 000000000..57b3d7618
--- /dev/null
+++ b/domains/xiaolangkong.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal site for my projects",
+ "repo": "https://github.com/xiaolangkong/xiaolangkong.github.io",
+ "owner": {
+ "username": "xiaolangkong",
+ "email": "xiaolangkong@protonmail.com"
+ },
+ "record": {
+ "CNAME": "xiaolangkong.github.io"
+ }
+}
diff --git a/domains/xkubsoneq.json b/domains/xkubsoneq.json
new file mode 100644
index 000000000..9e8b13d90
--- /dev/null
+++ b/domains/xkubsoneq.json
@@ -0,0 +1,12 @@
+{
+ "description": "About me.",
+ "repo": "https://github.com/xKubsoneQ",
+ "owner": {
+ "username": "xKubsoneQ",
+ "email": "",
+ "twitter": "undef1n3d_"
+ },
+ "record": {
+ "URL": "https://pomocnikbot.pl/dev/socials"
+ }
+}
diff --git a/domains/xryshirfxn.json b/domains/xryshirfxn.json
new file mode 100644
index 000000000..2a6d5e2aa
--- /dev/null
+++ b/domains/xryshirfxn.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/xryshirfxn/xryshirfxn.github.io",
+ "owner": {
+ "username": "xryshirfxn",
+ "email": "",
+ "twitter": "xryshirfxn"
+ },
+ "record": {
+ "CNAME": "xryshirfxn.github.io"
+ }
+}
diff --git a/domains/xyter.json b/domains/xyter.json
new file mode 100644
index 000000000..bd1433864
--- /dev/null
+++ b/domains/xyter.json
@@ -0,0 +1,11 @@
+{
+ "description": "Xyter an discord.js bot developed by students.",
+ "repo": "https://github.com/ZynerOrg/xyter",
+ "owner": {
+ "username": "VermiumSifell",
+ "email": "vermium@zyner.org"
+ },
+ "record": {
+ "URL": "https://xyter.zyner.org/"
+ }
+}
diff --git a/domains/yahya-rabii.json b/domains/yahya-rabii.json
new file mode 100644
index 000000000..48a137f1d
--- /dev/null
+++ b/domains/yahya-rabii.json
@@ -0,0 +1,10 @@
+{
+ "description": "MY PP website",
+ "owner": {
+ "username": "Yahya-rabii",
+ "email": "rabiiyahya1@gmail.com"
+ },
+ "record": {
+ "CNAME": "yahya-rabii.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/yanmaker.json b/domains/yanmaker.json
new file mode 100644
index 000000000..09f2bd9ab
--- /dev/null
+++ b/domains/yanmaker.json
@@ -0,0 +1,11 @@
+{
+ "description": "My about me website",
+ "repo": "https://github.com/YanMaker/YanMaker",
+ "owner": {
+ "username": "YanMaker",
+ "email": "whodis2022@outlook.com"
+ },
+ "record": {
+ "CNAME": "yanmaker.github.io"
+ }
+}
diff --git a/domains/yashas.json b/domains/yashas.json
new file mode 100644
index 000000000..0aab88392
--- /dev/null
+++ b/domains/yashas.json
@@ -0,0 +1,11 @@
+{
+ "description": "yashas.is-a.dev.",
+ "repo": "https://github.com/yashas9492",
+ "owner": {
+ "username": "Yashas9492",
+ "email": "yashas.codes@gmail.com"
+ },
+ "record": {
+ "CNAME": "yashas9492.github.io"
+ }
+}
diff --git a/domains/yescyyt.json b/domains/yescyyt.json
new file mode 100644
index 000000000..9a9232752
--- /dev/null
+++ b/domains/yescyyt.json
@@ -0,0 +1,12 @@
+{
+ "description": "yescyyt's website (duh)",
+ "repo": "https://github.com/yescyyt/yescyyt.github.io",
+ "owner": {
+ "username": "yescyyt",
+ "email": "amberisamab@gmail.com",
+ "twitter": ""
+ },
+ "record": {
+ "CNAME": "yescyyt.github.io"
+ }
+}
diff --git a/domains/yuk7.json b/domains/yuk7.json
new file mode 100644
index 000000000..ee1c875ee
--- /dev/null
+++ b/domains/yuk7.json
@@ -0,0 +1,11 @@
+{
+ "description": "yuk7 personal website",
+ "repo": "https://github.com/yuk7/yuk7.github.io",
+ "owner": {
+ "username": "yuk7",
+ "email": "yukx00@gmail.com"
+ },
+ "record": {
+ "CNAME": "yuk7.github.io"
+ }
+}
diff --git a/domains/mieruko.json b/domains/yurikawa.json
similarity index 63%
rename from domains/mieruko.json
rename to domains/yurikawa.json
index 15ef9d578..6620f4bf7 100644
--- a/domains/mieruko.json
+++ b/domains/yurikawa.json
@@ -6,6 +6,11 @@
"email": "kaskus45@protonmail.com"
},
"record": {
- "CNAME": "98b264e3-8b45-42a0-a4f0-891c2d536f7b.id.repl.co"
+ "A": [
+ "164.132.74.251",
+ "164.132.75.251",
+ "164.132.76.251",
+ "164.132.77.251"
+ ]
}
}
diff --git a/domains/yuukari.json b/domains/yuukari.json
new file mode 100644
index 000000000..c6ec01c32
--- /dev/null
+++ b/domains/yuukari.json
@@ -0,0 +1,12 @@
+{
+ "description": "My dev homepage, which I have publish info about me, pet/commercial projects, etc.",
+ "repo": "https://github.com/Yuukari/yuukari.github.io",
+ "owner": {
+ "username": "Yuukari",
+ "email": "yuukarichan@yandex.com",
+ "telegram": "@iamyuukari"
+ },
+ "record": {
+ "CNAME": "yuukari.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/zero.json b/domains/zero.json
new file mode 100644
index 000000000..c7af9f358
--- /dev/null
+++ b/domains/zero.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal developer portfolio.",
+ "repo": "https://github.com/CoderPopCat/coderpopcat.github.io",
+ "owner": {
+ "username": "CoderPopCat",
+ "email": "zerotwo@popcat.xyz"
+ },
+ "record": {
+ "CNAME": "coderpopcat.github.io"
+ }
+}
diff --git a/domains/zerotwo.json b/domains/zerotwo.json
index 155bc7092..191503615 100644
--- a/domains/zerotwo.json
+++ b/domains/zerotwo.json
@@ -1,11 +1,11 @@
{
- "description": "The site for ZeroTwo's docs.",
- "repo": "https://github.com/ZeroTwoDev",
+ "description": "landing site for zerotwo, the discord bot.",
+ "repo": "https://github.com/ZeroTwoDiscord/zerotwodiscord.github.io",
"owner": {
- "username": "ZeroTwoDev",
- "email": "halil_ismail@yahoo.com"
+ "username": "ConnorDoesDev",
+ "email": "connordoesdev@gmail.com / connor@zerotwo.sytes.net"
},
"record": {
- "CNAME": "zerotwodev.github.io"
+ "CNAME": "zerotwodiscord.github.io"
}
}
diff --git a/domains/zishan.json b/domains/zishan.json
new file mode 100644
index 000000000..d49be3d94
--- /dev/null
+++ b/domains/zishan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "notzishan",
+ "discord": "LukeLy#8025",
+ "email": "rizwankhan28081979@gmail.com"
+ },
+ "record": {
+ "CNAME": "542e524c-fe94-4ee5-b51a-7ef228234d95.id.repl.co"
+ }
+}
diff --git a/domains/ziue.json b/domains/ziue.json
new file mode 100644
index 000000000..808003d65
--- /dev/null
+++ b/domains/ziue.json
@@ -0,0 +1,11 @@
+{
+ "description": "Link to my github",
+ "owner": {
+ "username": "ziuee",
+ "email": "",
+ "discord": "ziue#8495"
+ },
+ "record": {
+ "CNAME": "ziuee.github.io"
+ }
+}
diff --git a/domains/zuhaib.json b/domains/zuhaib.json
new file mode 100644
index 000000000..87319d500
--- /dev/null
+++ b/domains/zuhaib.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio",
+ "repo": "https://github.com/powrhouseofthecell/powrhouseofthecell.github.io",
+ "owner": {
+ "username": "powrhouseofthecell",
+ "email": "theshahzuhaib96@gmail.com"
+ },
+ "record": {
+ "CNAME": "powrhouseofthecell.github.io"
+ }
+}
diff --git a/domains/zyrouge.json b/domains/zyrouge.json
index 71c70e27d..b40bed2e7 100644
--- a/domains/zyrouge.json
+++ b/domains/zyrouge.json
@@ -5,6 +5,6 @@
"twitter": "_zyrouge_"
},
"record": {
- "CNAME": "05ea616c-76a5-49f2-a7ab-448a31700949.repl.co"
+ "CNAME": "zyrouge.github.io"
}
}
diff --git a/domains/zyztem.json b/domains/zyztem.json
new file mode 100644
index 000000000..51db72c1e
--- /dev/null
+++ b/domains/zyztem.json
@@ -0,0 +1,12 @@
+{
+ "description": "zyztems social site",
+ "repo": "https://github.com/zyztem/zyztem.github.io",
+ "owner": {
+ "username": "zyztem",
+ "email": "zyztembuisness@gmail.com",
+ "twitter": "zyztem_"
+ },
+ "record": {
+ "CNAME": "zyztem.github.io"
+ }
+}
diff --git a/scripts/register-domains.js b/scripts/register-domains.js
index 3f1a5a894..56a1f2688 100644
--- a/scripts/register-domains.js
+++ b/scripts/register-domains.js
@@ -17,7 +17,7 @@ const toHostList = R.chain(data => {
ttl: TTL,
...(recordType === 'MX' ? { priority: index + 20 } : {})
}))
- , rs);
+ , rs);
});
const registerDomains = async ({ domainService, getDomains, log = () => { } }) => {
diff --git a/tests/validations.test.js b/tests/validations.test.js
index d4c6806e0..cc4b7bc02 100644
--- a/tests/validations.test.js
+++ b/tests/validations.test.js
@@ -55,6 +55,9 @@ describe('validateDomainData', () => {
{ ...defaultDomain, record: { CNAME: 'foobar.com', MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } },
...INVALID_NAMES.map(name => ({ ...defaultDomain, name })).slice(0, 1),
{ ...defaultDomain, record: { TXT: ['foobar wow nice!!!'] } },
+ { ...defaultDomain, name: 'a.b' },
+ { ...defaultDomain, name: 'ww2.baa' },
+ { ...defaultDomain, name: 'help.baa' },
];
const validCases = [
@@ -73,6 +76,8 @@ describe('validateDomainData', () => {
{ ...defaultDomain, record: { MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } },
{ ...defaultDomain, record: { TXT: 'foobar wow nice!!!' } },
{ ...defaultDomain, record: { A: ['1.1.1.1'], MX: ['mx1.example.com'] } },
+ { ...defaultDomain, name: 'gogo.foo.bar' },
+ { ...defaultDomain, name: 'ww9.baa' },
];
it('should return false for invalid data', () => {
diff --git a/utils/domain-service.js b/utils/domain-service.js
index 14112d484..28504f0fd 100644
--- a/utils/domain-service.js
+++ b/utils/domain-service.js
@@ -44,7 +44,8 @@ const recordToEmailMx = ({ name, address, priority }) => ({
priority,
})
-const getHostKey = host => `${host.name}##${host.type}##${host.address}`;
+const getHostKey = host =>
+ `${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`;
const diffRecords = (oldRecords, newRecords) => {
const isMatchingRecord = (a, b) => getHostKey(a) === getHostKey(b);
diff --git a/utils/get-domain.js b/utils/get-domain.js
index af6ba5ec1..d6529032d 100644
--- a/utils/get-domain.js
+++ b/utils/get-domain.js
@@ -5,12 +5,12 @@ const {DOMAINS_PATH} = require('./constants');
const toDomain = str => path.join(DOMAINS_PATH, str);
-const parseDomain = str => {
+const parseDomain = name => str => {
try {return JSON.parse(str);}
- catch (e) {throw new Error("Error: Cant parse " + str);}
+ catch (e) {throw new Error(`Error: Cant parse ${name} => ${str}`);}
};
-const toDomainData = R.compose(parseDomain, R.toString, fs.readFileSync, toDomain);
+const toDomainData = name => R.compose(parseDomain(name), R.toString, fs.readFileSync, toDomain)(name);
const getDomains = () =>
fs.promises.readdir(DOMAINS_PATH, {})
diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json
index 4c49294be..45599ab2e 100644
--- a/utils/invalid-domains.json
+++ b/utils/invalid-domains.json
@@ -5,6 +5,7 @@
"noreply",
"notifications",
"notification",
+ "_acme-challenge",
"ww1",
"ww2",
"ww3",
diff --git a/utils/validations.js b/utils/validations.js
index 67a8d3df5..057aa4173 100644
--- a/utils/validations.js
+++ b/utils/validations.js
@@ -5,7 +5,7 @@ const INVALID_NAMES = require('./invalid-domains.json');
const isValidURL = and([R.is(String), testRegex(/^https?:\/\//ig)]);
-const isValidDomain = and([R.is(String), testRegex(/^(([a-z0-9\-]+)\.)+[a-z]+$/ig)]);
+const isValidDomain = and([R.is(String), testRegex(/^(([a-z0-9-]+)\.)+[a-z]+$/ig)]);
const validateCnameRecord = type => and([
R.propIs(String, type),
@@ -27,13 +27,19 @@ const validateMXRecord = type => and([
const validateDomainData = validate({
name: {
- reason: 'The name of the file is invalid. It must be lowercased, alphanumeric and more than 2 characters long',
+ reason: 'The name of the file is invalid. It must be lowercased, alphanumeric and each component must be more than 2 characters long',
fn: or([
R.equals('@'),
and([
- R.compose(between(2, 100), R.length),
- testRegex(/^[a-z0-9-]+$/g),
- R.complement(R.includes(R.__, INVALID_NAMES)),
+ R.is(String),
+ R.compose(
+ R.all(and([
+ R.compose(between(2, 100), R.length),
+ testRegex(/^[a-z0-9-]+$/g),
+ R.complement(R.includes(R.__, INVALID_NAMES)),
+ ])),
+ R.split('.'),
+ ),
])
]),
},