mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-24 19:34:41 +00:00
Merge branch 'main' into main
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"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]
|
||||
}
|
||||
}
|
||||
@@ -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:
|
||||
|
||||
@@ -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,13 +1,29 @@
|
||||
# Documentation
|
||||
|
||||
## How to register
|
||||
# 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
|
||||
|
||||
### Simple cname record
|
||||
* A github pages json file will look something like this -
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/github-username",
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "the-domain-you-own.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
* After the pull request is merged, configure your server (apache, nginx, whatever) to work with `subdomain.is-a.dev`
|
||||
|
||||
|
||||
### For github pages users
|
||||
* A github pages json file (with cname record and https redirection) will look something like this -
|
||||
* A github pages json file will look something like this -
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
@@ -26,12 +42,13 @@
|
||||
|
||||
|
||||
|
||||
## Domains json file
|
||||
# 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 with dashes as seperators
|
||||
* Must be alpha-numeric in lowercase with dashes as seperators
|
||||
* Must be more than 2 characters long
|
||||
|
||||
|
||||
@@ -51,6 +68,18 @@ 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.
|
||||
```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.
|
||||
|
||||
@@ -67,6 +96,7 @@ 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": {
|
||||
@@ -76,6 +106,7 @@ Here's a few different use cases for the given record types -
|
||||
```
|
||||
|
||||
* **A record**
|
||||
A record must be a list of ips
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
|
||||
@@ -19,19 +19,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.
|
||||
|
||||
+1
-1
@@ -3,4 +3,4 @@
|
||||
## 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 [phenax5@gmail.com](mailto:phenax5@gmail.com).
|
||||
For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com).
|
||||
|
||||
+1
-3
@@ -5,7 +5,5 @@
|
||||
"username": "phenax",
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
}
|
||||
"record": {}
|
||||
}
|
||||
|
||||
@@ -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
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +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",
|
||||
"URL": "https://abdulrshaikh.is-a.dev"
|
||||
}
|
||||
}
|
||||
"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
@@ -6,7 +6,6 @@
|
||||
"email": "returnofking04@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "codeinator.me",
|
||||
"URL": "https://abhay.is-a.dev"
|
||||
"CNAME": "codeinator.me"
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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": "nullpointxr.github.io"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "adarshguptamaurya@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "adarsh-portfolio.github.io",
|
||||
"URL": "https://adarsh.is-a.dev"
|
||||
"CNAME": "adarsh-portfolio.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -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"
|
||||
}
|
||||
}
|
||||
+9
-10
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "ahmadeyamin@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ahmadeyamin.github.io",
|
||||
"URL": "https://ahmadeyamin.is-a.dev"
|
||||
"CNAME": "ahmadeyamin.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -5,7 +5,6 @@
|
||||
"email": "ahsan.qureshi8@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "www.thisisahsan.com",
|
||||
"URL": "https://ahsan.is-a.dev"
|
||||
"CNAME": "www.thisisahsan.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "alexander@alexander.dk"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "alexander.dk",
|
||||
"URL": "https://alexander.is-a.dev"
|
||||
"CNAME": "alexander.dk"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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
@@ -6,7 +6,6 @@
|
||||
"email": "abarriel@student.42.fr"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abarriel.github.io",
|
||||
"URL": "https://allan.is-a.dev"
|
||||
"CNAME": "abarriel.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -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
@@ -9,4 +9,4 @@
|
||||
"record": {
|
||||
"URL": "https://programadorwebvalencia.com/"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "andyfaizan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "andyfaizan.github.io",
|
||||
"URL": "https://andy.is-a.dev"
|
||||
"CNAME": "andyfaizan.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,6 @@
|
||||
"email": "admin@thehubble.com.au"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "brisbaneweb.dev",
|
||||
"URL": "https://anthony.is-a.dev"
|
||||
"CNAME": "brisbaneweb.dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -6,7 +6,6 @@
|
||||
"email": "aryavinodan2000@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "aryavinodan2000.github.io",
|
||||
"URL": "https://arya.is-a.dev"
|
||||
"CNAME": "aryavinodan2000.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -8,4 +8,4 @@
|
||||
"record": {
|
||||
"URL": "https://github.com/ATechAdventurer"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -6,7 +6,6 @@
|
||||
"email": "robertdennispersonal@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "robertdennis.netlify.app",
|
||||
"URL": "https://atlas.is-a.dev"
|
||||
"CNAME": "robertdennis.netlify.app"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "augustineaykara@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "augustine.aykara4.com",
|
||||
"URL": "https://augustine.is-a.dev"
|
||||
"CNAME": "augustine.aykara4.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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/"
|
||||
}
|
||||
}
|
||||
+9
-10
@@ -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"
|
||||
}
|
||||
}
|
||||
+8
-11
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"description": "Bae's personal website",
|
||||
|
||||
"owner": {
|
||||
"username": "ba-e",
|
||||
"email": "bae.nyom@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "bae.codes",
|
||||
"URL": "https://bae.is-a.dev"
|
||||
}
|
||||
"description": "Bae's personal website",
|
||||
"owner": {
|
||||
"username": "ba-e",
|
||||
"email": "bae.nyom@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://bae.codes"
|
||||
}
|
||||
}
|
||||
+9
-10
@@ -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"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "tomjerryparu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "BhadraJayakumarSandhya.github.io",
|
||||
"URL": "https://bhadra.is-a.dev"
|
||||
"CNAME": "BhadraJayakumarSandhya.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "revolutionisme+github@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "revolutionisme.github.io",
|
||||
"URL": "https://biplob.is-a.dev"
|
||||
"CNAME": "revolutionisme.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -7,4 +7,4 @@
|
||||
"record": {
|
||||
"CNAME": "bradleyholbrook.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "brandon.hexsel@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "b-hexsoul.github.io",
|
||||
"URL": "https://brandon.is-a.dev"
|
||||
"CNAME": "b-hexsoul.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
-10
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Bruno Henrique Paiva's personal website",
|
||||
"owner": {
|
||||
"username": "brunohpaiva",
|
||||
"email": "bruno@sigane.com.br"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://bruno.codes"
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "charlie.chrisman@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cachrisman.github.io",
|
||||
"URL": "https://charlie.is-a.dev"
|
||||
"CNAME": "cachrisman.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -8,4 +8,4 @@
|
||||
"record": {
|
||||
"URL": "http://codefoster.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "danilo_fuchs@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "danilofuchs.github.io",
|
||||
"URL": "https://danilofuchs.is-a.dev"
|
||||
"CNAME": "danilofuchs.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -6,7 +6,6 @@
|
||||
"email": "akarshashok12@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "akchy.github.io",
|
||||
"URL": "https://davish.is-a.dev"
|
||||
"CNAME": "akchy.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Demonium's is-a.dev domain",
|
||||
"repo": "https://github.com/thedemonium/demonium.github.io",
|
||||
"owner": {
|
||||
"username": "thedemonium",
|
||||
"email": "tbapbing@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "komposerv.ru"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Dennis is a Dev",
|
||||
"repo": "https://github.com/dvandervlag/dvandervlag.github.io",
|
||||
"owner": {
|
||||
"username": "dvandervlag",
|
||||
"email": "dvandervlag@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dvandervlag.github.io"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner" : {
|
||||
"username": "Derek52",
|
||||
"email": "contact@derekbriggs.xyz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "Derek52.github.io",
|
||||
"URL": "https://Derek52.is-a.dev"
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "Derek52",
|
||||
"email": "contact@derekbriggs.xyz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "Derek52.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "This website is a link to my personal developer portfolio.",
|
||||
"repo": "https://github.com/derMelnik/derMelnik.github.io",
|
||||
"owner": {
|
||||
"username": "derMelnik",
|
||||
"email": "dermelnik@pm.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "derMelnik.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Designer Slash Developer",
|
||||
"repo": "https://github.com/designbyadrian",
|
||||
"owner": {
|
||||
"username": "designbyadrian",
|
||||
"email": "adrian@designbyadrian.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "designbyadrian.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Devon Powell is a full-stack software engineer",
|
||||
"repo": "https://github.com/D-Pow/d-pow.github.io",
|
||||
"owner": {
|
||||
"username": "D-Pow",
|
||||
"email": "dpow9373@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "d-pow.github.io"
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "Vitor Dino is a front-end developer and ui designer",
|
||||
"repo": "https://github.com/vitordino",
|
||||
"owner": {
|
||||
"username": "vitordino",
|
||||
"email": "me@vitordino.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "vitordino.com",
|
||||
"URL": "https://dino.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "Vitor Dino is a front-end developer and ui designer",
|
||||
"repo": "https://github.com/vitordino",
|
||||
"owner": {
|
||||
"username": "vitordino",
|
||||
"email": "me@vitordino.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "vitordino.com"
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "Evan's personal developer blog",
|
||||
"repo": "https://github.com/Ecalzo/ecalzo.github.io",
|
||||
"owner": {
|
||||
"username": "ecalzo",
|
||||
"email": "evancalz@me.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ecalzo.github.io",
|
||||
"URL": "https://ecalzo.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "Evan's personal developer blog",
|
||||
"repo": "https://github.com/Ecalzo/ecalzo.github.io",
|
||||
"owner": {
|
||||
"username": "ecalzo",
|
||||
"email": "evancalz@me.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ecalzo.github.io"
|
||||
}
|
||||
}
|
||||
+9
-9
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"description": "My proud is-a.dev website",
|
||||
"owner": {
|
||||
"username": "edwinm",
|
||||
"email": "edwin@bitstorm.org"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bitstorm.org"
|
||||
}
|
||||
}
|
||||
"description": "My proud is-a.dev website",
|
||||
"owner": {
|
||||
"username": "edwinm",
|
||||
"email": "edwin@bitstorm.org"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bitstorm.org"
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
{
|
||||
"description": "/home/epgeroy",
|
||||
"repo": "https://github.com/epgeroy/epgeroy.github.io",
|
||||
@@ -7,7 +6,6 @@
|
||||
"email": "epgeroy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "epgeroy.github.io",
|
||||
"URL": "https://epgeroy.is-a.dev"
|
||||
"CNAME": "epgeroy.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Sooraj Ep's website",
|
||||
"owner": {
|
||||
"username": "epsooraj",
|
||||
"email": "epsooraj4@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "epsooraj.com"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "eric@ericb.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "yurrriq.github.io",
|
||||
"URL": "https://eric.is-a.dev"
|
||||
"CNAME": "yurrriq.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,6 @@
|
||||
"twitter": "ericp3reira"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ericp3reira.github.io",
|
||||
"URL": "https://ericp3reira.is-a.dev"
|
||||
"CNAME": "ericp3reira.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "Ezedin's personal developer website",
|
||||
"repo": "https://github.com/ezedinff",
|
||||
"owner": {
|
||||
"username": "ezedinff",
|
||||
"email": "ezedin.fedlu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "black-horse-coder-blog.vercel.app",
|
||||
"URL": "https://ezedin.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "Ezedin's personal developer website",
|
||||
"repo": "https://github.com/ezedinff",
|
||||
"owner": {
|
||||
"username": "ezedinff",
|
||||
"email": "ezedin.fedlu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "black-horse-coder-blog.vercel.app"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "farzanfa007@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "Farzanfa.github.io",
|
||||
"URL": "https://farzan.is-a.dev"
|
||||
"CNAME": "Farzanfa.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "Fityan Azizi's portofolio website",
|
||||
"repo": "https://github.com/fityanazizi/fityanazizi.github.io",
|
||||
"owner": {
|
||||
"username": "fityanazizi",
|
||||
"email": "ftyns57@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fityanazizi.rf.gd",
|
||||
"URL": "https://fityan.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "Fityan Azizi's portofolio website",
|
||||
"repo": "https://github.com/fityanazizi/fityanazizi.github.io",
|
||||
"owner": {
|
||||
"username": "fityanazizi",
|
||||
"email": "ftyns57@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fityanazizi.rf.gd"
|
||||
}
|
||||
}
|
||||
+10
-11
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "F Javier López GitHub profile",
|
||||
"repo": "https://github.com/fjavierlh/fjavierlh.github.io",
|
||||
"owner": {
|
||||
"username": "fjavierlh",
|
||||
"email": "fjavierlh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fjavierlh.github.io",
|
||||
"URL": "https://fjavierlh.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "F Javier López GitHub profile",
|
||||
"repo": "https://github.com/fjavierlh/fjavierlh.github.io",
|
||||
"owner": {
|
||||
"username": "fjavierlh",
|
||||
"email": "fjavierlh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fjavierlh.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Forsas website and blog",
|
||||
"repo": "https://github.com/forsas/forsas.github.io",
|
||||
"owner": {
|
||||
"username": "forsas",
|
||||
"email": "forsaslt@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "forsas.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "ganeshsekha6@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "iamganeshsekhar.github.io",
|
||||
"URL": "https://ganesh.is-a.dev"
|
||||
"CNAME": "iamganeshsekhar.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,6 @@
|
||||
"email": "sisdfk@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "the-garlic-os.github.io",
|
||||
"URL": "https://garlic-os.is-a.dev"
|
||||
"CNAME": "the-garlic-os.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -6,7 +6,6 @@
|
||||
"email": "gauravtewari111@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "tewarig.github.io",
|
||||
"URL": "https://gaurav.is-a.dev"
|
||||
"CNAME": "tewarig.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
-10
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"description": "George Aykara's personal developer website",
|
||||
"repo": "https://github.com/aykarageorge",
|
||||
"owner": {
|
||||
"username": "aykarageorge",
|
||||
"email": "aykarageorge@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "george.aykara4.com"
|
||||
}
|
||||
}
|
||||
"description": "George Aykara's personal developer website",
|
||||
"repo": "https://github.com/aykarageorge",
|
||||
"owner": {
|
||||
"username": "aykarageorge",
|
||||
"email": "aykarageorge@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "george.aykara4.com"
|
||||
}
|
||||
}
|
||||
@@ -8,4 +8,4 @@
|
||||
"record": {
|
||||
"URL": "https://georgekaran.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
+4
-2
@@ -4,6 +4,8 @@
|
||||
"email": "domains@dontsend.me"
|
||||
},
|
||||
"record": {
|
||||
"A": ["50.116.28.162"]
|
||||
"A": [
|
||||
"50.116.28.162"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user