mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-08-20 06:23:50 +00:00
Merge branch 'is-a-dev:main' into main
This commit is contained in:
@@ -9,11 +9,15 @@ jobs:
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- name: Installing dependencies
|
||||
- name: Setup node v15
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '15'
|
||||
- name: Install dependencies
|
||||
uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: install --ignore-engines
|
||||
- name: Running tests
|
||||
cmd: install --ignore-engines --frozen-lockfile
|
||||
- name: Run tests
|
||||
uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: test
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
name: Publish records
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
name: 'Publish records'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
if: github.repository == 'is-a-dev/register'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
name: StaleBOT
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
name: 'Force cleanup'
|
||||
schedule:
|
||||
- cron: "30 14 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-stale: 30
|
||||
days-before-close: 20
|
||||
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
|
||||
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
FROM ubuntu:20.04
|
||||
|
||||
ENV TERM xterm
|
||||
RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
|
||||
|
||||
RUN apt-get -y update
|
||||
RUN apt-get install -y nodejs npm curl wget dnsutils certbot --fix-missing
|
||||
|
||||
RUN npm i -g n yarn && n 15.11
|
||||
|
||||
RUN node -v
|
||||
|
||||
WORKDIR /opt/app
|
||||
|
||||
COPY yarn.lock .
|
||||
COPY package.json .
|
||||
|
||||
RUN yarn install
|
||||
|
||||
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
|
||||
|
||||
@@ -25,5 +25,18 @@ Please consider donating to help me keep this running forever!
|
||||
|
||||
|
||||
|
||||
## Similar services
|
||||
You should also checkout -
|
||||
* [js.org](https://github.com/js-org/js.org/tree/master)
|
||||
* [thedev.id](https://github.com/fransallen/thedev.id)
|
||||
|
||||
|
||||
|
||||
## Uptime
|
||||
You can check the uptime of the service via [our status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw)
|
||||
|
||||
|
||||
|
||||
|
||||
## License
|
||||
This project is under the [GPL-3.0](./LICENSE) license.
|
||||
|
||||
+4
-2
@@ -5,10 +5,12 @@ let
|
||||
nixPackages = with pkgs; [
|
||||
nodejs-15_x
|
||||
yarn
|
||||
docker-compose
|
||||
dnsutils
|
||||
certbot
|
||||
#certbot
|
||||
];
|
||||
in pkgs.stdenv.mkDerivation {
|
||||
in
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "env";
|
||||
buildInputs = nixPackages;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
version: '3'
|
||||
services:
|
||||
dev:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
volumes:
|
||||
- ./:/opt/app/code
|
||||
@@ -3,5 +3,6 @@ You can read the [domains.json file api reference](./domains-json.md) for more i
|
||||
|
||||
### Websites hosted at
|
||||
* [For github pages users](./hosted-at/github-pages.md)
|
||||
* [For hashnode blogs](./hosted-at/hashnode.md)
|
||||
* [For other services](./hosted-at/others.md)
|
||||
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
When you create your Hashnode blog, hashnode provides a free **yourdomain.hashnode.dev** subdomain for you. However, you can set up your own **.is-a.dev** subdomain.
|
||||
|
||||
In this guide, you will learn how to accomplish this.
|
||||
|
||||
---
|
||||
|
||||
1. Log in to your Hashnode account.
|
||||
|
||||
2. Click on your **profile picture** at the bottom-left corner of the page on *desktop* screen or top-right corner on *mobile* screen.
|
||||
|
||||

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

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

|
||||
|
||||
5. Go To Your Fork Of The `is-a-dev/register` repo, edit your subdomain's JSON file, make sure you remove any old records, then add this:
|
||||
```json
|
||||
"CNAME": "hashnode.network"
|
||||
```
|
||||
|
||||
Once Done, your hashnode blog is setup to use your subdomain, all you have to do is wait sometime for the DNS to propogate. These changes could take from 1 hour to around 48 hours, so please be patient, It'll most likely be ready within a hour.
|
||||
Enjoy Your Hashnode Blog, With Your Sweet `.is-a.dev` Subdomain! **If You Need More Help:** please read this support article on hashnode support: https://support.hashnode.com/docs/mapping-domain/, this should help you more, if you need more help related to [Hashnode](https://hashnode.com), then please visit the [Hashnode Support Center](https://support.hashnode.com/). Remeber, is-a.dev has no links with hashnode, so please do not create issues on our github, saying that your hashnode blog is having issues, we simply will not respond to them.
|
||||
@@ -0,0 +1,72 @@
|
||||
# Reviewing pull requests
|
||||
There are a few things you'll need to look out for when reviewing pull requests for domain registrations. This list is not exhaustive and will be updated.
|
||||
|
||||
---
|
||||
|
||||
### CI errors
|
||||
A lot of minor issues will be caught in the CI checks
|
||||
* JSON parsing issues
|
||||
* Schema issues
|
||||
|
||||
If the CI is failing, tag the user and comment on the pr.
|
||||
|
||||
---
|
||||
|
||||
### Contents of the website
|
||||
We need to make sure that the contents being hosted via the record being registered is used for malicious purposes.
|
||||
To do this, we must try our best to verify the contents of website and if required ask some questions regarding the contents in the PR.
|
||||
|
||||
---
|
||||
|
||||
### Invalid email/social link
|
||||
A way to contact the user is important in case we need to inform the users of some changes to the project.
|
||||
Confirm if the email looks valid or the social user name/link works.
|
||||
The user should have either an email or a valid social link.
|
||||
|
||||
❌ `"owner": { "username": "gh-username" }` is invalid as it doesn't contain an email or any social links
|
||||
|
||||
❌ `"email": "28372878+user-name@users.noreply.github.com"` is invalid as the email cannot be used
|
||||
|
||||
✅ `"owner": { "username": "phenax", "twitter": "twitter-username" }` is valid as it contains a social link
|
||||
|
||||
✅ `"owner": { "username": "phenax", "email": "email@gmail.com" }` is valid as it contains an email
|
||||
|
||||
---
|
||||
|
||||
### Invalid CNAME
|
||||
CNAME has to be a hostname. Something like `example.com`.
|
||||
|
||||
❌ `http://example.com` is invalid as it contains a protocol `https://`
|
||||
|
||||
❌ `example.com/some/path` is invalid as it contains the path name `/some/path`
|
||||
|
||||
✅ `example.com` is valid as it is the hostname of the website
|
||||
|
||||
---
|
||||
|
||||
### Invalid A
|
||||
A record has to be an array of ips.
|
||||
|
||||
❌ `"A": "211.211.211.211"` is invalid as it must be an array
|
||||
|
||||
❌ `"A": ["example.com"]` is invalid as it is not an ip address
|
||||
|
||||
✅ `"A": ["211.211.211.211", "211.211.211.212"]` is valid as it is an array of ips
|
||||
|
||||
---
|
||||
|
||||
### Invalid URL
|
||||
The URL must have a protocol (`http://` or `https://`) and must be something like `https://example.com` or `https://example.com/some/path`.
|
||||
|
||||
❌ `example.com` is invalid as it doesn't contain the protocol
|
||||
|
||||
✅ `https://example.com/some/path` is valid as it contains a protocol
|
||||
|
||||
---
|
||||
|
||||
### Only one record type
|
||||
Earlier, is-a-dev used to allow for handling https redirections along with CNAME but the way we handle requests has changed since then.
|
||||
This is why a record file can only contain one record type. Either `CNAME` or `A` or `URL`.
|
||||
|
||||
❌ `"CNAME": "example.com", "URL": "https://something.com"` is invalid as it should only contain one type of record, either CNAME or URL.
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# Publishing records
|
||||
> NOTE: This is only for maintainers with publishing access
|
||||
|
||||
Currently, the records are published using a manual github actions workflow.
|
||||
When all the PR's are merged and ready, go to `Actions > Publish records` and click on the `Run workflow` button to publish the merged records.
|
||||
|
||||
|
||||
|
||||
Sometimes it may log an error message while publishing saying some record(s) couldn't be published.
|
||||
Usually, the cause is related to some conflict while deleting and re-publishing.
|
||||
In those situations, running the workflow again will fix the issues.
|
||||
+1
-1
@@ -8,4 +8,4 @@
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "PSL validation record for is-a.dev",
|
||||
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
|
||||
"owner": {
|
||||
"username": "phenax",
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "https://github.com/publicsuffix/list/pull/1327"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "aanthr0",
|
||||
"email": "anthromadayt@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "proxy.ponbus.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Aaryan's personal website!",
|
||||
"repo": "https://github.com/aaryanporwal/My-website",
|
||||
"owner": {
|
||||
"username": "aaryanporwal",
|
||||
"email": "altaaryan@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://www.aaryanporwal.me/"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"description": "this a link to my website",
|
||||
"owner": {
|
||||
"username": "avcado",
|
||||
"username": "zbj2",
|
||||
"email": "devavcado@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "avcado.github.io"
|
||||
"CNAME": "zbj2.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ariel Beltrán Paneque",
|
||||
"repo": "https://github.com/abeltranp9476/abeltranp94.github.io",
|
||||
"owner": {
|
||||
"username": "abeltranp9476",
|
||||
"email": "abeltran.9476@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abeltranp9476.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Link to my portfolio site.",
|
||||
"repo": "https://github.com/abh80/abh80.github.io",
|
||||
"owner": {
|
||||
"username": "abh80",
|
||||
"email": "boatgithub27@gmail.com",
|
||||
"twitter": "trackerstars"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "abh80.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Abhay's portflio site",
|
||||
"repo": "https://replit.com/@EpicGamer007/EpicGamer007",
|
||||
"owner": {
|
||||
"username": "EpicGamer007",
|
||||
"email": "",
|
||||
"discord": "EpicGamer007#5702"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "26ece53e-5ca7-40d2-a7ad-cc13eb22808d.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "acaiberii's website",
|
||||
"repo": "https://github.com/AcaiBerii/acaiberii.github.io",
|
||||
"owner": {
|
||||
"username": "AcaiBerii",
|
||||
"email": "studiouifxdesignersandcoders@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "acaiberii.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mradigen",
|
||||
"email": "mr.adigen@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "mradigen.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io",
|
||||
"owner": {
|
||||
"username": "Agrim-Bansal",
|
||||
"email": "agrimx2@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "agrim-bansal.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ahmad Ainul Personal Site",
|
||||
"repo": "https://github.com/indiealistic",
|
||||
"owner": {
|
||||
"username": "indiealistic",
|
||||
"email": "ahmad@indiealistic.studio"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "30240e0a1ae9ba26d3f8.b-cdn.net"
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,6 @@
|
||||
"email": "ahmadeyamin@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ahmadeyamin.github.io"
|
||||
"CNAME": "ahmadeyamin.pages.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ahmad Ainul Personal Site",
|
||||
"repo": "https://github.com/indiealistic",
|
||||
"owner": {
|
||||
"username": "indiealistic",
|
||||
"email": "ahmad@indiealistic.studio"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "30240e0a1ae9ba26d3f8.b-cdn.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Albin's Personal Website",
|
||||
"repo": "https://github.com/albinvar/albinvar.github.io",
|
||||
"owner": {
|
||||
"username": "albinvar",
|
||||
"email": "albinvar@pm.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "albinvar.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "My developer website.",
|
||||
"repo": "https://github.com/Alex-idk",
|
||||
"owner": {
|
||||
"username": "Alex-idk",
|
||||
"email": "alex@alexidk.dev"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://alexidk.dev"
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -6,6 +6,6 @@
|
||||
"email": "alexiatilde@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ally.moe"
|
||||
"URL": "https://ally.moe"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "A personal portfolio site for all my projects and commissions.",
|
||||
"repo": "https://github.com/anamolsapkota/sapkotaanamol.com.np",
|
||||
"owner": {
|
||||
"username": "anamolsapkota",
|
||||
"email": "info@sapkotaanamol.com.np"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://sapkotaanamol.com.np"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "Personal site",
|
||||
"repo": "https://github.com/andrea-capigiri/",
|
||||
"owner": {
|
||||
"username": "andrea-capigiri",
|
||||
"email": "uadopo+isadev@pm.me"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"212.237.38.154"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Anondev's personal profile website",
|
||||
"repo": "https://github.com/anondev-sudo/anondev-sudo",
|
||||
"owner": {
|
||||
"username": "anondev-sudo",
|
||||
"email": "contact@anonym-dev.tk"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "glitch.edgeapp.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "A cool looking link for my Discord server! (and maybe sort of other stuff in future... If I can think of one...)",
|
||||
"repo": "https://github.com/Hazuki-san",
|
||||
"owner": {
|
||||
"username": "Hazuki-san",
|
||||
"email": "aoba@outlook.co.th",
|
||||
"twitter": "AocchiAoba"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://discord.gg/nKbATcMqSp"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Just my personal website",
|
||||
"repo": "https://github.com/AozoraDev",
|
||||
"owner": {
|
||||
"username": "AozoraDev",
|
||||
"email": "aozoradeveloper@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "node1.foxxy.id"
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
{
|
||||
"description": "My api",
|
||||
"owner": {
|
||||
@@ -10,4 +9,4 @@
|
||||
"185.87.48.199"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Develop website",
|
||||
"repo": "",
|
||||
"owner": {
|
||||
"username": "apollyon9",
|
||||
"email": "blzzardst0rm@gmail.com",
|
||||
"twitter": "sakurai072"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://eris9.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "arib21",
|
||||
"email": "aribmuhtasim22@gmail.com"
|
||||
},
|
||||
"description": "arib21's personal developer website",
|
||||
"repo": "https://github.com/arib21/arib21.github.io",
|
||||
"record": {
|
||||
"CNAME": "arib21.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Arslan's World (links and socials)",
|
||||
"repo": "https://github.com/sandwiching/sandwiching.github.io",
|
||||
"owner": {
|
||||
"username": "sandwiching",
|
||||
"email": "77godlike@bk.ru"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "sandwiching.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "ArtieFuzzz's personal website",
|
||||
"repo": "https://github.com/ArtieFuzzz/artiefuzzz.github.io",
|
||||
"owner": {
|
||||
"username": "ArtieFuzzz",
|
||||
"email": "jardenz.den@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "artiefuzzz.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Asuna Personal Website",
|
||||
"repo": "https://github.com/ehAsuna/ehAsuna.github.io",
|
||||
"owner": {
|
||||
"username": "ehAsuna",
|
||||
"email": "codeasaurousteam@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ehAsuna.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Coming Soon",
|
||||
"repo": "https://github.com/AtulPatil-me/AtulPatil-me.github.io",
|
||||
"owner": {
|
||||
"username": "Atul-Patil-99",
|
||||
"email": "atuluttampatil.1757@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "atulpatil-me.github.io"
|
||||
}
|
||||
}
|
||||
+4
-4
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"description": "ATZU's website",
|
||||
"description": "Atzu's Personal Website",
|
||||
"repo": "https://github.com/z3ro0k",
|
||||
"owner": {
|
||||
"username": "z3ro0k",
|
||||
"email": "zerok636@gmail.com"
|
||||
"username": "Atzu",
|
||||
"email": "atzu@nextgenteam.tech"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "atzu.xyz"
|
||||
"URL": "https://atzu.studio"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "An average developer's blog",
|
||||
"repo": "https://github.com/AverageHelper/AverageHelper.github.io",
|
||||
"owner": {
|
||||
"username": "AverageHelper",
|
||||
"email": "avghelper@mailbox.org",
|
||||
"twitter": "avghelper"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://averagehelper.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Official WEBSITE OF aVNOOR gAMERZ",
|
||||
"repo": "https://github.com/Avnoor-Gamerz/avnoor-gamerz.github.io",
|
||||
"owner": {
|
||||
"username": "avnoor-gamerz",
|
||||
"email": "avnoorchahal001@gmail.com",
|
||||
"twitter": "avnoor-gamerz"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "avnoor-gamerz.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Aypro's personal website",
|
||||
"repo": "https://github.com/aypro-droid/aypro-droid.github.io",
|
||||
"owner": {
|
||||
"username": "aypro-droid",
|
||||
"email": "ayprogaming1@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "aypro-droid.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "I like balloons! ... Ah, Isn't it such an item?",
|
||||
"repo": "https://github.com/fu-sen/balloon.is-a.dev",
|
||||
"owner": {
|
||||
"username": "BALLOON | FU-SEN",
|
||||
"email": "balloonakafusen+isadev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "vps35.heliohost.us"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -5,6 +5,6 @@
|
||||
"twitter": "bashoudev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bashoudev.ga"
|
||||
"URL": "https://bashoudev.ga"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Bedant Hota's Portfolio",
|
||||
"repo": "https://github.com/bedantH/bedantH.github.io",
|
||||
"owner": {
|
||||
"username": "bedantH",
|
||||
"email": "mohanesh.h2003@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bedantH.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "my website",
|
||||
"repo": "https://github.com/Bedrock16",
|
||||
"owner": {
|
||||
"username": "atharv",
|
||||
"email": "youbed61@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"34.120.194.28"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Belle's website",
|
||||
"repo": "https://github.com/bellesea/personalwebsite",
|
||||
"owner": {
|
||||
"username": "bellesea",
|
||||
"email": "bellesee1212@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bellesea.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Aman Bhatt's personal website",
|
||||
"repo": "https://github.com/bhattcodes/bhattcodes.github.io",
|
||||
"owner": {
|
||||
"username": "bhattcodes",
|
||||
"email": "bhatt.codes@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "bhattcodes.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "discord service for bots free",
|
||||
"owner": {
|
||||
"username": "Ihzy-Dev",
|
||||
"email": "sksksdev@my.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dns.techhost.live"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My Personal website.",
|
||||
"repo": "https://github.com/itsbravestone",
|
||||
"owner": {
|
||||
"username": "itsbravestone",
|
||||
"email": "imbravestone@zarena.ga",
|
||||
"twitter": "imbravestone"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://imbravestone.ga"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "cjdenio",
|
||||
"email": "",
|
||||
"twitter": "CalebDenio"
|
||||
},
|
||||
"repo": "https://github.com/cjdenio/site-frontend",
|
||||
"record": {
|
||||
"URL": "https://calebden.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "code-a-bit",
|
||||
"repo": "https://github.com/carlosgiralt/carlosgiralt.github.io",
|
||||
"owner": {
|
||||
"username": "carlosgiralt",
|
||||
"email": "",
|
||||
"twitter": "@cagiraltt"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "carlosgiralt.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Carmelo Velardo",
|
||||
"repo": "https://github.com/2dvisio/2dvisio.github.io",
|
||||
"owner": {
|
||||
"username": "2dvisio",
|
||||
"email": "[name.lastname]@gmail.com",
|
||||
"twitter": "2dvisio"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "2dvisio.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"description": "Main domain for file server.",
|
||||
"repo": "https://github.com/realCartar",
|
||||
"owner": {
|
||||
"username": "realCartar",
|
||||
"email": "",
|
||||
"twitter": "cartar0058"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"209.126.0.170"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "CompuGenius Programs creates programs and games to better the computer world.",
|
||||
"repo": "https://github.com/CompuGenius/cgprograms",
|
||||
"owner": {
|
||||
"username": "compugenius",
|
||||
"email": "github@cgprograms.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://cgprograms.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Redirection domain for my personal website",
|
||||
"repo": "https://github.com/cfanoulis/fanoulis.dev",
|
||||
"owner": {
|
||||
"username": "cfanoulis",
|
||||
"email": "domains@fanoulis.dev"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://fanoulis.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "My portfolio",
|
||||
"repo": "https://github.com/chitrashrigond/chitrashrigond.github.io",
|
||||
"owner": {
|
||||
"username": "chitrashrigond",
|
||||
"email": "chaitragond@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "chitrashrigond.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Main Pages",
|
||||
"repo": "https://github.com/CinnamonShrine/CinnamonShrine.github.io",
|
||||
"owner": {
|
||||
"username": "CinnamonShrine",
|
||||
"email": "marifbillah524@gmail.com",
|
||||
"twitter": "CinnamonShrine"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cinnamonshrine.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Cloudy's Site",
|
||||
"repo": "https://github.com/cloudysleet/cloudysleet.github.io/",
|
||||
"owner": {
|
||||
"username": "Cloudysleet",
|
||||
"email": "cloudzareonsky@gmail.com",
|
||||
"twitter": "@cloudysleet"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "cloudysleet.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "In a hole in the ground there lived a hobbit",
|
||||
"repo": "https://github.com/codeshard/codeshard.github.io",
|
||||
"owner": {
|
||||
"username": "codeshard",
|
||||
"email": "ozkar.garcell@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "codeshard.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Link to colewilson.xyz",
|
||||
"repo": "https://github.com/cole-wilson/colewilson.xyz",
|
||||
"owner": {
|
||||
"username": "cole-wilson",
|
||||
"email": "support@colewilson.xyz"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://colewilson.xyz"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CoolCoderSJ",
|
||||
"email": "CoolCoderSJ@gmail.com"
|
||||
},
|
||||
"description": "Portfolio",
|
||||
"record": {
|
||||
"CNAME": "coolcodersj.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Cosmic6811",
|
||||
"email": "jadenweong@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "20cd3f94-9e6c-425c-bb20-8a121e88cf78.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Crispy's Development Website",
|
||||
"repo": "https://github.com/Crispy-Cream/Crispy",
|
||||
"owner": {
|
||||
"username": "Crispy-Cream",
|
||||
"email": "crispy@vibebot.me"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "4453c438-a580-4334-ab7c-56e7844eb705.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Dadcuy",
|
||||
"email": "dadcuy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dadcuy.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Hello! My name is Daniel, I am a developer that has been programming since 2018. This website shows some of the things I have created.",
|
||||
"owner": {
|
||||
"username": "hackermondev",
|
||||
"email": "",
|
||||
"twitter": "hackermondev"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "318af994-03f3-4928-9b7b-80839057c74e.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Danix421",
|
||||
"email": "danixdev421@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "danix421.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "danterusdev",
|
||||
"email": "danterusdev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "danterusdev.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Student and developer in the United Kingdom.",
|
||||
"repo": "https://github.com/davidjcralph",
|
||||
"record": {
|
||||
"URL": "https://davidjcralph.co.uk"
|
||||
},
|
||||
"owner": {
|
||||
"username": "davidjcralph",
|
||||
"email": "me@davidjcralph.co.uk"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "My Official Website, Made with HTML5",
|
||||
"repo": "https://github.com/deadshotofficial/deadshotofficial.github.io",
|
||||
"owner": {
|
||||
"username": "deadshotofficial",
|
||||
"email": "raj.deadshot8888@gmail.com",
|
||||
"twitter": "deadshot3r"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "deadshotofficial.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Personal Portfolio",
|
||||
"owner": {
|
||||
"username": "Deeksha2501",
|
||||
"email": "sharmadeeksha325@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://deekshasharma.vercel.app/"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/detox82517/detox82517.github.io",
|
||||
"owner": {
|
||||
"username": "Detox82517",
|
||||
"email": "detox07@gmx.net"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "detox82517.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gsdev215",
|
||||
"email": "dev1050d2@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "gsdev215.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "A personal portfolio site for all my projects and commissions.",
|
||||
"repo": "https://github.com/DeveloperJosh/Blue",
|
||||
"owner": {
|
||||
"username": "DeveloperJosh",
|
||||
"email": "joshwells409@gmail.com",
|
||||
"youtube": "godly-hosting"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "developerjosh.github.io"
|
||||
}
|
||||
}
|
||||
@@ -9,4 +9,4 @@
|
||||
"record": {
|
||||
"CNAME": "b1ackshadow.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/didiermunezero/didierm",
|
||||
"owner": {
|
||||
"username": "didiermunezero",
|
||||
"email": "didiermunezer38@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://munezero.me"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Portfolio of projects for DillonB07",
|
||||
"repo": "https://replit.com/@DillonB07/Portfolio",
|
||||
"owner": {
|
||||
"username": "dbarnes18",
|
||||
"email": "dillonbarnes07@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "54e62c47-7410-486b-aa0c-87691baac336.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"Dooly": "Dooly is a Dev.",
|
||||
"repo": "https://github.com/entry0917/doolyweb/",
|
||||
"owner": {
|
||||
"username": "entry0917",
|
||||
"email": "seeun0917@naver.com",
|
||||
"twitter": "sense09173"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "entry0917.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal Website",
|
||||
"repo": "https://github.com/Drago-Dev24/Drago-Dev24.github.io",
|
||||
"owner": {
|
||||
"username": "Drago-Dev24",
|
||||
"email": "blueldrago@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "drago-dev24.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Drish | Portfolio",
|
||||
"repo": "https://github.com/Drish-xD/Drish-xD.github.io",
|
||||
"owner": {
|
||||
"username": "Drish-xD",
|
||||
"email": "drish.xd@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "drish-xd.github.io"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -8,4 +8,4 @@
|
||||
"record": {
|
||||
"CNAME": "dsaw.github.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
{
|
||||
"description": "Educational Website",
|
||||
"repo": "https://github.com/dumkalpoly/dumkalpoly.github.io",
|
||||
"owner": {
|
||||
"username": "dumkalpoly",
|
||||
"email": "dumkalpoly@yahoo.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dumkalpoly.github.io"
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"description": "DwiiUnknown is a dev.",
|
||||
"repo": "https://github.com/ItzMeDwii/dwii.me",
|
||||
"repo": "https://github.com/ItzMeDwii/dwii",
|
||||
"owner": {
|
||||
"username": "ItzMeDwii",
|
||||
"email": "dwii5359@azalelnation.com"
|
||||
"email": "dwiiunknown@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://github.com/ItzMeDwii"
|
||||
"URL": "https://dwii.my.id/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "DyDestroyer's github pages site, do not expect much at all",
|
||||
"repo": "https://github.com/DyDestroyer1027/DyDestroyer1027.github.io",
|
||||
"owner": {
|
||||
"username": "DyDestroyer1027",
|
||||
"email": "",
|
||||
"discord": "dydestroyer#1027"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dydestroyer1027.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "This will soon be a dev portfolio for myself :)",
|
||||
"repo": "https://github.com/dylanjamesdev",
|
||||
"owner": {
|
||||
"username": "dylanjamesdev",
|
||||
"email": "dylan@tritan.gg"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://gitlab.com/team-tritan"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "331leo",
|
||||
"email": "331leo@kakao.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "dev.is.eddy.leok.kr"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "Bienvenue sur le site de el2zay ici vous pourrez trouver des informations sur moi ainsi que mes projets.",
|
||||
"repo": "https://github.com/el2zay/el2zay.github.io",
|
||||
"owner": {
|
||||
"username": "el2zay",
|
||||
"email": "el2zay.contact@gmail.com",
|
||||
"twitter": "el2zay",
|
||||
"discord": "el2zay#1234"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "el2zay.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Ella's Portfolio",
|
||||
"repo": "https://github.com/eilla1/ella.is-a.dev-redirect",
|
||||
"owner": {
|
||||
"username": "eilla1",
|
||||
"email": "exu6056@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "eilla1.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Emmaffle's Site - memorable redirect",
|
||||
"repo": "https://github.com/wafflecoffee/waffle.coffee",
|
||||
"owner": {
|
||||
"username": "wafflecoffee",
|
||||
"email": "emma@waffle.coffee"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "waffle.coffee"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal Portfolio",
|
||||
"repo": "https://github.com/GeopJr/geopjr.dev",
|
||||
"owner": {
|
||||
"username": "GeopJr",
|
||||
"email": "domains@geopjr.dev"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://geopjr.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Image / Video host.",
|
||||
"repo": "https://github.com/tootie112",
|
||||
"owner": {
|
||||
"username": "tootie112",
|
||||
"email": "",
|
||||
"discord": "Io.Netty#3118"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "api.has-cool.pics"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "home/croxx",
|
||||
"repo": "https://github.com/fabiancrx/fabiancrx.github.io",
|
||||
"owner": {
|
||||
"username": "fabiancrx",
|
||||
"email": "croxx5f@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "fabiancrx.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "faizath.github.io",
|
||||
"repo": "https://github.com/faizath/faizath.github.io",
|
||||
"owner": {
|
||||
"username": "faizath",
|
||||
"email": "faiz@ctemplar.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "faizath.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Just My Personal Website",
|
||||
"owner": {
|
||||
"username": "Faris0520",
|
||||
"email": "",
|
||||
"twitter": "Faris0520"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "glitch.edgeapp.net"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"description": "personal website ",
|
||||
"repo": "https://github.com/fatgrizzly",
|
||||
"owner": {
|
||||
"username": "fatgrizzly",
|
||||
"email": "soundar@secret.fyi"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
"89.163.215.190",
|
||||
"89.163.215.211"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "My personal website",
|
||||
"repo": "https://github.com/filip-769",
|
||||
"owner": {
|
||||
"username": "filip-769",
|
||||
"email": "filipdev769@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "web-1.hostnow.cz"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user