Merge branch 'main' into main

This commit is contained in:
Kaguwo
2020-11-29 23:03:49 +03:00
committed by GitHub
351 changed files with 4329 additions and 1625 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:json/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": ["error", 2],
"max-len": ["error", {
"code": 100,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreTrailingComments": true
}],
"node/exports-style": ["error", "module.exports"],
"node/file-extension-in-import": ["error", "always"],
"node/prefer-global/buffer": ["error", "always"],
"node/prefer-global/console": ["error", "always"],
"node/prefer-global/process": ["error", "always"],
"node/prefer-global/url-search-params": ["error", "always"],
"node/prefer-global/url": ["error", "always"],
"node/prefer-promises/dns": "error",
"node/prefer-promises/fs": "error",
"no-process-exit": [0],
"node/no-unsupported-features/node-builtins": [0],
"node/no-unsupported-features/es-syntax": [0]
}
}
+1 -3
View File
@@ -1,5 +1,3 @@
# https://github.com/actions/labeler
name: Checks
on: [pull_request_target]
@@ -14,7 +12,7 @@ jobs:
- name: Installing dependencies
uses: borales/actions-yarn@v2.0.0
with:
cmd: install
cmd: install --ignore-engines
- name: Running tests
uses: borales/actions-yarn@v2.0.0
with:
+13 -9
View File
@@ -7,20 +7,24 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
env:
CI: 1
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
steps:
- uses: actions/checkout@v2
- uses: borales/actions-yarn@v2.0.0
with:
cmd: install
cmd: install --ignore-engines
- name: Running tests
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
- name: Publishing records
env:
CI: 1
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
uses: borales/actions-yarn@v2.0.0
with:
cmd: publish-records
+1 -100
View File
@@ -1,100 +1 @@
# Documentation
## How to register
* First you need to create a pull request with your `domains/my-domain.json` file
* This PR will be reviewed
* The changes will take effect soon after the PR gets merged
* And that's it
### For github pages users
* A github pages json file (with cname record and https redirection) will look something like this -
```json
{
"description": "Add some description",
"repo": "https://github.com/github-username/github-username.github.io",
"owner": {
"username": "github-username",
"email": "any@email"
},
"record": {
"CNAME": "github-username.github.io"
}
}
```
* 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
## 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
The file name must pass the following criteria -
* Must be alpha numeric with dashes as seperators
* Must be more than 2 characters long
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"
},
}
```
### 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 how you want to link to your server/webpage.
Currently, only `CNAME`, `A`, `URL` record types are supported.
Here's a few different use cases for the given record types -
* **CNAME**
```json
{
"record": {
"CNAME": "username.github.io"
}
}
```
* **A record**
```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"
}
}
```
Moved to [./docs](./docs)
+5 -13
View File
@@ -2,16 +2,13 @@
<br />
is-a-dev is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
Note: This service is currently in **beta** so expect some delays in PR merge and report any issues you encounter so that the service can be improved.
**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
* Add a `your-domain-name.json` new file in `domains/` directory to register `your-domain-name.is-a.dev`
* [Read the docs for information about the json file](./API.md)
* 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
@@ -19,19 +16,14 @@ Note: This service is currently in **beta** so expect some delays in PR merge an
## Donations
This project is a free service for developers and will stay that way.
This project is a free and open source service for developers and will stay that way.
Donations will be greatly appreciated!
Please consider donating to help me keep this running forever!
<a href="https://www.buymeacoffee.com/phenax" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="28" width="119"></a>
<a href="https://liberapay.com/phenax" target="_blank"><img src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=for-the-badge" alt="Liberapay recurring donation button" /></a>
## Report abuse
If you think someone is abusing a domain you can report it by creating an issue with the label `report-abuse`.
## License
This project is under the [GPL-3.0](./LICENSE) license.
+6
View File
@@ -0,0 +1,6 @@
# Security Policy
## Reporting a Vulnerability
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repo.
For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com).
+7
View File
@@ -0,0 +1,7 @@
# 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 other services](./hosted-at/others.md)
+88
View File
@@ -0,0 +1,88 @@
# 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 -
* 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 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 how you want to link to your server/webpage.
Currently, only `CNAME`, `A`, `URL` record types are supported.
Here's a few different use cases for the given record types -
* **CNAME**
CNAME must be a host name (Eg - `something.tld`)
```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"
}
}
```
+28
View File
@@ -0,0 +1,28 @@
# 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": "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
+53
View File
@@ -0,0 +1,53 @@
# 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 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "http://www.is-a.dev"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/aaraam/aaraam.github.io",
"owner": {
"username": "aaraam",
"email": "aaraam.goblin@gmail.com"
},
"record": {
"CNAME": "aaraam.github.io"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Aaron's personal developer website",
"repo": "https://github.com/aaron-harvey",
"owner": {
"username": "aaronharvey",
"email": "aaron@lolsup.com"
},
"record": {
"CNAME": "lolsup.com",
"URL": "https://aaron.is-a.dev"
}
}
"description": "Aaron's personal developer website",
"repo": "https://github.com/aaron-harvey",
"owner": {
"username": "aaronharvey",
"email": "aaron@lolsup.com"
},
"record": {
"CNAME": "lolsup.com"
}
}
+10 -11
View File
@@ -1,11 +1,10 @@
{
"description": "Aashutosh Rathi's Space on Web",
"owner": {
"username": "aashutoshrathi",
"email": "me@aashutosh.dev"
},
"record": {
"CNAME": "aashutosh.dev",
"URL": "https://aashutosh.is-a.dev"
}
}
{
"description": "Aashutosh Rathi's Space on Web",
"owner": {
"username": "aashutoshrathi",
"email": "me@aashutosh.dev"
},
"record": {
"CNAME": "aashutosh.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Abdul's personal developer website",
"repo": "https://github.com/ariskycode/ariskycode.github.io",
"owner": {
"username": "ariskycode",
"email": "arirfanshaikh23@gmail.com"
},
"record": {
"CNAME": "ariskycode.github.io"
}
}
+1 -2
View File
@@ -6,7 +6,6 @@
"email": "returnofking04@gmail.com"
},
"record": {
"CNAME": "codeinator.me",
"URL": "https://abhay.is-a.dev"
"CNAME": "codeinator.me"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "abhinavdalal@gmail.com"
},
"record": {
"CNAME": "b-om.github.io",
"URL": "https://abhinavdalal.is-a.dev"
"CNAME": "b-om.github.io"
}
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Abhishek's personal website",
"repo": "https://github.com/nullpointxr",
"owner": {
"username": "nullpointxr",
"email": "abhishek.sankar.in@protonmail.com"
},
"record": {
"CNAME": "nullpointxr.github.io",
"URL": "https://abhishek.is-a.dev"
}
}
"description": "Abhishek's personal website",
"repo": "https://github.com/nullpointxr",
"owner": {
"username": "nullpointxr",
"email": "abhishek.sankar.in@protonmail.com"
},
"record": {
"CNAME": "abhisheks.me"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "abigosearch@gmail.com"
},
"record": {
"CNAME": "vj-abishek.github.io",
"URL": "https://abishek.is-a.dev"
"CNAME": "vj-abishek.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Atharva Chandwadkar's Portfolio",
"repo": "https://github.com/atharva21-stack/atharva21-stack.github.io",
"owner": {
"username": "atharva21-stack",
"email": "chandwadkar28@gmail.com"
},
"record": {
"CNAME": "atharva21-stack.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Adarsh's personal developer website",
"repo": "https://github.com/Adarsh1999/adarsh-portfolio.github.io",
"owner": {
"username": "Adarsh1999",
"email": "adarshguptamaurya@gmail.com"
},
"record": {
"CNAME": "adarsh-portfolio.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Adarsh's portfolio!",
"repo": "https://github.com/adarsh-qclw/adarsh-qclw.github.io",
"owner": {
"username": "adarsh-qclw",
"email": "adoo2001@gmail.com"
},
"record": {
"CNAME": "adarsh-qclw.github.io"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "The portfolio of Adarsh S",
"repo": "https://github.com/adarshsuresh07",
"owner": {
"username": "adarshsuresh07",
"email": "adarshsuresh@cet.ac.in"
},
"record": {
"CNAME":"adarshsuresh07.github.io",
"URL": "https://adarshs.is-a.dev"
}
}
"description": "The portfolio of Adarsh S",
"repo": "https://github.com/adarshsuresh07",
"owner": {
"username": "adarshsuresh07",
"email": "adarshsuresh@cet.ac.in"
},
"record": {
"CNAME": "adarshsuresh07.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Adarsh Vijay's Site for things he doesn't know yet",
"repo": "https://github.com/adarsh-av13/adarsh-av13.github.io",
"owner": {
"username": "adarsh-av13",
"email": "dra4474@gmail.com"
},
"record": {
"CNAME": "adarsh-av13.github.io"
}
}
+9 -10
View File
@@ -1,12 +1,11 @@
{
"description": "The awesome portfolio site for Adrian Grimm",
"repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io",
"owner": {
"username": "usmcamgrimm",
"email": "usmcamgrimm@gmail.com"
},
"record": {
"CNAME": "usmcamgrimm.github.io",
"URL": "https://adrian.is-a.dev"
}
"description": "The awesome portfolio site for Adrian Grimm",
"repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io",
"owner": {
"username": "usmcamgrimm",
"email": "usmcamgrimm@gmail.com"
},
"record": {
"CNAME": "usmcamgrimm.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "ahmadeyamin@gmail.com"
},
"record": {
"CNAME": "ahmadeyamin.github.io",
"URL": "https://ahmadeyamin.is-a.dev"
"CNAME": "ahmadeyamin.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Ahmed's personal site",
"repo": "https://github.com/Dropheart",
"owner": {
"username": "dropheart",
"email": "ahmed@techfromtheheart.com"
},
"record": {
"URL": "https://techfromtheheart.com"
}
}
+2 -3
View File
@@ -5,7 +5,6 @@
"email": "ahsan.qureshi8@gmail.com"
},
"record": {
"CNAME": "www.thisisahsan.com",
"URL": "https://ahsan.is-a.dev"
"CNAME": "www.thisisahsan.com"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Ahsw Personal Website",
"repo": "https://github.com/Ahsw7",
"owner": {
"username": "Ahsw",
"email": "jasjusjambu.segar@gmail.com"
},
"record": {
"CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Aizuu's Personal Website",
"repo": "https://github.com/VeguiIzumi",
"owner": {
"username": "Aizuu",
"email": "baby@alvindaldi.my.id"
},
"record": {
"URL": "https://aizuu.my.id"
}
}
+2 -3
View File
@@ -1,12 +1,11 @@
{
"description": "Akas Portfolio",
"repo":"https://github.com/akasrai/akasrai.github.io",
"repo": "https://github.com/akasrai/akasrai.github.io",
"owner": {
"username": "akasrai",
"email": "akasky70@gmail.com"
},
"record": {
"CNAME":"akasrai.github.io",
"URL": "https://akas.is-a.dev"
"CNAME": "akasrai.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "akashsanthosh@icloud.com"
},
"record": {
"CNAME": "akash-santhosh.github.io",
"URL": "https://akash.is-a.dev"
"CNAME": "akash-santhosh.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "my-portfolio website",
"repo": "https://github.com/akashmadhu4",
"owner": {
"username": "akashmadhu4",
"email": "akashmadhu4@gmail.com"
},
"record": {
"CNAME": "akashmadhu.engineer"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "aks28id@gmail.com"
},
"record": {
"CNAME": "akshay090.github.io",
"URL": "https://akshay-ashok.is-a.dev"
"CNAME": "akshay090.github.io"
}
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "phenax5@gmail.com"
},
"record": {
"CNAME": "phenax.github.io",
"URL": "https://akshay.is-a.dev"
"CNAME": "phenax.github.io"
}
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Alan's personal developer website",
"repo": "https://github.com/schirrel",
"owner": {
"username": "schirrel",
"email": "alan@schirrel.dev"
},
"record": {
"CNAME": "schirrel.dev",
"URL": "https://alan.is-a.dev"
}
}
"description": "Alan's personal developer website",
"repo": "https://github.com/schirrel",
"owner": {
"username": "schirrel",
"email": "alan@schirrel.dev"
},
"record": {
"CNAME": "schirrel.dev"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "A Mortal Web Developer With Immortal Dreams",
"repo": "https://github.com/alestor123/alestor123.github.io",
"owner": {
"username": "alestor123",
"email": "alestoraldous@gmail.com"
},
"record": {
"CNAME": "alestor123.github.io",
"URL": "https://alestor123.is-a.dev"
}
}
"description": "A Mortal Web Developer With Immortal Dreams",
"repo": "https://github.com/alestor123/alestor123.github.io",
"owner": {
"username": "alestor123",
"email": "alestoraldous@gmail.com"
},
"record": {
"CNAME": "alestor123.github.io"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Alex's personal developer website",
"repo": "https://github.com/alexmorrisnz",
"owner": {
"username": "alexmorrisnz",
"email": "alex@navra.nz"
},
"record": {
"CNAME": "alexmorris.nz",
"URL": "https://alex.is-a.dev"
}
}
"description": "Alex's personal developer website",
"repo": "https://github.com/alexmorrisnz",
"owner": {
"username": "alexmorrisnz",
"email": "alex@navra.nz"
},
"record": {
"CNAME": "alexmorris.nz"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "alexander@alexander.dk"
},
"record": {
"CNAME": "alexander.dk",
"URL": "https://alexander.is-a.dev"
"CNAME": "alexander.dk"
}
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "aj71563@gmail.com"
},
"record": {
"CNAME": "alexkjoseph.github.io",
"URL": "https://alexjoseph.is-a.dev"
"CNAME": "alexkjoseph.github.io"
}
}
}
+10 -10
View File
@@ -1,11 +1,11 @@
{
"description": "Alex Lykesas's personal developer website",
"repo": "https://github.com/Alexookah/alexlykesas.com",
"owner": {
"username": "alexookah",
"email": "alexlykesas@gmail.com"
},
"record": {
"URL": "https://alexlykesas.com"
}
}
"description": "Alex Lykesas's personal developer website",
"repo": "https://github.com/Alexookah/alexlykesas.com",
"owner": {
"username": "alexookah",
"email": "alexlykesas@gmail.com"
},
"record": {
"URL": "https://alexlykesas.com"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "abarriel@student.42.fr"
},
"record": {
"CNAME": "abarriel.github.io",
"URL": "https://allan.is-a.dev"
"CNAME": "abarriel.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Allsyed's personal website",
"repo": "https://github.com/allsyed",
"owner": {
"username": "allsyed",
"email": "allsyed@pm.me"
},
"record": {
"CNAME": "allsyed.com"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Allvaa's personal website",
"repo": "https://github.com/Allvaa",
"owner": {
"username": "Allvaa",
"email": "",
"twitter": "allvzx"
},
"record": {
"URL": "https://allvaa.my.id"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Ally's personal website",
"repo": "https://github.com/AllyTally",
"owner": {
"username": "AllyTally",
"email": "alexiatilde@gmail.com"
},
"record": {
"CNAME": "ally.moe"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Amal's personal developer website",
"repo": "https://github.com/amalsebs/amalsebs.github.io",
"owner": {
"username": "amalsebs",
"email": "amalsebastian48@gmail.com"
},
"record": {
"CNAME": "amalsebs.github.io",
"URL": "https://amal.is-a.dev"
}
}
"description": "Amal's personal developer website",
"repo": "https://github.com/amalsebs/amalsebs.github.io",
"owner": {
"username": "amalsebs",
"email": "amalsebastian48@gmail.com"
},
"record": {
"CNAME": "amalsebs.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A very simple but stupid website",
"repo": "https://github.com/asr1191/asr1191.github.io",
"owner": {
"username": "asr1191",
"email": "amalsraj95@gmail.com"
},
"record": {
"CNAME": "asr1191.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My personal portfolio",
"repo": "https://github.com/amar13mehta/amar13mehta.github.io",
"owner": {
"username": "amar13mehta",
"email": "amar13iam@gmail.com"
},
"record": {
"CNAME": "amar13mehta.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal portfolio",
"repo": "https://github.com/AM-77/am-77.github.io/",
"owner": {
"username": "am-77",
"email": "amine.griche77@protonmail.ch"
},
"record": {
"CNAME": "am-77.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "hey@andrewnt.dev"
},
"record": {
"CNAME": "andrewnt219.github.io",
"URL": "https://andrew.is-a.dev"
"CNAME": "andrewnt219.github.io"
}
}
}
+1 -1
View File
@@ -9,4 +9,4 @@
"record": {
"URL": "https://programadorwebvalencia.com/"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Andy's portfolio website",
"repo": "https://github.com/andyfaizan/andyfaizan.github.io",
"owner": {
"username": "andyfaizan",
"email": "andyfaizan@gmail.com"
},
"record": {
"CNAME": "andyfaizan.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Anil's personal developer website",
"repo": "https://github.com/anilsahindev",
"owner": {
"username": "anilsahindev",
"email": "anilsahindev@gmail.com"
},
"record": {
"CNAME": "anlshn.com"
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Anoop's blog",
"repo": "https://gitlab.com/anoopmsivadas/anoopmsivadas.gitlab.io",
"owner": {
"username": "anoopmsivadas",
"email": "anoopms@disroot.org"
},
"record": {
"CNAME": "anoopmsivadas.gitlab.io",
"URL": "https://anoop.is-a.dev"
}
}
"description": "Anoop's blog",
"repo": "https://gitlab.com/anoopmsivadas/anoopmsivadas.gitlab.io",
"owner": {
"username": "anoopmsivadas",
"email": "anoopms@disroot.org"
},
"record": {
"CNAME": "anoopmsivadas.gitlab.io"
}
}
+2 -3
View File
@@ -5,7 +5,6 @@
"email": "admin@thehubble.com.au"
},
"record": {
"CNAME": "brisbaneweb.dev",
"URL": "https://anthony.is-a.dev"
"CNAME": "brisbaneweb.dev"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Anupam's portfolio website",
"repo": "https://github.com/anupamroy8/portfolio",
"owner": {
"username": "anupamroy8",
"email": "anupamroy8@gmail.com"
},
"record": {
"CNAME": "anupamroy8.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Anwar's personal website",
"repo": "https://github.com/getanwar",
"owner": {
"username": "getanwar",
"email": "say@anwar.im"
},
"record": {
"URL": "https://anwar.im"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Anatoliy Poloz portfolio",
"repo": "https://github.com/tolyod/tolyod.github.io",
"owner": {
"username": "tolyod",
"email": "anatoliy.poloz@gmail.com"
},
"record": {
"A": ["185.185.71.114"]
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Meet Arpana!",
"repo": "https://github.com/winter-code/winter-code",
"owner": {
"username": "winter-code",
"email": "arpana11mehta@gmail.com",
"twitter": "arpana_naa"
},
"record": {
"CNAME": "winter-code.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Art's personal developer website",
"repo": "https://github.com/dotiful",
"owner": {
"username": "dotiful",
"email": "dots.util@gmail.com"
},
"record": {
"CNAME": "dotiful.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "aryavinodan2000@gmail.com"
},
"record": {
"CNAME": "aryavinodan2000.github.io",
"URL": "https://arya.is-a.dev"
"CNAME": "aryavinodan2000.github.io"
}
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "asadkhan1776@gmail.com"
},
"record": {
"CNAME": "asadkhan777.github.io",
"URL": "https://asad-khan.is-a.dev"
"CNAME": "asadkhan777.github.io"
}
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "Ashish's personal developer website",
"repo": "https://github.com/ashiishme",
"owner": {
"username": "ashiishme",
"email": "contact@ashiish.me"
},
"record": {
"CNAME": "ashiish.me",
"URL": "https://ashish.is-a.dev"
}
}
"description": "Ashish's personal developer website",
"repo": "https://github.com/ashiishme",
"owner": {
"username": "ashiishme",
"email": "contact@ashiish.me"
},
"record": {
"CNAME": "ashiish.me"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Portfolio Website",
"repo": "https://github.com/ashleymavericks/Portfolio-Site",
"owner": {
"username": "ashlyemavericks",
"email": "singhanurag024@gmail.com"
},
"record": {
"URL": "https://anuragsingh.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Aswin's personal portfolio",
"repo": "https://github.com/aswinskumar67/iamaswin.github.io",
"owner": {
"username": "aswinskumar67",
"email": "aswin.skumaro2bme@gmail.com"
},
"record": {
"CNAME": "aswinskumar67.github.io"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "https://github.com/ATechAdventurer"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Athira's Web-Dev Home",
"repo": "https://github.com/Athira-L-I/Athira-L-I.github.io",
"owner": {
"username": "Athira-L-I",
"email": "athirali4582@gmail.com"
},
"record": {
"CNAME": "Athira-L-I.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "robertdennispersonal@gmail.com"
},
"record": {
"CNAME": "robertdennis.netlify.app",
"URL": "https://atlas.is-a.dev"
"CNAME": "robertdennis.netlify.app"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "ATZU's website",
"repo": "https://github.com/z3ro0k",
"owner": {
"username": "z3ro0k",
"email": "zerok636@gmail.com"
},
"record": {
"CNAME": "atzu.xyz"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "some 16 year old who knows how to code",
"repo": "https://github.com/auguwu",
"record": {
"URL": "https://augu.dev"
},
"owner": {
"username": "auguwu",
"email": "august@augu.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Augustin's personal developer website",
"repo": "https://github.com/AugustinJose1221",
"owner": {
"username": "AugustinJose1221",
"email": "augustinjose1221@gmail.com"
},
"record": {
"CNAME": "www.augustinjose.com"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "augustineaykara@gmail.com"
},
"record": {
"CNAME": "augustine.aykara4.com",
"URL": "https://augustine.is-a.dev"
"CNAME": "augustine.aykara4.com"
}
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Austin's personal developer website",
"repo": "https://github.com/austindyoung",
"owner": {
"username": "austindyoung",
"email": "austin@doesweb.dev",
"twitter": ""
},
"record": {
"URL": "http://austindyoung.github.io/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "The Interstellar Twilight",
"repo": "https://github.com/avinal/avinal.github.io",
"owner": {
"username": "avinal",
"email": "185067@nith.ac.in"
},
"record": {
"CNAME": "avinal.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "AyanAmy's About Page",
"repo": "https://github.com/jy1263/jy1263.github.io",
"owner": {
"username": "jy1263",
"email": "",
"twitter": "jy126orjy126"
},
"record": {
"CNAME": "jy1263.github.io"
}
}
+9 -10
View File
@@ -1,12 +1,11 @@
{
"description": "B45i - Home Page",
"repo": "https://github.com/B45i/b45i.github.io",
"owner": {
"username": "B45i",
"email": "amalshajan2011@gmail.com"
},
"record": {
"CNAME": "b45i.github.io",
"URL": "https://b45i.is-a.dev"
}
"description": "B45i - Home Page",
"repo": "https://github.com/B45i/b45i.github.io",
"owner": {
"username": "B45i",
"email": "amalshajan2011@gmail.com"
},
"record": {
"CNAME": "b45i.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Bae's personal website",
"owner": {
"username": "ba-e",
"email": "bae.nyom@gmail.com"
},
"record": {
"URL": "https://bae.codes"
}
}
+9 -10
View File
@@ -1,12 +1,11 @@
{
"description": "Ben's personal developer website",
"repo": "https://github.com/stupergenius",
"owner": {
"username": "stupergenius",
"email": "ben@bensnider.com"
},
"record": {
"CNAME": "bensnider.com",
"URL": "https://ben.is-a.dev"
}
"description": "Ben's personal developer website",
"repo": "https://github.com/stupergenius",
"owner": {
"username": "stupergenius",
"email": "ben@bensnider.com"
},
"record": {
"CNAME": "bensnider.com"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Beno's personal developer website",
"repo": "https://github.com/benosambinu/benosambinu.github.io",
"owner": {
"username": "benosambinu",
"email": "benosbs@gmail.com"
},
"record": {
"CNAME": "benosambinu.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "tomjerryparu@gmail.com"
},
"record": {
"CNAME": "BhadraJayakumarSandhya.github.io",
"URL": "https://bhadra.is-a.dev"
"CNAME": "BhadraJayakumarSandhya.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bhargav Gohil's personal developer website",
"repo": "https://github.com/bhargav252000/bhargav252000.github.io",
"owner": {
"username": "bhargav252000",
"email": "bhargavgohil25@gmail.com"
},
"record": {
"CNAME": "bhargav252000.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Biplob's website",
"repo": "https://github.com/revolutionisme/revolutionisme.github.io",
"owner": {
"username": "revolutionisme",
"email": "revolutionisme+github@gmail.com"
},
"record": {
"CNAME": "revolutionisme.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "The face of Blaine, on the web",
"repo": "https://github.com/Blakeinstein/Blakeinstein.github.io",
"owner": {
"username": "Blakeinstein",
"email": "rishi1998@gmail.com"
},
"record": {
"CNAME": "blakeinstein.github.io"
}
}
+1 -1
View File
@@ -7,4 +7,4 @@
"record": {
"CNAME": "bradleyholbrook.com"
}
}
}
+4 -5
View File
@@ -1,12 +1,11 @@
{
"description": "Brandons's personal developer website",
"repo": "https://github.com/b-hexsoul",
"description": "Brandon Hexsel - Full Stack Engineer",
"repo": "https://github.com/b-hexsoul/b-hexsoul.github.io",
"owner": {
"username": "b-hexsoul",
"email": "brandon.hexsel@gmail.com"
},
"record": {
"CNAME": "b-hexsoul.github.io",
"URL": "https://brandon.is-a.dev"
"CNAME": "b-hexsoul.github.io"
}
}
}
+9 -10
View File
@@ -1,12 +1,11 @@
{
"description": "Bree is a Dev",
"repo": "https://github.com/breekoy/breekoy.github.io",
"owner": {
"username": "breekoy",
"email": "mcwall.breekoy@gmail.com"
},
"record": {
"CNAME": "breekoy.github.io",
"URL": "https://bree.is-a.dev"
}
"description": "Bree is a Dev",
"repo": "https://github.com/breekoy/breekoy.github.io",
"owner": {
"username": "breekoy",
"email": "mcwall.breekoy@gmail.com"
},
"record": {
"CNAME": "breekoy.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Bruno Henrique Paiva's personal website",
"owner": {
"username": "brunohpaiva",
"email": "bruno@sigane.com.br"
},
"record": {
"URL": "https://bruno.codes"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My github website",
"repo": "https://github.com/brunoff634cyt/brunoff634cyt.github.io",
"owner": {
"username": "brunoff634cyt",
"email": "brunoff634cyt@gmail.com"
},
"record": {
"CNAME": "brunoff634cyt.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "charlie.chrisman@gmail.com"
},
"record": {
"CNAME": "cachrisman.github.io",
"URL": "https://charlie.is-a.dev"
"CNAME": "cachrisman.github.io"
}
}
}
+1 -2
View File
@@ -6,7 +6,6 @@
"email": "basuraychetan@gmail.com"
},
"record": {
"CNAME": "chetanbasuray.github.io",
"URL": "https://chetan-basuray.is-a.dev"
"CNAME": "chetanbasuray.github.io"
}
}
+2 -4
View File
@@ -1,4 +1,3 @@
{
"description": "Chris' Site",
"repo": "https://github.com/Sp4nd3x/",
@@ -7,7 +6,6 @@
"email": "chrisisadev@gmail.com"
},
"record": {
"CNAME": "sp4nd3x.github.io",
"URL": "https://chris.is-a.dev"
"CNAME": "sp4nd3x.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Crystal Melting Dot's site",
"repo": "https://github.com/cmd410/cmd410.github.io",
"owner": {
"username": "cmd410",
"email": "stresspassing@gmail.com"
},
"record": {
"CNAME": "cmd410.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Chinmay Mulay's Portfolio",
"repo": "https://github.com/cmulay/cmulay.github.io",
"owner": {
"username": "cmulay",
"email": "codewithchin@gmail.com"
},
"record": {
"CNAME": "cmulay.github.io"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "http://codefoster.com"
}
}
}
+10 -11
View File
@@ -1,12 +1,11 @@
{
"description": "The ThunderDome",
"repo": "https://github.com/codethoma/",
"owner": {
"username": "codethoma",
"email": "mrthundergod@gmail.com"
},
"record": {
"CNAME": "codethoma.github.io",
"URL": "https://codethoma.is-a.dev"
}
}
"description": "The ThunderDome",
"repo": "https://github.com/codethoma/",
"owner": {
"username": "codethoma",
"email": "mrthundergod@gmail.com"
},
"record": {
"CNAME": "codethoma.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "dan.habot@gmail.com"
},
"record": {
"CNAME": "danhab99.github.io",
"URL": "https://dan-habot.is-a.dev"
"CNAME": "danhab99.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dan's Blog and Portfolio",
"repo": "https://github.com/DanField12/DanField12.github.io.git",
"owner": {
"username": "DanField12",
"email": "dan.field643@gmail.com"
},
"record": {
"CNAME": "DanField12.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "danilo_fuchs@hotmail.com"
},
"record": {
"CNAME": "danilofuchs.github.io",
"URL": "https://danilofuchs.is-a.dev"
"CNAME": "danilofuchs.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Daria is a dev",
"repo": "https://github.com/dariatrainor/dariatrainor.github.io",
"owner": {
"username": "dariatrainor",
"email": "dariasu@gmail.com"
},
"record": {
"CNAME": "dariatrainor.github.io"
}
}
+2 -3
View File
@@ -6,7 +6,6 @@
"email": "akarshashok12@gmail.com"
},
"record": {
"CNAME": "akchy.github.io",
"URL": "https://davish.is-a.dev"
"CNAME": "akchy.github.io"
}
}
}

Some files were not shown because too many files have changed in this diff Show More