Merge branch 'main' into main

This commit is contained in:
GizzyUwU
2024-09-22 11:09:22 +01:00
committed by GitHub
5771 changed files with 50914 additions and 30657 deletions
View File
+4 -2
View File
@@ -1,4 +1,6 @@
* @phenax
* @phenax @wdhdev
/.github/ @wdhdev
/domains/ @is-a-dev/maintainers @is-a-dev/trial-maintainers
domains/ @is-a-dev/maintainers
*.md @is-a-dev/maintainers
+2 -1
View File
@@ -1,2 +1,3 @@
custom: ["https://www.paypal.me/phenax", "https://www.buymeacoffee.com/phenax"]
custom: ["https://www.paypal.me/phenax"]
liberapay: phenax
buy_me_a_coffee: phenax
+2 -3
View File
@@ -6,9 +6,8 @@ labels: bug
---
### Your subdomain
### Expected outcome
### Observed outcome
+1 -2
View File
@@ -6,5 +6,4 @@ labels: question
---
You can elaborate here
### Your question
+4 -2
View File
@@ -6,8 +6,10 @@ labels: report-abuse
---
Domain you want to report:
### Domain
### Reason
Explain why you think this domain is being abused
<!-- Explain why you think this domain is being abused -->
### Proof
<!-- Proof of the domain being abused -->
+1
View File
@@ -6,3 +6,4 @@ labels: suggestion
---
### What do you want added?
+2 -3
View File
@@ -6,7 +6,6 @@ labels: support
---
Your domain name:
Explain any issues you are facing
### Your subdomain
### The issue
+5 -4
View File
@@ -1,15 +1,16 @@
<!-- Please complete this template so we can review your pull request faster. -->
## Requirements
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above.
Please note that we reserve the rights not to accept any domain at our own discretion.
- [ ] The file is in the `domains` folder and is in the JSON format.
- [ ] The file's name is all lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
- [ ] You have completed your website. <!-- This is not required if the domain you're registering is for emails. -->
- [ ] The website is reachable. <!-- This is not required if the domain you're registering is for emails. -->
- [ ] You're not using Vercel or Netlify. <!-- This is not required if you're using an URL record. -->
- [ ] The CNAME record doesn't contain `https://` or `/`. <!-- This is not required if you are not using a CNAME record. -->
- [ ] There is sufficient information at the `owner` field. <!-- You need to have your email presented at `email` field. If you don't want to provide your email for any reason, you can specify another social platform (e.g. Discord or Twitter) so we can contact you. -->
- [ ] There is sufficient information at the `owner` field. <!-- You need to have your email presented at `email` field. If you don't want to provide your email for any reason, you can specify another social platform (e.g. Twitter) so we can contact you. -->
## Website Link/Preview
<!-- Please provide a link or preview of your website below. -->
<!-- Please provide a link or preview of your website below. If you can't make the website visible, then an image of the website is also fine! -->
-26
View File
@@ -1,26 +0,0 @@
name: Helper
on:
pull_request:
types:
- closed
jobs:
instructions:
name: instructions
runs-on: ubuntu-latest
steps:
- run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }}
if: github.event.action == 'closed' && github.event.pull_request.merged == true
# - uses: actions/checkout@v2
# - name: Comment
# if: github.event.action == 'closed' && github.event.pull_request.merged == true
# uses: actions/github-script@v3
# with:
# github-token: ${{secrets.GITHUB_TOKEN}}
# script: |
# 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'))
# console.log('Domain');
# await instructions(context, github);
+7 -12
View File
@@ -1,23 +1,18 @@
name: Checks
on: [pull_request]
on: [pull_request, workflow_dispatch]
jobs:
validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup node v15
uses: actions/setup-node@v1
- uses: oven-sh/setup-bun@v1
with:
node-version: '15'
- name: Install dependencies
uses: borales/actions-yarn@v2.0.0
with:
cmd: install --ignore-engines --frozen-lockfile
bun-version: latest
- run: bun install
- name: Run tests
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
run: bun test
+7 -11
View File
@@ -4,24 +4,22 @@ 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@v3
- uses: borales/actions-yarn@v2.0.0
- uses: actions/checkout@v4
- 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: latest
- 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 +27,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
+46
View File
@@ -0,0 +1,46 @@
name: Raw API
on:
push:
branches: [main]
paths:
- "domains/*"
- ".github/workflows/raw-api.yml"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-raw-api
cancel-in-progress: true
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: is-a-dev/raw-api
path: raw-api
token: ${{ secrets.BOT }}
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Update Data
run: node raw-api/scripts/update.js
- name: Commit
uses: cpina/github-action-push-to-another-repository@main
with:
source-directory: "raw-api"
destination-github-username: is-a-dev
destination-repository-name: raw-api
user-email: actions@github.com
user-name: "GitHub Actions"
env:
API_TOKEN_GITHUB: ${{ secrets.BOT }}
+2 -2
View File
@@ -13,8 +13,8 @@ jobs:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 20
days-before-stale: 7
days-before-close: 3
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue 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'
exempt-issue-labels: 'no-stale'
+2 -1
View File
@@ -1,3 +1,4 @@
node_modules/
*.env.*
*.env.production
*.log
is-a-dev-cert/
+4 -2
View File
@@ -5,5 +5,7 @@ This is a Code of Conduct for any interactions in this repository. This includes
- **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites.
- **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites.
If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue.
The abuse reports will be investigated and the necessary action will be taken!
## Reporting abuse
If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue.
The abuse reports will be investigated and the necessary action will be taken.
+12 -15
View File
@@ -1,24 +1,21 @@
# Contributing
When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md).
You should also read up on this project's [code of conduct](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md).
## Pull requests
You can create an pull request for the following reasons -
* Adding, changing or removing a domain file you own.
* Fixing a bug in the scripts or CI.
* Fix an error in the documentation.
- Adding, changing or removing a domain file you own.
- Fixing a bug in the scripts or CI.
- Fix an error in the documentation.
#### Domains
Changes to domain files will follow the given process -
* PR will be reviewed and merged to `main` branch.
* The records will be published as soon as the PR is merged.
* The changes should reflect soon after publishing.
- Your pull request will be reviewed and merged into `main` branch.
- The records will be published as soon as the PR is merged.
- The changes should reflect soon after publishing.
## Issues
* **Report an abusive domain** - Create a new issue with the label `report-abuse`.
* **Report a problem with your domain** - Create a new issue with the label `support`.
* **Suggestions** - Create a new issue with the label `suggestion`.
* **For any questions** - Create a new issue with the label `question`.
* **Report any other issues related to this repository** - Create a new issue with any label that fits.
- **Report an abusive domain** - Create a new issue with the label `report-abuse`.
- **Report a problem with your domain** - Create a new issue with the label `support`.
- **Suggestions** - Create a new issue with the label `suggestion`.
- **For any questions** - Create a new issue with the label `question`.
- **Report any other issues related to this repository** - Create a new issue with any label that fits.
+5 -4
View File
@@ -5,17 +5,18 @@ 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 apt-get install -y unzip
RUN npm i -g n yarn && n 15.11
RUN bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'"
RUN node -v
RUN ~/.bun/bin/bun -v
WORKDIR /opt/app
COPY yarn.lock .
COPY bun.lockb .
COPY package.json .
RUN yarn install
RUN ~/.bun/bin/bun install
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
+12
View File
@@ -0,0 +1,12 @@
# is-a.dev Team
| Name | GitHub | Role |
|:-:|-|-|
| Akshay | [@phenax](https://github.com/phenax) | Owner |
| William | [@wdhdev](https://github.com/wdhdev) | Administrator |
| CuteDog5695 | [@CuteDog5695](https://github.com/CuteDog5695) | Maintainer |
| Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer |
| DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer |
| MaskDuck | [@MaskDuck](https://github.com/MaskDuck) | Maintainer |
| Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer |
| orangc | [@orxngc](https://github.com/orxngc) | Maintainer |
| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer |
+29 -34
View File
@@ -1,5 +1,5 @@
<p align="center">
<img alt="is-a-dev Banner" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png">
<img alt="is-a.dev Banner" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png">
</p>
<p align="center">
@@ -13,53 +13,48 @@
<p align="center"><strong>is-a-dev</strong> is a service that allows developers to get a sweet-looking ".is-a.dev" domain for their personal websites.</p>
<p align="center">
<a href="https://discord.gg/PZCGHz4RhQ"><img alt="Discord Server" src="https://discord.com/api/guilds/830872854677422150/widget.png?style=banner2"></a>
<a href="https://discord.gg/is-a-dev-830872854677422150"><img alt="Discord Server" src="https://invidget.switchblade.xyz/is-a-dev-830872854677422150"></a>
</p>
## Phishing emails alert
**We have been notified of scammers using emails in this repository to send phishing emails. Do NOT click any links in suspicious emails.**
If you would like to remove your email, remove it from your JSON file and provide a separate contact method (preferably Discord).
Leave the email field there, but just blank. Then add a separate contact method to your file.
Please see more information in issue https://github.com/is-a-dev/register/issues/14802.
## Issues
If you have any problems, feel free to [open a issue](https://github.com/is-a-dev/register/issues/new/choose).
If you have an issue that contains confidental infomation, send an email to security@m.is-a.dev.
## Register
### Manual Registration
> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge).
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`.
- [Read the documentation](https://is-a.dev/docs).
- [Fork](https://github.com/is-a-dev/register/fork) and star this repository
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`
- [Read the documentation](https://www.is-a.dev/docs)
- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!*
- After the pull request is merged, please allow up to 24 hours for the changes to propagate.
- After the pull request is merged, please allow up to 24 hours for the changes to propagate
- Enjoy your new `.is-a.dev` domain!
### CLI Registration
### Automated Registration
> [!WARNING]
> **When using automated registration, please ensure your records are valid. Please do NOT "test" out the system and create invalid PRs, it wastes maintainers' time.**
For issues with the CLI, **DO NOT OPEN AN ISSUE ON THIS REPOSITORY**, instead open an issue [here](https://github.com/wdhdev/is-a-dev-cli/issues/new).
Install the CLI:
```bash
npm install @is-a-dev/cli -g
```
Login to the CLI:
```bash
is-a-dev login
```
Register a subdomain on the CLI:
```
is-a-dev register
```
Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150), 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.
## 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)
### 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).
You can check the uptime of our services on our [status dashboard](https://is-a-dev.hrsn.net).
### Donate
If you like this project, please consider donating so we can keep this project 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"></a>
### Similar Services
If you want to find services similar to is-a.dev, take a look at [Free For Life](https://github.com/wdhdev/free-for-life#domains).
+3 -3
View File
@@ -1,6 +1,6 @@
# Security Policy
## Reporting a Vulnerability
## Reporting a vulnerability
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository.
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repo.
For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com).
However, for **higher severity vulnerabilities and bugs**, please email security@m.is-a.dev.
Executable
BIN
View File
Binary file not shown.
+1 -2
View File
@@ -3,11 +3,10 @@ let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-16_x
yarn
docker-compose
dnsutils
#certbot
bun
];
in
pkgs.stdenv.mkDerivation {
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "PogMaster9001",
"email": "",
"discord": "1190052608346435597"
},
"record": {
"CNAME": "projectdevs.net"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayrsn.me/"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "SatyamV7.is-a.dev",
"repo": "https://github.com/SatyamV7/SatyamV7.github.io",
"owner": {
"username": "SatyamV7",
"email": "satyamverma46@outlook.com"
},
"record": {
"CNAME": "SatyamV7.github.io"
}
"description": "SatyamV7.is-a.dev",
"repo": "https://github.com/SatyamV7/SatyamV7.github.io",
"owner": {
"username": "SatyamV7",
"email": "satyamverma46@outlook.com"
},
"record": {
"CNAME": "SatyamV7.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayrsn.me/"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "iamxani",
"email": "xenpei11@gmail.com"
},
"record": {
"CNAME": "iamxani.github.io"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "0ad.is-a.dev",
"owner": {
"username": "broduer40",
"email": "broduer@aogamers.net",
"discord": "[AoG+] Broduer#0331"
},
"record": {
"URL": "https://play0ad.com"
}
"description": "0ad.is-a.dev",
"owner": {
"username": "broduer40",
"email": "broduer@aogamers.net",
"discord": "[AoG+] Broduer#0331"
},
"record": {
"URL": "https://play0ad.com"
}
}
+22
View File
@@ -0,0 +1,22 @@
{
"description": "Personal Portfolio Website",
"repo": "https://github.com/0v90/0v90.github.io",
"owner": {
"username": "0v90",
"discord": "651519394673065989",
"email": ""
},
"record": {
"A": [
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.110.153"
]
}
}
+11 -11
View File
@@ -1,13 +1,13 @@
{
"owner": {
"username": "pythonmcpi",
"email": "user3456@insomnia247.nl",
"irc": "user3456@irc.insomnia247.nl/#shells",
"discord": "Little Furret#7901",
"note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
},
"description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
"record": {
"CNAME": "insomnia247.nl"
}
"owner": {
"username": "pythonmcpi",
"email": "user3456@insomnia247.nl",
"irc": "user3456@irc.insomnia247.nl/#shells",
"discord": "Little Furret#7901",
"note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
},
"description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
"record": {
"CNAME": "insomnia247.nl"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "0x1026",
"email": "me@hugovidafe.dev"
},
"record": {
"URL": "https://hugovidafe.dev"
}
}
+10 -10
View File
@@ -1,12 +1,12 @@
{
"description": "Yamaishi's website",
"repo": "https://github.com/0x3st/0x3st.github.io",
"owner": {
"username": "0x3st",
"email": "t.yamaishi@qq.com",
"twitter": "TenkutiYamaishi"
},
"record": {
"CNAME": "0x3st.github.io"
}
"description": "Yamaishi's website",
"repo": "https://github.com/0x3st/0x3st.github.io",
"owner": {
"username": "0x3st",
"email": "t.yamaishi@qq.com",
"twitter": "TenkutiYamaishi"
},
"record": {
"CNAME": "0x3st.github.io"
}
}
+9 -9
View File
@@ -1,11 +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"
}
"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"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "0xSuryax",
"email": "surya98613@gmail.com"
},
"record": {
"A": ["38.242.141.34"]
}
}
+10 -10
View File
@@ -1,12 +1,12 @@
{
"description": "0xviel github page",
"repo": "https://github.com/nobuyaki/nobuyaki.github.io",
"owner": {
"username": "nobuyaki",
"email": "contact@0xviel.my.id",
"discord": "445073800850046977"
},
"record": {
"CNAME": "nobuyaki.github.io"
}
"description": "0xviel github page",
"repo": "https://github.com/nobuyaki/nobuyaki.github.io",
"owner": {
"username": "nobuyaki",
"email": "contact@0xviel.my.id",
"discord": "445073800850046977"
},
"record": {
"CNAME": "nobuyaki.github.io"
}
}
+16
View File
@@ -0,0 +1,16 @@
{
"owner": {
"username": "0xzer0x",
"email": "youssefessamasu@gmail.com"
},
"record": {
"MX": [
"mx1.forwardemail.net",
"mx2.forwardemail.net"
],
"TXT": [
"forward-email=youssefessamasu@gmail.com",
"v=spf1 a include:spf.forwardemail.net include:_spf.google.com -all"
]
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Yunexiz",
"discord": "1040303561847881729",
"email": ""
},
"record": {
"A": ["185.199.109.153","185.199.108.153","185.199.110.153","185.199.111.153"]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "1.is-a.dev",
"owner": {
"username": "i-am-is-a-dev",
"email": "lx737456@gmail.com"
},
"record": {
"A": ["89.106.200.1"]
}
}
+15
View File
@@ -0,0 +1,15 @@
{
"description": "Email thingy",
"owner": {
"username": "QuinceTart10",
"email": "",
"discord": "862644161156218891"
},
"record": {
"MX": [
"a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
"a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
],
"TXT": "v=spf1 include:spf.seznam.cz ~all"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "PogMaster9001",
"email": "",
"discord": "1190052608346435597"
},
"record": {
"CNAME": "projectdevs.net"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal Website",
"repo": "https://github.com/navandarnidhi/navandarnidhi.github.io",
"owner": {
"username": "navandarnidhi",
"email": "nidhi.navandar@mescoeorg.onmicrsoft.com"
},
"record": {
"CNAME": "navandarnidhi.github.io"
}
}
-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"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
"repo": "https://github.com/EndingPencil/EndingPencil.github.io",
"owner": {
"username": "EndingPencil",
"email": "watsonsohil@gmail.com"
},
"record": {
"CNAME": "EndingPencil.github.io"
}
"description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
"repo": "https://github.com/EndingPencil/EndingPencil.github.io",
"owner": {
"username": "EndingPencil",
"email": "watsonsohil@gmail.com"
},
"record": {
"CNAME": "EndingPencil.github.io"
}
}
-10
View File
@@ -1,10 +0,0 @@
{
"owner": {
"username": "RainyXeon",
"email": "minh15052008@gmail.com"
},
"record": {
"CNAME": "5a3e476d-47ce-4088-9b34-42cdb8c3395b.id.repl.co"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "1st.is-a.dev",
"repo": "https://github.com/Rahuletto/1st",
"owner": {
"username": "Rahuletto",
"email": "rahulmarban@gmail.com"
},
"record": {
"CNAME": "d0720bf3-70d2-4b24-9273-b44ce8e0c708.id.repl.co"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "200anxy",
"email": "aadarshnair.p@gmail.com"
},
"record": {
"CNAME": "200anxy.github.io"
}
}
+8 -8
View File
@@ -1,10 +1,10 @@
{
"owner": {
"username": "2096779623",
"email": "2096779623@qq.com",
"telegram": "utermux_blog"
},
"record": {
"URL": "https://www.utermux.dev"
}
"owner": {
"username": "2096779623",
"email": "2096779623@qq.com",
"telegram": "utermux_blog"
},
"record": {
"URL": "https://www.utermux.dev"
}
}
+14
View File
@@ -0,0 +1,14 @@
{
"owner": {
"username": "21Z",
"email": "",
"discord": "780356848737058857"
},
"record": {
"MX": [
"mx1.improvmx.com",
"mx2.improvmx.com"
],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "PhoenixOrigin",
"email": "phoenixorigin171@gmail.com"
},
"record": {
"A": ["130.162.166.134"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "2giosangmitom",
"email": "yeuxacucodon.dev@proton.me"
},
"record": {
"CNAME": "2giosangmitom.github.io"
}
}
+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"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "3pls0de.is-a.dev.",
"repo": "https://github.com/3pls0de",
"owner": {
"username": "3pls0de",
"email": "naji.aka58@gmail.com"
},
"record": {
"URL": "https://lostpipel.blogspot.com"
}
"description": "3pls0de.is-a.dev.",
"repo": "https://github.com/3pls0de",
"owner": {
"username": "3pls0de",
"email": "naji.aka58@gmail.com"
},
"record": {
"URL": "https://lostpipel.blogspot.com"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "4-m4t",
"email": "e_serhat@hotmail.com"
},
"record": {
"CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
}
}
+7 -7
View File
@@ -1,10 +1,10 @@
{
"owner": {
"username": "404Dev-404",
"email": "anthonyvaldes318+404@gmail.com"
},
"owner": {
"username": "404Dev-404",
"email": "anthonyvaldes318+404@gmail.com"
},
"record": {
"CNAME": "404dev-404.github.io"
}
"record": {
"CNAME": "404dev-404.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "MysticalPvE",
"email": "",
"discord": "1229782675678826496",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.K-aVOrk2T-4Wp0VAaLx8W9V1QsToSmJJmlK-jJlb-Zzx6kpwvGMlemfsdLH4XQSksUlk6PD51_Mx7d83HzqgqiYb6zwx2-iSgfEn6fUKWlF09k1fWne_wS0sSjYiz6GluI6qNs9hh9buq19iGPVz9L16KWCvL0xnjQxBjVCiR0Q69p9Vaw3_5b7VEUnKQvomYkdbovZ2p10hzGmnrwtKkA0gboxJnqshcV-eUzav7LZJZOwbzoVPEODqdLbqCOlTBP4IJXNjkwKSNKsnQ6BorPydgmXNv4hCsuga3JKg2M438dLG9NK-H8U8Q4GHLk7sx797WY1EJ8AChvgojqX1Ag.OMEl4nD9pPVbIku9jIFcpA.qV3yol4qlMITrJUHTUtYxGLd7ARn8msshNlY6uMWmf8ZeIe7_RQdG-JV1f-rDEZLZX_FcDsE7c8kpOjy9ulW1uiFZW9lw-f0LEqywyLeZ94.K1K5YV-DWV_hIlL8X9l8jQ"
},
"record": {
"TXT": "4217803c2e3e461b9f07eb8be0320a79"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "44.is-a.dev",
"repo": "https://github.com/9xN/9xN.github.io",
"owner": {
"username": "9xN",
"email": "0@fbi.ac"
},
"record": {
"CNAME": "9xN.github.io"
}
"description": "44.is-a.dev",
"repo": "https://github.com/9xN/9xN.github.io",
"owner": {
"username": "9xN",
"email": "0@fbi.ac"
},
"record": {
"CNAME": "9xN.github.io"
}
}
+7 -7
View File
@@ -1,10 +1,10 @@
{
"owner": {
"username": "Akshay-Arjun",
"email": "akshayvollala779@gmail.com"
},
"owner": {
"username": "Akshay-Arjun",
"email": "akshayvollala779@gmail.com"
},
"record": {
"URL": "https://akshay-arjun.github.io/Akshay-Arjun"
}
"record": {
"URL": "https://akshay-arjun.github.io/Akshay-Arjun"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "MullerIsabella",
"email": "AlpineDreamer92@protonmail.com"
},
"record": {
"CNAME": "suisse.onrender.com"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "fiftys7vencode",
"email": "potatogamer34579@gmail.com"
},
"record": {
"A": ["185.199.108.153"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "shockbs",
"email": "apipherng@gmail.com"
},
"record": {
"URL": "https://shockbs.is-a.dev/"
}
}
+8 -8
View File
@@ -1,10 +1,10 @@
{
"repo": "https://github.com/5rq/5rq.github.io",
"owner": {
"username": "5rq",
"email": "600@fbi.ac"
},
"record": {
"CNAME": "5rq.github.io"
}
"repo": "https://github.com/5rq/5rq.github.io",
"owner": {
"username": "5rq",
"email": "600@fbi.ac"
},
"record": {
"CNAME": "5rq.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"
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "Portfolio website for 6502",
"repo": "https://github.com/nobody5050/nobody5050.github.io",
"owner": {
"username": "Nobody5050",
"email": "levibelland@gmail.com"
},
"record": {
"CNAME": "nobody5050.github.io"
}
"description": "Portfolio website for 6502",
"repo": "https://github.com/nobody5050/nobody5050.github.io",
"owner": {
"username": "Nobody5050",
"email": "levibelland@gmail.com"
},
"record": {
"CNAME": "nobody5050.github.io"
}
}
+1
View File
@@ -0,0 +1 @@
{"owner":{"username":"maskduck","email":"","discord":"716134528409665586"},"record":{"CNAME":"maskduck.pages.dev"}}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "7.is.a.dev why not",
"owner": {
"username": "JustDeveloper1",
"email": "justdeveloper@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"A": ["89.106.200.1"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "8-bittt",
"email": "8botted@gmail.com"
},
"record": {
"URL": "https://replit.com/@8bittt?path="
}
}
+9 -9
View File
@@ -1,11 +1,11 @@
{
"description": "The root domain for is-a.dev website",
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
"owner": {
"username": "phenax",
"email": "phenax5@gmail.com"
},
"record": {
"URL": "http://www.is-a.dev"
}
"description": "The root domain for is-a.dev website",
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
"owner": {
"username": "is-a-dev",
"email": ""
},
"record": {
"URL": "http://www.is-a.dev"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"email": "",
"discord": "1167825360151380032",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
},
"record": {
"CNAME": "af252befb545b3b27e96b5b9._acme.deno.dev"
}
}
@@ -0,0 +1,11 @@
{
"description": "JustStudio.API",
"owner": {
"username": "JustDeveloper1",
"email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"CNAME": "ec675496b91489e24d221965._acme.deno.dev"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"email": "",
"discord": "1167825360151380032",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
},
"record": {
"CNAME": "fe4cfa72d5862865fb2759c8._acme.deno.dev"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "denboy0123",
"email": "pochtaproverka01@gmail.com"
},
"record": {
"TXT": [
"FZo9g0GqRYR-fhmWc1QzbycfV5UZIE4bwh42BI81NDQ",
"V1N8tuJvEcUtltxMXLRvP0U1_jaAgsSJJ89MgyxpWUk"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Bananalolok",
"email": "",
"discord": "bananalol7678"
},
"record": {
"CNAME": "77c60266e3d311053d5b2fe1._acme.deno.dev"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "VaibhavSys",
"email": "vaibhavsys@protonmail.com"
},
"record": {
"CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"email": "",
"discord": "1167825360151380032",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
},
"record": {
"CNAME": "51de1eeaf31ce67a1c3f69aa._acme.deno.dev"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "RaafeyRaza",
"email": "raafeyraza1@gmail.com"
},
"record": {
"CNAME": "dc6fbbae-3aba-4a5d-9741-4b7a386b9151.acmedns.infinityfree.net"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"email": "",
"discord": "1167825360151380032",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
},
"record": {
"CNAME": "e6797667cd820de372823eb4._acme.deno.dev"
}
}
+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": "octyn-yt",
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
},
"record": {
"TXT": "dh=492dbadf8b48232a357717e9d54511826184e352"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "AcronicalYT",
"email": "acronicalbusiness@gmail.com",
"discord": "627045949998497792"
},
"record": {
"TXT": "dh=b787b100fba1eaf9de455acb506e5f6fdcf1e829"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "adoqet",
"email": "adoqet@gmail.com",
"discord": "614408768733708288"
},
"record": {
"TXT": "dh=3b5f69bbeb63aef097096698547869d0d47e36fb"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "octyn-yt",
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
},
"record": {
"TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Akatsuki2555",
"email": "akatsuki2555@proton.me",
"discord": "1226900455037075509"
},
"record": {
"TXT": "dh=30962b6c5cdbbd4629fdf0da9d0bf4c717f065e9"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "AKCord",
"email": "shrestha.aeniv@gmail.com"
},
"record": {
"TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "akshtt-dev",
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
"record": {
"TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "aloramiaa",
"email": "xaloramia@gmail.com"
},
"record": {
"TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "YouFoundAlpha",
"email": "",
"Discord": "661121998830960651",
"GitHub": "YouFoundAlpha",
"GitLab": "YouFoundAlpha",
"Mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "amol234545",
"email": "amolmilton@gmail.com"
},
"record": {
"TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "true1ann",
"email": "true1ann@tutamail.com"
},
"record": {
"TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Stef-00012",
"email": "",
"discord": "694986201739952229",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og"
},
"record": {
"TXT": "dh=e71ddcd3beca6bbd44125eb4d861d4cf28eed0c8"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ItzArman09",
"email": "itz.armxn@outlook.com"
},
"record": {
"TXT": "dh=508604a0381985579d65a0e9c8b241bc6186cc44"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ARVIN3108",
"email": "31arvin08@gmail.com"
},
"record": {
"TXT": "dh=f4de5717bd2c2b490973ead6cdd9a7c81d38fe5b"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ashishagarwal2023",
"email": "code.with.aasheesh@gmail.com"
},
"record": {
"TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "AzhamProdLive",
"email": "websitedomain.regroup588@passinbox.com",
"discord": "797534115935027271"
},
"record": {
"TXT": "dh=b3b9be236f1e61048cecc94f8e3e6a4accf9d6b5"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "bkmsstudio",
"email": "mmini15354424@gmail.com"
},
"record": {
"TXT": "dh=28e7384e869c06a1ca87f91b10fd14aefc7f4433"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "vornexx",
"email": "ajay.ramnath@courvix.com"
},
"record": {
"TXT": "dh=9834c3a11e7647463c3f62cbbbb0aa0442f503f6"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "B1ue-Dev",
"email": "b1uedev@outlook.com",
"twitter": "b1uedev"
},
"record": {
"TXT": "dh=17587955722bcb2745e20304b98cb5cbda716054"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "orxngc",
"discord": "orangc",
"email": "orangc@proton.me"
},
"record": {
"TXT": "dh=dff53e3c9534a4606fe07fef0142ab53acf4a0e4"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Caiden-P",
"email": "iididhejejdj@gmail.com",
"discord": "850820069310201896"
},
"record": {
"TXT": "dh=9edde4bc2a73469cb8653bf05ae22226397bc77a"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "calamitywoah",
"email": "krivojta@gmail.com"
},
"record": {
"TXT": "dh=2cd3fcd551a8d871e135c5613dccb097d9abcb03"
}
}

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