Merge branch 'main' into main

This commit is contained in:
Azurnex
2021-03-07 03:19:10 +00:00
committed by GitHub
241 changed files with 5637 additions and 3370 deletions
+3 -1
View File
@@ -24,6 +24,8 @@
"node/prefer-global/url": ["error", "always"],
"node/prefer-promises/dns": "error",
"node/prefer-promises/fs": "error",
"no-process-exit": [0]
"no-process-exit": [0],
"node/no-unsupported-features/node-builtins": [0],
"node/no-unsupported-features/es-syntax": [0]
}
}
+4 -3
View File
@@ -1,7 +1,7 @@
name: Helper
on:
pull_request_target:
pull_request:
types:
- closed
@@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Comment
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true
if: github.event.action == 'closed' && github.event.pull_request.merged == true
uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -20,4 +20,5 @@ jobs:
const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
if (hasLabel(context, 'domain'))
await instructions(context, github);
console.log('Domain');
await instructions(context, github);
+1 -8
View File
@@ -1,5 +1,5 @@
name: Checks
on: [pull_request_target]
on: [pull_request]
jobs:
validation:
@@ -17,10 +17,3 @@ jobs:
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
label:
runs-on: ubuntu-latest
steps:
- name: Labelling pull request
uses: actions/labeler@main
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+13
View File
@@ -0,0 +1,13 @@
name: Label
on:
schedule:
- cron: "0 * * * *"
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Labelling pull request
uses: actions/labeler@main
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+1 -132
View File
@@ -1,132 +1 @@
# 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 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
### 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"
}
}
```
Moved to [./docs](./docs)
+3 -6
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
+14
View File
@@ -0,0 +1,14 @@
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-15_x
yarn
dnsutils
certbot
];
in pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}
+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
+11
View File
@@ -0,0 +1,11 @@
{
"description": "0xflotus' personal developer website",
"repo": "https://github.com/0xflotus/0xflotus.github.io",
"owner": {
"username": "0xflotus",
"email": "0xflotus@gmail.com"
},
"record": {
"CNAME": "0xflotus.github.io"
}
}
+4 -2
View File
@@ -5,5 +5,7 @@
"username": "phenax",
"email": "phenax5@gmail.com"
},
"record": {}
}
"record": {
"URL": "http://www.is-a.dev"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A personal portfolio site for all my projects and commissions.",
"repo": "https://github.com/aakhilv/portfolio",
"owner": {
"username": "aakhilv",
"email": "bluninja165@gmail.com",
"twitter": "corruptblu"
},
"record": {
"CNAME": "aakhilv.github.io"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "abhishek.sankar.in@protonmail.com"
},
"record": {
"CNAME": "nullpointxr.github.io"
"CNAME": "abhisheks.me"
}
}
+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 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"
}
}
+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"
}
}
+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"
}
}
+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"
}
}
+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"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Alessandro's portfolio",
"repo": "https://github.com/alessandroaussems/portfolio",
"owner": {
"username": "alessandroaussems",
"email": "me@alessandroaussems.be"
},
"record": {
"URL": "https://alessandroaussems.be"
}
}
+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": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/jn-aman",
"owner": {
"username": "jn-aman",
"email": "aman.j@safepath.ai"
},
"record": {
"CNAME": "amanwiki.netlify.app"
}
}
+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"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "My api",
"owner": {
"username": "StalkerMeyr",
"email": "andchit223@gmail.com"
},
"record": {
"A": [
"185.87.48.199"
]
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"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"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Arthurdw",
"email": "mail@arthurdw.com"
},
"repo": "https://github.com/arthurdw",
"record": {
"URL": "https://www.arthurdw.com"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"URL": "https://atzu.studio"
}
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "augustineaykara@gmail.com"
},
"record": {
"CNAME": "augustine.aykara4.com"
"URL": "http://augustine.aykara4.com"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "this a link to my website",
"owner": {
"username": "avcado",
"email": "devavcado@gmail.com"
},
"record": {
"CNAME": "avcado.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Awan Shrestha's Site",
"owner": {
"username": "awanshrestha",
"email": "awa1shrestha@gmail.com",
"twitter": "awanshrestha1"
},
"record": {
"CNAME": "awanshrestha.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"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "bashoudev",
"email": "zionthedev@gmail.com",
"twitter": "bashoudev"
},
"record": {
"CNAME": "bashoudev.ga"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Basils' website",
"repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io",
"owner": {
"username": "LowSpecCorgi",
"email": "haroldthesenpai@gmail.com",
"twitter": "basilicous"
},
"record": {
"CNAME": "LowSpeCorgi.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "thetayloredman",
"email": "",
"telegram": "BadBoyHaloCat"
},
"description": "Personal website",
"record": {
"A": [
"167.172.157.69"
]
}
}
+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"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bicepsfako's personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "bicepsfako.netlify.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bots personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "vascular-barnacle-zfdxk5mcunu4qasmwk8n14na.herokudns.com"
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"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"
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Discord Bot's Website",
"owner": {
"username": "brawlie",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "brawlie.github.io"
}
}
+9 -9
View File
@@ -1,10 +1,10 @@
{
"description": "Bruno Henrique Paiva's personal website",
"owner": {
"username": "brunohpaiva",
"email": "bruno@sigane.com.br"
},
"record": {
"URL": "https://bruno.codes"
}
}
"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": "a website for my api",
"repo": "https://github.com/brawlie/api",
"owner": {
"username": "brawlie",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Diordnas",
"email": "alessandroeliot@gmail.com"
},
"description": "Personal site, as well as hosting a few tools",
"repo": "https://github.com/diordnas/diordnas.github.io",
"record": {
"CNAME": "diordnas.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Chandrakant's Work",
"owner": {
"username": "chandrakaant",
"email": "chandrakantpatel23@gmail.com"
},
"record": {
"CNAME": "chandrakaant.github.io"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "Chetan's website",
"repo": "https://github.com/chetanbasuray/chetanbasuray.github.io",
"owner": {
"username": "chetanbasuray",
"email": "basuraychetan@gmail.com"
},
"record": {
"CNAME": "chetanbasuray.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Krchip's develop site",
"repo": "https://github.com/Krchip/Krchip.github.io",
"owner": {
"username": "Krchip",
"email": "elite7744@gmail.com"
},
"record": {
"URL": "https://krchip.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Sly-Little-Fox",
"email": "paranormal.studio123@gmail.com"
},
"record": {
"CNAME": "sly-little-fox.github.io"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"CNAME": "cmd410.github.io"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A website to show off my projects and or just blogs, etc etc.",
"repo": "https://github.com/ZeroTwoDevs/connor.github.io",
"owner": {
"username": "Connor",
"email": "halil_ismail@yahoo.com"
},
"record": {
"CNAME": "connordevs.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A Website For My API",
"repo": "https://github.com/joeleeofficial/",
"owner": {
"username": "joeleeofficial",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co"
}
}
+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"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dave Bhandari's Portfolio",
"repo": "https://github.com/Davekibh/Davekibh.github.io",
"owner": {
"username": "Davekibh",
"email": "davestephen2002@gmail.com"
},
"record": {
"CNAME": "Davekibh.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Personal Portfolio",
"owner": {
"username": "Deeksha2501",
"email": "sharmadeeksha325@gmail.com"
},
"record": {
"URL": "http://deekshasharma.vercel.app/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Student and developer in the United Kingdom.",
"repo": "https://github.com/ohlookitsderpy",
"record": {
"URL": "https://derpyenterprises.org"
},
"owner": {
"username": "ohlookitsderpy",
"email": "contact@derpyenterprises.org"
}
}
+1 -1
View File
@@ -9,4 +9,4 @@
"record": {
"CNAME": "devrealm.org"
}
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A personal site for all my stuff",
"repo": "https://github.com/b1ackshadow/b1ackshadow.github.io",
"owner": {
"username": "b1ackshadow",
"email": "actuallydc@gmail.com",
"twitter": ""
},
"record": {
"CNAME": "b1ackshadow.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dinesh Kumar's personal developer website",
"repo": "https://github.com/dinesh-ysl/dinesh-ysl.github.io",
"owner": {
"username": "dinesh-ysl",
"email": "dseera6@gmail.com"
},
"record": {
"CNAME": "dinesh-ysl.github.io"
}
}
+2 -2
View File
@@ -6,6 +6,6 @@
"email": "dipanroy@mindwebs.org"
},
"record": {
"CNAME": "dipanroy.com"
"A": "115.187.62.14"
}
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "a discord bot website",
"repo": "https://github.com/botstudios",
"owner": {
"username": "BotStudios",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "botstudios.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "dsaw's blog",
"repo": "https://github.com/dsaw/dsaw.github.io",
"owner": {
"username": "dsaw",
"email": "dsawthedsawwhat@gmail.com"
},
"record": {
"CNAME": "dsaw.github.io"
}
}
+11 -11
View File
@@ -1,12 +1,12 @@
{
"description": "dsrev's blog",
"repo": "https://github.com/dsrev/dsrev.github.io",
"owner": {
"username": "dsrev",
"email": "dsrev@snopyta.org",
"twitter": "IlyaSProkopenko"
},
"record": {
"CNAME": "dsrev.github.io"
}
}
"description": "dsrev's blog",
"repo": "https://github.com/dsrev/dsrev.github.io",
"owner": {
"username": "dsrev",
"email": "dsrev@snopyta.org",
"twitter": "IlyaSProkopenko"
},
"record": {
"CNAME": "dsrev.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "DwiiUnknown is a dev.",
"repo": "https://github.com/ItzMeDwii/dwii.me",
"owner": {
"username": "ItzMeDwii",
"email": "dwii5359@azalelnation.com"
},
"record": {
"URL": "https://github.com/ItzMeDwii"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "DylanK46",
"email": "kainth.dylan@gmail.com"
},
"record": {
"A": [
"90.217.214.245"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Echo's personal website",
"repo": "https://github.com/echo2477/echo2477.github.io",
"owner": {
"username": "echo2477",
"email": "pku.eko16@gmail.com"
},
"record": {
"CNAME": "echo2477.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dinesh Kumar's personal developer website",
"repo": "https://github.com/eldinesh/eldinesh.github.io",
"owner": {
"username": "eldinesh",
"email": "dseera6@gmail.com"
},
"record": {
"CNAME": "eldinesh.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Elflanded's Development Website.",
"repo": "https://github.com/Elflanded/website",
"owner": {
"username": "Elflanded",
"email": "elflanded@gmail.com"
},
"record": {
"CNAME": "elflanded.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Epic's github",
"repo": "https://github.com/tag-epic",
"owner": {
"username": "tag-epic",
"email": "tagepicuwu@gmail.com"
},
"record": {
"URL": "http://github.com/tag-epic"
}
}
+1 -1
View File
@@ -8,4 +8,4 @@
"record": {
"CNAME": "dev.cname.erisa.moe"
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "evaldas",
"email": "evabur@icloud.com"
},
"record": {
"CNAME": "burlingis.com"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My portfolio website",
"repo": "https://github.com/Fauzannnnh/website",
"owner": {
"username": "Fauzannnnh",
"email": "fauzan@eenthlh.xyz"
},
"record": {
"URL": "https://eenthlh.xyz"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My Personal Website",
"repo": "https://github.com/Abdurrahman075/fayyadh-my-id",
"owner": {
"username": "Fayyadh",
"email": "fayyadh.abdurrahman007@gmail.com"
},
"record": {
"URL": "https://fayyadh.my.id"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "github-username",
"email": "mail@felixyeung.dev"
},
"repo": "https://github.com/felixyeungdev",
"record": {
"URL": "https://felixyeung.dev"
}
}
+1 -1
View File
@@ -7,4 +7,4 @@
"record": {
"CNAME": "mfinn.de"
}
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "fluted.is-a-dev",
"repo": "https://github.com/fluteds/fluteds.github.io",
"owner": {
"username": "fluteds",
"email": "",
"twitter": "fluted_"
},
"record": {
"CNAME": "fluted.xyz"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "aykarageorge@gmail.com"
},
"record": {
"CNAME": "george.aykara4.com"
"URL": "https://george.aykara4.com"
}
}
+1 -3
View File
@@ -4,8 +4,6 @@
"email": "domains@dontsend.me"
},
"record": {
"A": [
"50.116.28.162"
]
"URL": "https://me.getify.com"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "Gingdev personal developer website",
"repo": "https://github.com/ging-dev",
"owner": {
"username": "ging-dev",
"email": "gingdz11012001@gmail.com"
},
"record": {
"A": [
"204.246.56.80"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My Personal Website",
"repo": "https://github.com/GiriGummadi",
"owner": {
"username": "GiriGummadi",
"email": "girigummadi5656@gmail.com"
},
"record": {
"CNAME": "girigummadi.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "gornostay25",
"email": "volodia.palamar25+github@gmail.com"
},
"record": {
"CNAME": "gornostay25.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Gokul's Personal Site",
"repo": "https://github.com/JavaCafe01/javacafe01.github.io",
"owner": {
"username": "JavaCafe01",
"email": "",
"twitter": "javacafe01"
},
"record": {
"CNAME": "javacafe01.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Gustavo Arsenio's talk blog ",
"repo": "https://github.com/GustavoArsenio/GustavoArsenio.github.io",
"owner": {
"username": "GustavoArsenio",
"email": "Gustavo.arsenio.sousa@hotmail.com",
"twitter": "gustavoarsenio"
},
"record": {
"CNAME": "GustavoArsenio.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Nystrex's Personal Website",
"repo": "https://github.com/Nystrex",
"owner": {
"username": "Nystrex",
"email": "hadi@nystrex.com"
},
"record": {
"CNAME": "nystrex.com"
}
}
+10 -10
View File
@@ -1,11 +1,11 @@
{
"description": "Martin Harrigan's Homepage",
"repo": "https://github.com/harrigan",
"owner": {
"username": "harrigan",
"email": "martinharrigan@gmail.com"
},
"record": {
"URL": "https://www.martinharrigan.ie"
}
}
"description": "Martin Harrigan's Homepage",
"repo": "https://github.com/harrigan",
"owner": {
"username": "harrigan",
"email": "martinharrigan@gmail.com"
},
"record": {
"URL": "https://www.martinharrigan.ie"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Hat Kid's domain! (hat_kid)",
"repo": "https://github.com/thehatkid/thehatkid.github.io",
"owner": {
"username": "thehatkid",
"email": "saha22023@gmail.com"
},
"record": {
"CNAME": "thehatkid.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "hector-vigil",
"repo": "https://github.com/Hector-Vigil/hector-vigil.github.io",
"owner": {
"username": "hector-vigil",
"email": "vigilescalera.h@gmail.com"
},
"record": {
"CNAME": "hector-vigil.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Portfolio redirect for Hokkqi",
"repo": "https://werewolf.codes",
"owner": {
"username": "hokkqi",
"email": "lio@werewolf.design"
},
"record": {
"URL": "https://werewolf.design"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal Website",
"repo": "https://github.com/Hazmi35",
"owner": {
"username": "Hazmi35",
"email": "contact@hzmi.xyz"
},
"record": {
"URL": "https://hzmi.me"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal Portfolio",
"repo": "https://github.com/irfanbacker/irfanbacker.github.io",
"owner": {
"username": "irfanbacker",
"email": "irfuvk@gmail.com"
},
"record": {
"CNAME": "irfanbacker.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Ishan Goel's personal website (quackduck@github)",
"repo": "https://github.com/quackduck/quackduck.github.io",
"owner": {
"username": "quackduck",
"email": "igoel.mail@gmail.com",
"name": "Ishan Goel"
},
"record": {
"CNAME": "quackduck.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "TheLimifiedLime",
"email": "",
"twitter": "TheLimifiedLime"
},
"description": "I will use this to redirect to my main domain",
"repo": "https://github.com/TheLimifiedLime/issai.club",
"record": {
"URL": "https://issai.club"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Vedant Naidu's Portfolio",
"repo": "https://github.com/Flash2014/Flash2014.github.io",
"owner": {
"username": "Flash2014",
"email": "naiduvedant@gmail.com"
},
"record": {
"CNAME": "Flash2014.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Jeff Jessie's Portfolio Website",
"repo": "https://github.com/j3ffjessie/j3ffjessie.github.io",
"owner": {
"username": "j3ffjessie",
"email": "j3ffjessie@protonmail.com"
},
"record": {
"CNAME": "j3ffjessie.github.io"
}
}
+1 -1
View File
@@ -7,4 +7,4 @@
"record": {
"URL": "https://jackfrisby.co"
}
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "nythrox",
"email": "jasonsantiagobutler@gmail.com",
"twitter": "nythrox_"
},
"record": {
"URL": "https://jasonbutler.web.app/"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Jeferson Brito's Portfolio",
"repo": "https://github.com/jeferson-sb/portfolio",
"owner": {
"username": "jeferson-sb",
"email": "",
"linkedin": "https://www.linkedin.com/in/jeferson-sb/"
},
"record": {
"URL": "https://www.jefersonsilva.me/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/SquarePear/jeffreyharmon.me",
"owner": {
"username": "SquarePear",
"email": "jeffrey@reygames.com"
},
"record": {
"URL": "https://jeffreyharmon.me/"
}
}

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