Merge branch 'main' into main

This commit is contained in:
DIBSTER
2023-11-30 19:36:55 -05:00
committed by GitHub
1575 changed files with 14853 additions and 5515 deletions
View File
+5 -12
View File
@@ -1,5 +1,5 @@
name: Checks
on: [pull_request]
on: [pull_request, workflow_dispatch]
jobs:
validation:
@@ -9,15 +9,8 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup node v16
uses: actions/setup-node@v1
- uses: oven-sh/setup-bun@v1
with:
node-version: '16'
- name: Install dependencies
uses: borales/actions-yarn@v2.0.0
with:
cmd: install --ignore-engines --frozen-lockfile
- name: Run tests
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
bun-version: 1.0.3
- run: bun install
- run: bun test
+6 -9
View File
@@ -12,16 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: borales/actions-yarn@v2.0.0
- uses: oven-sh/setup-bun@v1
with:
cmd: install --ignore-engines
- name: Running tests
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
bun-version: 1.0.3
- run: bun install
- run: bun test
- name: Publishing records
env:
CI: 1
NODE_ENV: production
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
@@ -29,6 +28,4 @@ jobs:
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
uses: borales/actions-yarn@v2.0.0
with:
cmd: publish-records
run: bun run publish-records
+26
View File
@@ -0,0 +1,26 @@
name: URL Validation
on:
schedule:
- cron: '0 0 * * 1' # At 00:00 on Monday
workflow_dispatch:
jobs:
validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup Up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install requests
- run: python tests/url-validation.py
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: URL Validiation Result
path: url-validation-result.json
retention-days: 7
+8 -4
View File
@@ -30,12 +30,15 @@ jobs:
- name: test
run: cat domains/_acme-challenge.json
- name: Install Yarn dependencies
run: yarn install --ignore-engines
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.3
- run: bun install
- name: Publishing records
env:
CI: 1
NODE_ENV: production
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
@@ -43,7 +46,7 @@ jobs:
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
run: yarn publish-records
run: bun run publish-records
- name: Sleep
run: sleep 10m
shell: bash
@@ -55,6 +58,7 @@ jobs:
- name: removing records
env:
CI: 1
NODE_ENV: production
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
@@ -62,4 +66,4 @@ jobs:
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
run: yarn publish-records
run: bun run publish-records
+2 -1
View File
@@ -1,3 +1,4 @@
node_modules/
*.env.*
*.env.production
*.log
is-a-dev-cert/
+8 -6
View File
@@ -16,12 +16,17 @@
<a href="https://discord.gg/PZCGHz4RhQ"><img alt="Discord Server" src="https://discord.com/api/guilds/830872854677422150/widget.png?style=banner2"></a>
</p>
## Issues
If you have any problems then feel free to open a issue on github.
If you have an issue that contains confidental infomation then email hello@maintainers.is-a.dev any other emails will be ignored.
## Register
### Automated Registration
Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your github account and click the register page in the navbar. Fill out some questions and it will all happen automagically!
Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your GitHub account and click the register page in the navbar. Fill out some questions and it will all happen automatically!
Another method is to join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing.
Another method is to join our [Discord server](https://discord.gg/PZCGHz4RhQ), head to the commands channel and run `/register`. The bot will ask you a few questions then will generate your PR and domain automatically. The bot also allows for domain deletion and editing.
### Manual Registration
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
@@ -53,10 +58,7 @@ is-a-dev register
```
## Status
You can check the uptime of our services on our [status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw).
[![Uptime Robot - DNS](https://img.shields.io/uptimerobot/ratio/m787472645-ec25e3920c7af893a7c66f19?label=uptime%20-%20dns&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472645)
[![Uptime Robot - Redirect](https://img.shields.io/uptimerobot/ratio/m787472617-240f4d61a5439a87becb2cf9?label=uptime%20-%20redirections&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472617)
You can check the uptime of our services on our [status dashboard](https://status.is-a.dev).
### Similar Services
If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains).
Executable
BIN
View File
Binary file not shown.
+1 -2
View File
@@ -3,11 +3,10 @@ let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-18_x
yarn
docker-compose
dnsutils
#certbot
bun
];
in
pkgs.stdenv.mkDerivation {
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayr.link"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayr.link"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "cy920820",
"email": "cuiyang673308817@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
-13
View File
@@ -1,13 +0,0 @@
{
"description": "redirects to my website",
"repo": "https://github.com/18o4/18o4.github.io",
"owner": {
"username": "18o4",
"email": "",
"discord": "18O4#4350",
"discordUserID": "279894305630453760"
},
"record": {
"URL": "https://18o4.tk"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "1ly4s0",
"email": "ilyaslamzouri2@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "1NO26",
"email": "ali2626albayrak@gmail.com"
},
"record": {
"URL": "https://whub.pro"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "21Z",
"email": "hamdankalliyil@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Url redirect to cutt37.is-a.dev",
"repo": "https://github.com/37cut/37cut.github.io",
"owner": {
"username": "37cut",
"email": "cutt37@outlook.com"
},
"record": {
"URL": "https://cutt37.is-a.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "3kh0",
"email": "echo-the-coder@tuta.io"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "4cxa",
"email": "kurdiabood123@gmail.com"
},
"record": {
"CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "VerloxDevs",
"email": "VorlexDevs@outlook.com"
},
"record": {
"CNAME": "9fc746bd-8245-4dda-be35-8c34a71a6ff9.id.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal profile",
"repo": "https://github.com/4d62/4d62.github.io",
"owner": {
"username": "4d62",
"email": "4d62@proton.me"
},
"record": {
"CNAME": "4d62.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "62radio.is-a.dev",
"repo": "https://github.com/radio-indonesia/radio-indonesia.github.io",
"owner": {
"username": "lrmn7",
"email": "lrmn.dev@gmail.com",
"discord": "romanromannya#0"
},
"record": {
"CNAME": "radio-indonesia.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "70A5",
"email": "joas.van.der.eerden@outlook.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "baratt-88",
"email": "anisaputry0708@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "nobuyaki",
"email": "contact@0xviel.my.id",
"discord": "445073800850046977"
},
"record": {
"TXT": "dh=3553e848300a672fa174b27085b19d419d95ef75"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
"email": "sweepalf@gmail.com"
},
"record": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"record": {
"TXT": "dh=e71ddcd3beca6bbd44125eb4d861d4cf28eed0c8"
}
}
@@ -4,6 +4,6 @@
"email": "stefano.delprete.08@gmail.com"
},
"record": {
"TXT": "27c2dc9cd3e8a0a37947e82ab6f637"
"TXT": "dh=8fb11c7ecad141914be5cc41aa1b4569dcd14f6c"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"record": {
"TXT": "dh=03933534192052d1ca904fb933de9acde3b4ed48"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
"twitter": "@jimmyyo45639462",
"discord": "xiaoxi_tw#0"
},
"record": {
"TXT": "dh=1001abef3571d8f5aa7d6d94543d8409f9e786ea"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "JadeBetty",
"email": "",
"discord": "758617912566087681"
},
"record": {
"TXT": "dh=94e84997f373f2235c194f248969912336c5c0e8"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "KrazyKleb",
"email": "krazykleb@outlook.com"
},
"record": {
"TXT": "dh=3e455eb128d3f2996cd8226c6666872d617d7bdf"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "KrazyKleb",
"email": "krazykleb@outlook.com"
},
"record": {
"TXT": "dh=9b437fc3639b73eb33fe9b536d5ad6acbec42dd1"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "GoodBoyNeon",
"discord": "neonthedeveloper",
"twitter": "NeonTheNerd",
"email": "goodboyneon03@gmail.com"
},
"record": {
"TXT": "dh=9179ff512ac0562aeebd4d418a565cd7208cdfb2"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "sahmed011",
"email": "sufyanmishal@gmail.com"
},
"record": {
"TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "oxmc",
"email": "oxmc7769.mail@gmail.com",
"discord": "oxmc7769"
},
"record": {
"TXT": "dh=6493e80ff0645ec8c706643ae6e357066becb660"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"record": {
"TXT": "dh=4ded2f0ba889f8dad38ad210e9a015c180dcc6c8"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"record": {
"TXT": "dh=a34d656a6fb91723bfe4f87e413345df85ca74f7"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ShingSemicolon",
"email": "Shing.XD.0602@gmail.com"
},
"record": {
"TXT": "dh=df5daefdc7745f38295b3f89ac5de5373eec9c6c"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"record": {
"TXT": "dh=f6d71b43aecaa5a4ea3534d21f11f6b0e4559d8a"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "tat2008",
"email": "tuan.trananh2008@gmail.com"
},
"record": {
"TXT": "dh=9abe38f80f0a7adbf9ef20a7048ff7dd399d984b"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "tomgxz",
"email": "tomgxz138@gmail.com"
},
"record": {
"TXT": "dh=ead80df9c64ea8aecd35e8a291ef261f0f26e133"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "turvenuija1",
"email": "akulehtola123@gmail.com"
},
"record": {
"TXT": "dh=6e9f6180791c2d3ba3454777dde4d4637bc66c17"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
"twitter": "@jimmyyo45639462",
"discord": "xiaoxi_tw#0"
},
"record": {
"TXT": "dh=9e975563be399e84dd4007a4638f27e79128dcab"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ZiynCS",
"email": "NotZiyn@gmail.com"
},
"record": {
"TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
"email": "sweepalf@gmail.com"
},
"record": {
"TXT": "9568f60569"
}
}
@@ -0,0 +1,11 @@
{
"owner": {
"username": "CuteDog5695",
"email": "cutedog5695@gmail.com",
"discord": "cutedog5695",
"twitter": "cutedog5695"
},
"record": {
"TXT": "cd8aac10494e4b5b76656163a11508"
}
}
@@ -0,0 +1,10 @@
{
"description": "GitHub Pages verification for devon.is-a.dev",
"owner": {
"username": "D-Pow",
"email": "D-Pow@users.noreply.github.com"
},
"record": {
"TXT": "cec54b510828f770750c1b17cad7f2"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Diordnas",
"email": "cassthepurple@gmail.com"
},
"record": {
"TXT": "756d917b8c992b5032094d6765915b"
}
}
@@ -0,0 +1,10 @@
{
"description": "GitHub Pages verification for foxsden.is-a.dev",
"owner": {
"username": "FoxsDenYT",
"email": "foxsdenyt@gmail.com"
},
"record": {
"TXT": "37455d1a9cf706acc4f0cd6ada2ce7"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Stacksyz",
"email": "thedevmonke@gmail.com"
},
"record": {
"TXT": "121e8450b6aa5b9edbe73dd077ca57"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Blob2763",
"email": "blob2763@gmail.com"
},
"record": {
"TXT": "c5ac9060fffaa7b40b58852449f983"
}
}
@@ -0,0 +1,11 @@
{
"description": "Personal portfolio website (domain verification)",
"repo": "https://github.com/ALBINPRAVEEN/albinpraveen.github.io",
"owner": {
"username": "albinpraveen",
"email": "hi@albinpraveen.com"
},
"record": {
"TXT": "815094cd16aed1ad1a2eb8306c390a"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "aravinds-arv",
"email": "aravinds.arv@pm.me"
},
"record": {
"TXT": "4596a3ed04da898883da2218983b90"
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "sxurabh",
"email": "saurabhkirve@gmail.com"
},
"record": {
"TXT": "e587577c97f73d2047aaf6ec8ff92c"
}
}
@@ -4,6 +4,6 @@
"email": "iamchoirilfk@gmail.com"
},
"record": {
"URL": "https://cfhoiril.github.io/who-is-choiril"
"TXT": "9b283f49dbeb511d5060e9f26a83b4"
}
}
@@ -4,6 +4,6 @@
"email": "cp@imtaqin.id"
},
"record": {
"TXT": "b300a7cdb4c929b57cae7e0bf0ab69"
"TXT": "54ca8d4fa780d986e86c1306c00519"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "jb3",
"email": "joe@jb3.dev"
},
"record": {
"TXT": "b10c435ad8d9bb1a305cf52669e9ad"
}
}
@@ -1,9 +1,9 @@
{
"owner": {
"username": "Krrish313",
"username": "k22rma",
"email": "krrishsharma.ks12345@gmail.com"
},
"record": {
"URL": "https://github.com/krrish313"
"TXT": "c4d4e7c7ad03a88fd89ea4f1beb994"
}
}
@@ -1,6 +1,6 @@
{
"owner": {
"username": "is-a-dev",
"username": "liancastellon",
"email": "liancg@gmail.com"
},
@@ -0,0 +1,10 @@
{
"owner": {
"username": "likalium",
"email": "",
"discord": "likalium"
},
"record": {
"TXT": "57407626f3a1e351e728a974c6d5af"
}
}
@@ -0,0 +1,10 @@
{
"description": "GitHub Pages verification for mackrz.is-a.dev",
"owner": {
"username": "mackrz",
"email": "macio181@gmail.com"
},
"record": {
"TXT": "5a7205dd21c68bf953f930899845d9"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "noahziheng",
"email": "noahgaocn@outlook.com"
},
"record": {
"TXT": "a25695a5c49f374f6eb483ff49c7c7"
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "not-a-ethan",
"email": "",
"discord": "not_ethan."
},
"record": {
"TXT": "6a37d74710c72cb55ff05fffd71974"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "p3nguin-kun",
"email": "p3nguinkun@proton.me"
},
"record": {
"TXT": "5c46702c7db5dc72a476dec9da3d34"
}
}
@@ -0,0 +1,11 @@
{
"repo": "https://github.com/plu5/plu5.github.io",
"owner": {
"username": "plu5",
"email": "ctre@users.sourceforge.net",
"twitter": "preminster"
},
"record": {
"TXT": "1d92c5eb70762c032ba6d32b9b631e"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "revolutionisme",
"email": "revolutionisme@gmail.com"
},
"record": {
"TXT": "96bdd0268b2a0bb2c79eaeae1fd833"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "RivioxGaming",
"email": "rivioxyt@hotmail.com"
},
"record": {
"TXT": "2f2432d565a3e7e8f3a4577c0e4a90"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "roadblockeddev",
"email": "roadblockeddevcontact@skiff.com"
},
"record": {
"TXT": "f255fd01482003b03f51e13141c132"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "SebiTalent04",
"email": ""
},
"record": {
"TXT": "8139f556926b84918edeb68fa50b47"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "stardust-kyun",
"email": "stardust-kyun@proton.me"
},
"record": {
"TXT": "714f8a049247726086dbea6777c092"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "SuhasDissa",
"email": "suhasdissa@gmail.com"
},
"record": {
"TXT": "50e98ca19e56d314f4ab5b37d19d4b"
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "berzcode",
"email": "saurabhkirve@gmail.com"
},
"record": {
"TXT": "e587577c97f73d2047aaf6ec8ff92c"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "vyshuks",
"email": "vyshuks@gmail.com"
},
"record": {
"TXT": "0cb8ba615b779ff95bfe738257a888"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "9898video",
"email": "548625653@qq.com"
},
"record": {
"CNAME": "mg.707077.xyz"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "A1X5H04",
"email": "alishbaig2004@gmail.com"
},
"description": "a1x5h04's Portfolio",
"repo" : "https://github.com/a1x5h04/portfolio",
"record": {
"CNAME": "a1x5h04.pages.dev"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "aaaminee",
"email": "amineoumellouk@yahoo.com"
},
"record": {
"URL": "https://aaaminee.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "aadarshKsingh",
"email": "aadarshkumarsingh198@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "GauravPlxyz",
"email": "polsagyipols6@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "AakrishtSP",
"email": "akrisht62@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "antoripdas",
"email": "aantaripdas@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AaravAtGit",
"email": "aarav54897@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "gbgdonttalk",
"email": "d1qtwmsmdga@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"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"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AayushBharti",
"email": "aayushbh2002@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AayushBharti",
"email": "aayushbh2002@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AayushBharti",
"email": "aayushbh2002@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "AleaToir3",
"email": "aleatoir3@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "5enox",
"email": "animikantan@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "FIRSTB0SS",
"email": "abhiwa6@protonmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "abhinavcool42",
"email": "abhinavcool42@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "goesbyabhi",
"email": "abxisxekpanda@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "abhishek-pb1",
"email": "studentabhishekpb@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+1 -4
View File
@@ -1,12 +1,9 @@
{
"repo": "https://github.com/AceyDoCodes",
"description": "Email ;-;",
"owner": {
"username": "AceyDoCodes",
"email": "aceygoesboom@gmail.com"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
"CNAME": "website-5qo.pages.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "ActivateClosur3",
"email": "activateclosureyt@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "waitwhatActo",
"email": "acton.clever@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "ad1107",
"email": "nguyenanhducxmen@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AdamEXu",
"email": "adam.yi.xu@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["hosts.is-a.dev"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "AdamOusmer",
"email": "aousmer03@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"AAAA": ["2a00:da00:1800:83a4::1"],
"MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 include:icloud.com ~all"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Adarsh-Inamdar",
"email": "adarshinamdar2003@gmail.com"
},
"record": {
"A": ["217.174.245.249"],
"TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
"MX": ["hosts.is-a.dev"]
}
}

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