mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-26 10:00:32 +00:00
Merge branch 'is-a-dev:main' into main
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
To make our job easier, please spend time to review your application before submitting.
|
||||
|
||||
<!-- To check a checkbox, replace [] with [x] -->
|
||||
|
||||
- [ ] You're not using Vercel or Netlify.
|
||||
- [ ] You have completed your website, there's no type of placeholder at the website. **This requirement can be raised if the domain you're registering is for emails**
|
||||
- Link to website:
|
||||
- [ ] The website is reachable.
|
||||
- [ ] The CNAME record doesn't contain any slash.
|
||||
- [ ] There's enough information at the `owner` field.
|
||||
- You should have your email presented. If you don't want to share email, you can leave email an empty string (`""`) and add any other social such as Discord/Twitter/etc.
|
||||
|
||||
|
||||
<!-- Feel free to join the discord server for any help to talk to other developers :) - https://discord.gg/PZCGHz4RhQ -->
|
||||
@@ -8,12 +8,12 @@
|
||||
|
||||
|
||||
## How do I register?
|
||||
* 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
|
||||
* After merging, the changes will take effect within a day
|
||||
* That's it! Done! Now go show off your cool `.is-a.dev` domain
|
||||
* [Fork](https://github.com/is-a-dev/register/fork) this repository.
|
||||
* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev`.
|
||||
* [Read the docs](https://docs.is-a.dev).
|
||||
* The PR will be reviewed and merged.
|
||||
* After merging, the changes will take effect within a day!
|
||||
* That's it! Done! Now go show off your cool `.is-a.dev` domain!
|
||||
|
||||
|
||||
|
||||
@@ -40,10 +40,10 @@ You should also checkout -
|
||||
|
||||
## Uptime
|
||||
|
||||

|
||||

|
||||
[](https://stats.uptimerobot.com/zY4XKIRVzw)
|
||||
[](https://stats.uptimerobot.com/zY4XKIRVzw)
|
||||
|
||||
You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw)
|
||||
You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw).
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
# How to register
|
||||
You can read the [domains.json file api reference](./domains-json.md) for more information about the json file structure.
|
||||
|
||||
### Websites hosted at
|
||||
* [For github pages users](./hosted-at/github-pages.md)
|
||||
* [For hashnode blogs](./hosted-at/hashnode.md)
|
||||
* [For other services](./hosted-at/others.md)
|
||||
|
||||
### Vercel & Netlify Note
|
||||
You will encounter an SSL certificate issue when using Vercel and Netlify. Neither service will work with our domains. It is recommend to use [Github Pages](https://github.com/is-a-dev/register/blob/add-hosting-warning/docs/hosted-at/github-pages.md) or [Railway](https://railway.app/) instead.
|
||||
@@ -1,113 +0,0 @@
|
||||
# Domains json file
|
||||
The way you register your own domain name is through a pull request.
|
||||
To register `my-domain.is-a.dev`, you need to create a `domains/my-domain.json` file
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
The file needs to have the following fields -
|
||||
|
||||
### owner (required)
|
||||
You need to specify some information about yourself here.
|
||||
This is so that you can be contacted if required.
|
||||
|
||||
In the owner object, the fields `username` and `email` are required. You can however add more information in this object if you need.
|
||||
```json
|
||||
{
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
If you don't wish to share your email address here, please share your twitter, discord or any other social media account.
|
||||
```json
|
||||
{
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "",
|
||||
"twitter": "twitter-handle"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### description
|
||||
Describe your domain name and your usage. This is purely for documentation purpose and is optional.
|
||||
|
||||
|
||||
### repo
|
||||
This is a link to your website repository or your github account. This is purely for documentation purpose and is optional.
|
||||
|
||||
|
||||
### record (required)
|
||||
This is where you specify the DNS records you wish to use.
|
||||
|
||||
The supported record types are: `CNAME`, `A`, `URL`, `MX` and `TXT`
|
||||
|
||||
Here's a few different use cases for the given record types -
|
||||
|
||||
* **CNAME**
|
||||
CNAME must be a host name (Eg - `something.tld`). CNAME cannot be used in conjunction with any other record types.
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"CNAME": "username.github.io"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **A record**
|
||||
A record must be a list of ips
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"A": [
|
||||
"999.999.991.999",
|
||||
"999.999.992.999",
|
||||
"999.999.993.999",
|
||||
"999.999.994.999"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **URL redirection**
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"URL": "https://my-other-website.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **MX**
|
||||
MX must be a list of host names
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
"mx2.improvmx.com"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **TXT**
|
||||
TXT can be any string value. **You can only have 1 TXT record.**
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"TXT": "hello world"
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -1,28 +0,0 @@
|
||||
# For github pages
|
||||
|
||||
### Creating a github pages repo
|
||||
You can create a github pages website by creating a repo with the name `<your-github-username>.github.io`.
|
||||
For more information about github pages, please read through [their guide](https://guides.github.com/features/pages/).
|
||||
|
||||
|
||||
### Domains file
|
||||
Create a json file inside the `domains` directory (`domains/<subdomain>.json`) with the following contents
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/github-username/github-username.github.io",
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email",
|
||||
"twitter": "your-twitter-username"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "<replace-this-with-your-github-username>.github.io"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Configuring your repo
|
||||
* After the pull request is merged, you will see a 404 error on `your-domain.is-a.dev`. To fix this go to your github page repo's `Settings > Github pages > Custom domain` and add `your-domain.is-a.dev` in the given field
|
||||
* Check the `Enforce HTTPS` checkbox below the custom domain input
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
When you create your Hashnode blog, hashnode provides a free **yourdomain.hashnode.dev** subdomain for you. However, you can set up your own **.is-a.dev** subdomain.
|
||||
|
||||
In this guide, you will learn how to accomplish this.
|
||||
|
||||
---
|
||||
|
||||
1. Log in to your Hashnode account.
|
||||
|
||||
2. Click on your **profile picture** at the bottom-left corner of the page on *desktop* screen or top-right corner on *mobile* screen.
|
||||
|
||||

|
||||
|
||||
3. Click on the **Blog Dashboard** option from the popup modal to access your blog's dashboard.
|
||||
|
||||

|
||||
|
||||
4. Navigate to the **DOMAIN** tab and enter your domain without the **www** or **https://** prefix in the text field provided. Then click on the **Update** button to proceed.
|
||||
|
||||

|
||||
|
||||
5. Go To Your Fork Of The `is-a-dev/register` repo, edit your subdomain's JSON file, make sure you remove any old records, then add this:
|
||||
```json
|
||||
"CNAME": "hashnode.network"
|
||||
```
|
||||
|
||||
Once Done, your hashnode blog is setup to use your subdomain, all you have to do is wait sometime for the DNS to propogate. These changes could take from 1 hour to around 48 hours, so please be patient, It'll most likely be ready within a hour.
|
||||
Enjoy Your Hashnode Blog, With Your Sweet `.is-a.dev` Subdomain! **If You Need More Help:** please read this support article on hashnode support: https://support.hashnode.com/docs/mapping-domain/, this should help you more, if you need more help related to [Hashnode](https://hashnode.com), then please visit the [Hashnode Support Center](https://support.hashnode.com/). Remeber, is-a.dev has no links with hashnode, so please do not create issues on our github, saying that your hashnode blog is having issues, we simply will not respond to them.
|
||||
@@ -1,53 +0,0 @@
|
||||
# For other hosting services
|
||||
|
||||
### Domains file
|
||||
Create a json file inside the `domains` directory (`domains/<subdomain>.json`) with the following contents
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/github-username",
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email"
|
||||
},
|
||||
"record": {}
|
||||
}
|
||||
```
|
||||
|
||||
### Record
|
||||
In your `record` key of the json file, you need to add one of the following -
|
||||
* CNAME record
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"CNAME": "the-domain-you-own.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* A records
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"A": [
|
||||
"69.69.69.69",
|
||||
"69.69.69.70"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* URL redirection
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"URL": "https://your-website.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Configuring your server
|
||||
After the pull request is merged, **configure your server** (apache, nginx, whatever) to work with `<subdomain>.is-a.dev`. If you are unsure how to configure your server, you can create an issue for support.
|
||||
|
||||
You should also, include `<subdomain>.is-a.dev` in your **ssl certificate** to get rid of certificate errors
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
# Reviewing pull requests
|
||||
There are a few things you'll need to look out for when reviewing pull requests for domain registrations. This list is not exhaustive and will be updated.
|
||||
|
||||
---
|
||||
|
||||
### CI errors
|
||||
A lot of minor issues will be caught in the CI checks
|
||||
* JSON parsing issues
|
||||
* Schema issues
|
||||
|
||||
If the CI is failing, tag the user and comment on the pr.
|
||||
|
||||
---
|
||||
|
||||
### Contents of the website
|
||||
We need to make sure that the contents being hosted via the record being registered is not used for malicious purposes.
|
||||
To do this, we must try our best to verify the contents of website and if required ask some questions regarding the contents in the PR.
|
||||
|
||||
---
|
||||
|
||||
### Invalid email/social link
|
||||
A way to contact the user is important in case we need to inform the users of some changes to the project.
|
||||
Confirm if the email looks valid or the social user name/link works.
|
||||
The user should have either an email or a valid social link.
|
||||
|
||||
❌ `"owner": { "username": "gh-username" }` is invalid as it doesn't contain an email or any social links
|
||||
|
||||
❌ `"email": "28372878+user-name@users.noreply.github.com"` is invalid as the email cannot be used
|
||||
|
||||
✅ `"owner": { "username": "phenax", "twitter": "twitter-username" }` is valid as it contains a social link
|
||||
|
||||
✅ `"owner": { "username": "phenax", "email": "email@gmail.com" }` is valid as it contains an email
|
||||
|
||||
---
|
||||
|
||||
### Invalid CNAME
|
||||
CNAME has to be a hostname. Something like `example.com`.
|
||||
|
||||
❌ `http://example.com` is invalid as it contains a protocol `https://`
|
||||
|
||||
❌ `example.com/some/path` is invalid as it contains the path name `/some/path`
|
||||
|
||||
✅ `example.com` is valid as it is the hostname of the website
|
||||
|
||||
---
|
||||
|
||||
### Invalid A
|
||||
A record has to be an array of ips.
|
||||
|
||||
❌ `"A": "211.211.211.211"` is invalid as it must be an array
|
||||
|
||||
❌ `"A": ["example.com"]` is invalid as it is not an ip address
|
||||
|
||||
✅ `"A": ["211.211.211.211", "211.211.211.212"]` is valid as it is an array of ips
|
||||
|
||||
---
|
||||
|
||||
### Invalid URL
|
||||
The URL must have a protocol (`http://` or `https://`) and must be something like `https://example.com` or `https://example.com/some/path`.
|
||||
|
||||
❌ `example.com` is invalid as it doesn't contain the protocol
|
||||
|
||||
✅ `https://example.com/some/path` is valid as it contains a protocol
|
||||
|
||||
---
|
||||
|
||||
### Only one record type
|
||||
Earlier, is-a-dev used to allow for handling https redirections along with CNAME but the way we handle requests has changed since then.
|
||||
This is why a record file can only contain one record type. Either `CNAME` or `A` or `URL`.
|
||||
|
||||
❌ `"CNAME": "example.com", "URL": "https://something.com"` is invalid as it should only contain one type of record, either CNAME or URL.
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
# Publishing records
|
||||
> NOTE: This is only for maintainers with publishing access
|
||||
|
||||
Currently, the records are published using a manual github actions workflow.
|
||||
When all the PR's are merged and ready, go to `Actions > Publish records` and click on the `Run workflow` button to publish the merged records.
|
||||
|
||||
|
||||
|
||||
Sometimes it may log an error message while publishing saying some record(s) couldn't be published.
|
||||
Usually, the cause is related to some conflict while deleting and re-publishing.
|
||||
In those situations, running the workflow again will fix the issues.
|
||||
+2
-1
@@ -6,6 +6,7 @@
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
"URL": "http://www.is-a.dev",
|
||||
"TXT": "google-site-verification=D3irdQ7pd-lyVSPbjEJEAWILcploozBksfNWNuqKd9U"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Shinyzenith",
|
||||
"email": "xelphlinux@gmail.com"
|
||||
"email": "aakashsensharma@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "shinyzenith.github.io"
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "adistar964",
|
||||
"email": "adistar964@gmail.com"
|
||||
},
|
||||
"description":"this is for my personal website made.",
|
||||
"record": {
|
||||
"CNAME": "adistar964.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Personal portfolio written in HTML and JS",
|
||||
"repo": "https://github.com/abhint/abhint.github.io",
|
||||
"owner": {
|
||||
"username": "abhint",
|
||||
"email": "notifyabhijith@gmail.com",
|
||||
"twitter": "abhint6"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abhint.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Abku personal website.",
|
||||
"repo": "https://github.com",
|
||||
"owner": {
|
||||
"username": "Abku",
|
||||
"email": "abku@abku.xyz"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://abku.xyz"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My personal website",
|
||||
"repo": "https://github.com/abysmal26/abysmal26.github.io",
|
||||
"owner": {
|
||||
"username": "abysmal26",
|
||||
"email": "abysmal26@tuta.io",
|
||||
"twitter": "abysmal26"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abysmal26.github.io"
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,6 @@
|
||||
"email": "agam778@zohomail.in"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "agamsblog.xyz"
|
||||
"CNAME": "agamsblog.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ahysa Discord bot website",
|
||||
"repo": "https://github.com/andgyk/ahysa",
|
||||
"owner": {
|
||||
"username": "andgyk",
|
||||
"email": "an4g7k@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ahysa.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ConnorDoesDev",
|
||||
"email": "connor@cstudios.gay",
|
||||
"discord": "Connor!#0800"
|
||||
},
|
||||
"description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.",
|
||||
"record": {
|
||||
"CNAME": "connordoesdev.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -1,10 +1,11 @@
|
||||
{
|
||||
"repo": "https://github.com/amjad-ah/amjad-ah.github.io",
|
||||
"owner": {
|
||||
"username": "amjad-ah",
|
||||
"email": "amjad_ah_@hotmail.com",
|
||||
"tiwtter": "amjad_ah_"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "hashnode.network"
|
||||
"CNAME": "amjad-ah.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "amuffins website",
|
||||
"repo": "https://github.com/amagicmuffin/amagicmuffin.github.io",
|
||||
"owner": {
|
||||
"username": "amagicmuffin",
|
||||
"email": "2014wcheng@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "amagicmuffin.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Amy's is-a-dev domain",
|
||||
"repo": "https://github.com/nullishamy/nullishamy.github.io",
|
||||
"owner": {
|
||||
"username": "nullishamy",
|
||||
"email": "amycodes@null.net"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "nullishamy.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "andgyk website",
|
||||
"repo": "https://github.com/andgyk/andgyk.github.io",
|
||||
"owner": {
|
||||
"username": "andgyk",
|
||||
"email": "an4g7k@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "andgyk.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io",
|
||||
"description": "My personal website.",
|
||||
"owner": {
|
||||
"username": "annihilatorrrr",
|
||||
"email": "annihilatorspark@gmail.com",
|
||||
"telegram": "annihilatorrrr"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "annihilatorrrr.github.io"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@
|
||||
"email": "contact@mail.arman.is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "itzarman09.github.io"
|
||||
"A": ["89.106.200.1"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Aspect404_'s Website",
|
||||
"owner": {
|
||||
"username": "Aspect-404",
|
||||
"email": "newaspectdevelopment@gmail.com",
|
||||
"discord": "807361766572818484",
|
||||
"twitter": "Aspect404_"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "e070f94f-3589-4c49-ac40-baa97dea6ccd.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "@is-a-dev/maintainers",
|
||||
"email": "mahir@molai.dev"
|
||||
},
|
||||
"record": {
|
||||
"A": ["199.36.158.100"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
"email": "contact@mail.badboy.is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "a.redirect.pizza"
|
||||
"URL": "https://badboy.is-a.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "The documentation website for Ball discord bot.",
|
||||
"owner": {
|
||||
"username": "MouseMoosz",
|
||||
"email": "mousemoosz@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mousemoosz.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lukas-batema",
|
||||
"email": "lukasbatema@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://batemadevelopment.com/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "padlocks",
|
||||
"email": "",
|
||||
"twitter": "WeDoBeeVibing",
|
||||
"discord": "bee!#0001"
|
||||
},
|
||||
"description": "Commission website and links to my social medias.",
|
||||
"record": {
|
||||
"CNAME": "enbee.carrd.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ReBlast",
|
||||
"email": "",
|
||||
"discord": "Blast#9400"
|
||||
},
|
||||
"description": "Personal website with links to my social medias, will probably add portfolio",
|
||||
"record": {
|
||||
"CNAME": "reblast.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"repo": "https://github.com/YouFoundAlpha/blog",
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "",
|
||||
"twitter": "YouFoundAlpha",
|
||||
"discord": "YouFoundAlpha#5372"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "youfoundalpha.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "My modern calculator",
|
||||
"repo": "https://github.com/notAperson535/moderncalculator",
|
||||
"owner": {
|
||||
"username": "notAperson535",
|
||||
"email": "notAperson939@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "notAperson535.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Invites Bot Site",
|
||||
"repo": "https://catsarecoo.github.io/",
|
||||
"owner": {
|
||||
"username": "catsarecoo",
|
||||
"email": "twistedpandora91@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "catsarecoo.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Coffeebank",
|
||||
"owner": {
|
||||
"username": "coffeebank",
|
||||
"email": "coffeebank-is-a-dev@catdev.anonaddy.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://coffeebank.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"repo": "https://github.com/YouFoundAlpha/cdn",
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "",
|
||||
"twitter": "YouFoundAlpha",
|
||||
"discord": "YouFoundAlpha#5372"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "youfoundalpha.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Chang Liu's Personal Website",
|
||||
"repo": "https://github.com/changbobbyliu/changbobbyliu.github.io",
|
||||
"owner": {
|
||||
"username": "changbobbyliu",
|
||||
"email": "changbobbyliu@gmail.com",
|
||||
"twitter": "changliuisadev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "changbobbyliu.github.io"
|
||||
}
|
||||
}
|
||||
+10
-14
@@ -1,14 +1,10 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
{
|
||||
"owner": {
|
||||
"username": "SX-9",
|
||||
"email": "satriakrach@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Chloe's is-a-dev domain",
|
||||
"repo": "https://github.com/chlomne/chlomne.github.io",
|
||||
"owner": {
|
||||
"username": "chlomne",
|
||||
"email": "",
|
||||
"discord": "Saphixa#7272"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "chlomne.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "portefolio website",
|
||||
"repo": "https://github.com/cindynatorella/cindynatorella.github.io",
|
||||
"owner": {
|
||||
"username": "cindynatorella",
|
||||
"email": "cindy.e.roullet@gmail.com"
|
||||
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cindynatorella.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "DaInfLoop",
|
||||
"email": "backupharoongames100@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
"mx2.improvmx.com"
|
||||
],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "hi! i am deliable, a developer. i love minecraft.",
|
||||
"owner": {
|
||||
"username": "Deliable",
|
||||
"email": "rbstsoul@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "5e125b8d47-hosting.gitbook.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "An awesome portfolio site for Dheirya Tyagi",
|
||||
"repo": "https://github.com/Dheirya/dheiryaweb",
|
||||
"owner": {
|
||||
"username": "Dheirya",
|
||||
"email": "mail@socialrumbles.com",
|
||||
"twitter": "fellow_doge"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dheirya.pages.dev"
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -7,6 +7,7 @@
|
||||
"twitter": "DEV_DIBSTER"
|
||||
},
|
||||
"record": {
|
||||
"A": ["192.95.42.74"]
|
||||
"A": ["192.95.42.74"],
|
||||
"TXT": "zoho-verification=zb87142129.zmverify.zoho.eu"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Divyam's personal website",
|
||||
"repo": "https://github.com/DivyamAhuja/divyamahuja.github.io",
|
||||
"owner": {
|
||||
"username": "DivyamAhuja",
|
||||
"email": "ahujadivyam@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "divyamahuja.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Documentation website for is-a-dev/register",
|
||||
"repo": "MouseMoosz/is-a-dev-docs",
|
||||
"owner": {
|
||||
"username": "@is-a-dev/maintainers",
|
||||
"email": "mahir@molai.dev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mousemoosz.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Donkas's personal developer website",
|
||||
"repo": "https://github.com/donkaos501",
|
||||
"owner": {
|
||||
"username": "Donkaos",
|
||||
"email": "donkaos501@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "is-a.dev.donkaos.de"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Dunkan",
|
||||
"owner": {
|
||||
"username": "dcdunkan",
|
||||
"email": "",
|
||||
"twitter": "dcdunkan"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://github.com/dcdunkan"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "emofy website",
|
||||
"owner": {
|
||||
"username": "abkux",
|
||||
"email": "abku@abku.xyz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abkux.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Eric Thomas' Portfolio",
|
||||
"repo": "https://github.com/ericthomasca",
|
||||
"owner": {
|
||||
"username": "ericthomasca",
|
||||
"email": "eric@ericthomas.ca"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://ericthomas.ca"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My personal website",
|
||||
"repo": "https://github.com/ethxrnity/ethxrnity.github.io",
|
||||
"owner": {
|
||||
"username": "ethxrnity",
|
||||
"email": "ethxrnity@gmail.com",
|
||||
"twitter": "ethxrnity"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ethxrnity.github.io"
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"description": "Personal site and portfolio.",
|
||||
"repo": "https://github.com/ThingsOfFallen/Website",
|
||||
"description": "GitHub Profile redirect.",
|
||||
"repo": "https://github.com/TheFallenSpirit/TheFallenSpirit",
|
||||
"owner": {
|
||||
"username": "TheFallenSpirit",
|
||||
"email": "thefallenspirit@outlook.com",
|
||||
"twitter": "@FallenCodes"
|
||||
},
|
||||
"record": {
|
||||
"A": ["198.58.110.227"]
|
||||
"URL": "https://github.com/TheFallenSpirit"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My personal site",
|
||||
"repo": "https://github.com/FayasNoushad/fayasnoushad.github.io",
|
||||
"owner": {
|
||||
"username": "FayasNoushad",
|
||||
"email": "",
|
||||
"twitter": "FayasNoushad"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "FayasNoushad.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Hey! I'm Florian",
|
||||
"repo": "https://github.com/florianheysen/heysen.fr",
|
||||
"owner": {
|
||||
"username": "florianheysen",
|
||||
"email": "florian.heysen@gmail.com",
|
||||
"twitter": "florianheysen"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "heysen.fr"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"description": "Now that's a spicy 404 page!",
|
||||
"repo": "https://github.com/frankie-tech/frankie-tech.github.io",
|
||||
"owner": {
|
||||
"username": "frankie-tech",
|
||||
"email": "",
|
||||
"twitter": "this_frankie"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "frankie-tech.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "frd.is-a.dev.",
|
||||
"repo": "https://github.com/superXdev/portfolio-next",
|
||||
"owner": {
|
||||
"username": "superXdev",
|
||||
"email": "fikrizhanking@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "vc-domain-verify=frd.is-a.dev,e04ccfeb28b2ba8ec702",
|
||||
"URL": "https://fikri.vercel.app"
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,6 @@
|
||||
"discord": "MaskDuck#7325"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "a.redirect.pizza"
|
||||
"CNAME": "edge.redirect.pizza"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "This website is a link to my personal developer portfolio.",
|
||||
"repo": "https://github.com/hardik-chandan/hardik-chandan.github.io",
|
||||
"owner": {
|
||||
"username": "hardik-chandan",
|
||||
"email": "hardikchandan4231@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "hardik-chandan.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "HighError Portfolio",
|
||||
"repo": "https://github.com/higherror/higherror.github.io",
|
||||
"owner": {
|
||||
"username": "higherror",
|
||||
"email": "hierrorua@gmail.com",
|
||||
"twitter": "higherrorua"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "higherror.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Hunter2809",
|
||||
"email": "auser929129@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"75.2.69.226"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ImMAils",
|
||||
"email": "anton140315@gmail.com",
|
||||
"discord": "I'mMAils#1238"
|
||||
},
|
||||
"description": "Why? To share my projects and other stuff. Like discord bot, node.js modules or even games!",
|
||||
"record": {
|
||||
"CNAME": "f0476060.xsph.ru"
|
||||
}
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
"description": "Infinite's personal portfolio!",
|
||||
"owner": {
|
||||
"username": "InfiniteCode",
|
||||
"email": "foxyss@pm.me"
|
||||
"email": "infinitecode@infiniteco.de"
|
||||
},
|
||||
"record": {
|
||||
"A": ["130.61.72.125"]
|
||||
"URL": "https://infiniteco.de"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "my website :)",
|
||||
"repo": "https://github.com/iop3/iop3.github.io",
|
||||
"owner": {
|
||||
"username": "iop3",
|
||||
"email": "iop3.is.epic@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "iop3.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "jamieisgeek.is-a.dev.",
|
||||
"repo": "https://github.com/jamieisgeek",
|
||||
"owner": {
|
||||
"username": "jamieisgeek",
|
||||
"email": "jamieisgeek@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://jamieisgeek.jamiecodes.repl.co/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Java's Website",
|
||||
"repo": "https://github.com/javascript-void0/javascript-void0.github.io",
|
||||
"owner": {
|
||||
"username": "javascript-void0",
|
||||
"email": "",
|
||||
"discord": "Java#3865"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "javascript-void0.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Nothing is easy in life when you aren't interested.",
|
||||
"repo": "https://github.com/jayantkageri/Website",
|
||||
"owner": {
|
||||
"username": "jayantkageri",
|
||||
"email": "jayantkageri@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://www.jayantkageri.in"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Jinso Raj",
|
||||
"repo": "https://github.com/jinsoraj",
|
||||
"owner": {
|
||||
"username": "jinsoraj",
|
||||
"email": "jinsoraj2000@gmail.com",
|
||||
"twitter": "@jinsoraj"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://jinsoraj.eu.org"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
"email": "TheBotlyNoob@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["35.230.85.45"],
|
||||
"A": ["185.199.108.153", "185.199.109.153", "185.199.111.153", "185.199.110.153"],
|
||||
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "For a personal website",
|
||||
"repo": "https://github.com/jrdrwn/jrdrwn.github.io",
|
||||
"owner": {
|
||||
"username": "jrdrwn",
|
||||
"email": "jordirwn@gmail.com",
|
||||
"twitter": "_jrdrwan"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "jrdrwn.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Hello I Made project JS World - A magical world where u can learn Java Script. I dont want to use js.org subdomain.",
|
||||
"repo": "https://js.fireurl.ga/",
|
||||
"owner": {
|
||||
"username": "pythoniaweb",
|
||||
"email": "gamerciter2@gmail.com",
|
||||
"twitter": "dont have"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "pythoniaweb.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Keith Khaotic's personal website link",
|
||||
"repo": "https://github.com/KeithKhaotic/KeithKhaotic.github.io",
|
||||
"owner": {
|
||||
"username": "KeithKhaotic",
|
||||
"email": "keithbussyness@gmail.com",
|
||||
"twitter": "@redrocker133"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "keithkhaotic.github.io"
|
||||
}
|
||||
}
|
||||
+2
-4
@@ -1,12 +1,10 @@
|
||||
{
|
||||
"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"
|
||||
"twitter": "Yash72274544"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "kekdais-adev-production.up.railway.app"
|
||||
"URL": "https://yashverma.me"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
"twitter": "kr_tukimi"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://kr-tukimi.com"
|
||||
"URL": "https://tuki.dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,6 +7,6 @@
|
||||
},
|
||||
"description": "I'll probably put some project pages on kunal.is-a.dev.",
|
||||
"record": {
|
||||
"CNAME": "hashnode.network"
|
||||
"CNAME": "kunalsingh19.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Leha's little part of the web",
|
||||
"repo": "https://github.com/leha-code/leha-code.github.io",
|
||||
"owner": {
|
||||
"username": "leha-code",
|
||||
"email": "pezleha@duck.com",
|
||||
"twitter" : "pezleha2"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "leha-code.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lime360",
|
||||
"email": "emeraldlime@protonmail.com",
|
||||
"discord": "lime360#3291"
|
||||
},
|
||||
|
||||
"description": "my website",
|
||||
"repo": "https://github.com/lime360/lime360.github.io",
|
||||
"record": {
|
||||
"CNAME": "lime360.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Lin's Blog",
|
||||
"repo": "https://github.com/linbuxiao/linbuxiao.github.io",
|
||||
"owner": {
|
||||
"username": "linbuxiao",
|
||||
"email": "linbuxiao@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "linbuxiao.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"repo": "https://github.com/YouFoundAlpha/link",
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"email": "",
|
||||
"twitter": "YouFoundAlpha",
|
||||
"discord": "YouFoundAlpha#5372"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "youfoundalpha.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Robert Blog",
|
||||
"repo": "https://github.com/robert-ds/robert-ds.github.io",
|
||||
"owner": {
|
||||
"username": "robert-ds",
|
||||
"email": "vasquez.robert.andres@gmail.com",
|
||||
"twitter": "@robertandres14"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "robert-ds.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "LoganTheDudeRox's custom development website.",
|
||||
"repo": "https://github.com/LoganLikesToCode/LoganLikesToCode.github.io",
|
||||
"owner": {
|
||||
"username": "LoganLikesToCode",
|
||||
"email": "logantheduderox@gmail.com",
|
||||
"twitter": "LoganTheDudeRox"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "LoganLikesToCode.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "This will be used for my portfolio.",
|
||||
"repo": "https://github.com/lonelil/lonelil.github.io",
|
||||
"owner": {
|
||||
"username": "lonelil",
|
||||
"discord": "lonelil#0001",
|
||||
"email": ""
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "lonelil.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Lukas' Developer Page!",
|
||||
"repo": "https://github.com/lukpopp0/lukpopp0.github.io",
|
||||
"owner": {
|
||||
"username": "LukPopp0",
|
||||
"email": "luk.popp0@gmail.com",
|
||||
"twitter": "@LukPopp0"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "lukpopp0.github.io"
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,7 @@
|
||||
"mx1.improvmx.com",
|
||||
"mx2.improvmx.com"
|
||||
],
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all"
|
||||
"TXT": "v=spf1 include:spf.improvmx.com ~all",
|
||||
"URL": "https://badboy.is-a.dev/contact"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "themalware",
|
||||
"email": "daredevil.vikrant@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "themalware.tk"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Marc Gruita is a Developer!",
|
||||
"repo": "https://github.com/marcgr9",
|
||||
"owner": {
|
||||
"username": "marcgr9",
|
||||
"email": "marc@gruita.ro"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://gruita.ro"
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,6 @@
|
||||
"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"
|
||||
"CNAME": "maskduck.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My Portfolio Website",
|
||||
"repo": "https://github.com/studiousgamer/studiousgamer.github.io",
|
||||
"owner": {
|
||||
"username": "studiousgamer",
|
||||
"email": "natyavidhanbiswas10@gmail.com",
|
||||
"twitter": "GamerStudious"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "studiousgamer.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "A personal website, for Nayan Patel.",
|
||||
"repo": "https://github.com/pateln123",
|
||||
"owner": {
|
||||
"username": "pateln123",
|
||||
"email": "hello@nayanpatel.net"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://nayanpatel.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Neranjana's is-a.dev subdomain",
|
||||
"repo": "https://github.com/NandiyaLive/is-a-dev",
|
||||
"owner": {
|
||||
"username": "NandiyaLive",
|
||||
"email": "neranjanaprsd@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://neranjana.tk"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"repo": "https://github.com/ninelel",
|
||||
"record": {
|
||||
"A": [
|
||||
"23.185.16.239"
|
||||
"66.118.232.103"
|
||||
],
|
||||
"MX": [
|
||||
"mx1.improvmx.com",
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Nisarga",
|
||||
"repo": "https://github.com/nisarga-developer/nisarga-developer.github.io",
|
||||
"owner": {
|
||||
"username": "nisarga-developer",
|
||||
"email": "adhikarynisarga17@gmail.com",
|
||||
"twitter": "adhikarynisarga"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "nisarga-developer.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "andrewstech",
|
||||
"email": "andrew@win11react.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["140.238.66.199"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aeongdesu",
|
||||
"email": "",
|
||||
"revolt": "@Nyan",
|
||||
"discord": "Bread#2635",
|
||||
"note": "discord id: 548821619661864962"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ppy.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +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",
|
||||
"repo": "https://github.com/omxpro/portfolio-cf",
|
||||
"owner": {
|
||||
"username": "omxpro",
|
||||
"email": "omsenjalia@gmail.com",
|
||||
"twitter": "DaRealOmxpro"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "omxpro.github.io"
|
||||
"CNAME": "portfolio-cf.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "onichan's plugins. what can i say?",
|
||||
"repo": "https://github.com/rbstsoul",
|
||||
"owner": {
|
||||
"username": "rbstsoul",
|
||||
"email": "rbstsoul@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "readthedocs.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "my firstime here and for my portfolio website",
|
||||
"repo": "https://github.com/philcajurao/philcajurao.github.io",
|
||||
"owner": {
|
||||
"username": "philcajurao",
|
||||
"email": "philcajurao@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "philcajurao.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ultraviolet proxy",
|
||||
"repo": "https://github.com/notAperson535/Ultraviolet-Static",
|
||||
"owner": {
|
||||
"username": "notAperson535",
|
||||
"email": "notAperson939@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "notAperson535.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "Radar's personal developer website",
|
||||
"repo": "https://github.com/RadarFolf/CaseyK9",
|
||||
"owner": {
|
||||
"username": "CaseyK9",
|
||||
"email": "rocco@caseymediallc.com",
|
||||
"twitter": "RadarFolf",
|
||||
"discord": "Radar#0001"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "caseymediallc.com"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user