Merge branch 'main' into my_branch

This commit is contained in:
orangc
2024-12-12 10:25:49 +03:00
committed by GitHub
3581 changed files with 27997 additions and 10225 deletions
-6
View File
@@ -1,6 +0,0 @@
DOMAIN_USER=username
DOMAIN_API_KEY=apikey
DOMAIN_API_HOST=api-example.com
DOMAIN_API_PORT=2087
DOMAIN_DOMAIN=example.com
DOMAIN_HOST_IP=69.69.69.69
-1
View File
@@ -1 +0,0 @@
use_nix
-31
View File
@@ -1,31 +0,0 @@
{
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:json/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": ["error", 2],
"max-len": ["error", {
"code": 100,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreTrailingComments": true
}],
"node/exports-style": ["error", "module.exports"],
"node/file-extension-in-import": ["error", "always"],
"node/prefer-global/buffer": ["error", "always"],
"node/prefer-global/console": ["error", "always"],
"node/prefer-global/process": ["error", "always"],
"node/prefer-global/url-search-params": ["error", "always"],
"node/prefer-global/url": ["error", "always"],
"node/prefer-promises/dns": "error",
"node/prefer-promises/fs": "error",
"no-process-exit": [0],
"node/no-unsupported-features/node-builtins": [0],
"node/no-unsupported-features/es-syntax": [0]
}
}
+1 -4
View File
@@ -1,7 +1,4 @@
* @phenax
/.github/ @wdhdev
/.github/CODEOWNERS @phenax
* @wdhdev
/domains/ @is-a-dev/maintainers
*.md @is-a-dev/maintainers
+1 -2
View File
@@ -1,2 +1 @@
custom: ["https://www.paypal.me/phenax", "https://www.buymeacoffee.com/phenax"]
liberapay: phenax
custom: ["https://donate.is-a.dev"]
+2 -2
View File
@@ -6,11 +6,11 @@ Unless explicitly specified otherwise by a **maintainer** or in the requirement
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. 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! -->
-16
View File
@@ -1,16 +0,0 @@
name: Checks
on: [pull_request, workflow_dispatch]
jobs:
validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install
- run: bun test
-30
View File
@@ -1,30 +0,0 @@
name: Publish records
on:
push:
branches: [main]
workflow_dispatch:
jobs:
publish:
if: github.repository == 'is-a-dev/register'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
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 }}
DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
run: bun run publish-records
+32
View File
@@ -0,0 +1,32 @@
name: Publish
on:
push:
branches: [main]
paths:
- "domains/*"
- ".github/workflows/publish.yml"
- "dnsconfig.js"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-publish
cancel-in-progress: false
jobs:
dns:
name: DNS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate creds.json
run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json
- name: Publish
uses: is-a-dev/dnscontrol-action@main
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
with:
args: push
+2 -3
View File
@@ -40,8 +40,7 @@ jobs:
source-directory: "raw-api"
destination-github-username: is-a-dev
destination-repository-name: raw-api
user-email: 106927495+is-a-dev-bot@users.noreply.github.com
user-name: is-a-dev-bot
commit-message: "Update Data via is-a-dev/register"
user-email: "actions@github.com"
user-name: "GitHub Actions"
env:
API_TOKEN_GITHUB: ${{ secrets.BOT }}
+41
View File
@@ -0,0 +1,41 @@
name: Validation
on:
pull_request:
push:
branches: [main]
paths:
- "domains/*"
- "tests/*"
- "utils/*"
- ".github/workflows/validation.yml"
- "dnsconfig.js"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-validation
cancel-in-progress: true
jobs:
dns:
name: DNS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
uses: is-a-dev/dnscontrol-action@main
with:
args: check
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- run: npm test
+129 -3
View File
@@ -1,4 +1,130 @@
node_modules/
*.env.production
# Logs
logs
*.log
is-a-dev-cert/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
-22
View File
@@ -1,22 +0,0 @@
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 apt-get install -y unzip
RUN bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'"
RUN ~/.bun/bin/bun -v
WORKDIR /opt/app
COPY bun.lockb .
COPY package.json .
RUN ~/.bun/bin/bun install
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
-11
View File
@@ -1,11 +0,0 @@
# is-a.dev Team
| Name | GitHub | Role |
|:-:|-|-|
| Akshay | [@phenax](https://github.com/phenax) | Owner |
| William | [@wdhdev](https://github.com/wdhdev) | Admin |
| CuteDog5695 | [@CuteDog5695](https://github.com/CuteDog5695) | Maintainer |
| Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer |
| DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer |
| Mahir | [@mtgsquad](https://github.com/mtgsquad) | Maintainer |
| Om | [@TerraPlayz](https://github.com/TerraPlayz) | Maintainer |
| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer |
+43 -26
View File
@@ -1,51 +1,68 @@
<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">
<img alt="Domains" src="https://img.shields.io/github/directory-file-count/is-a-dev/register/domains?color=5c46eb&label=domains&style=for-the-badge">
<img alt="Open Pull Requests" src="https://img.shields.io/github/issues-raw/is-a-dev/register?color=5c46eb&label=issues&style=for-the-badge">
<img alt="Open Issues" src="https://img.shields.io/github/issues-pr-raw/is-a-dev/register?color=5c46eb&label=pull%20requests&style=for-the-badge">
<br>
<img alt="Publish" src="https://github.com/is-a-dev/register/actions/workflows/publish.yml/badge.svg">
</p>
<h1 align="center">is-a.dev</h1>
<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/is-a-dev-830872854677422150"><img alt="Discord Server" src="https://invidget.switchblade.xyz/is-a-dev-830872854677422150"></a>
</p>
## Announcements & Status Updates
Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service.
Not all of these will be posted on GitHub, however they will always be posted in our Discord server.
## Issues
If you have any problems, feel free to [open a issue](https://github.com/is-a-dev/register/issues/new/choose).
<a href="https://discord.gg/is-a-dev-830872854677422150"><img alt="Discord Server" src="https://invidget.wdh.app/is-a-dev-830872854677422150"></a>
If you have an issue that contains confidental infomation, send an email to security@maintainers.is-a.dev.
# Register
### NS Records
When applying for NS records, please consider if you *actually* need them.
In your PR, please provide *extensive* reasoning, with evidence/examples, of why you need NS records.
You can see a good example of this [here](https://github.com/is-a-dev/register/pull/17592).
## Register
***Pull requests adding NS records without valid reasoning will be closed.***
### Manual Registration
- [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://www.is-a.dev/docs).
**Instant Denials**:
- I don't want to create a pull request everytime I want to update my DNS records.
- Over 3,000 people have to create PRs for updating their records, you can too.
- It is easier to manage DNS records on *(insert DNS provider name)*.
- It isn't too difficult to open a pull request to update your DNS records. We aim for PRs to be merged with-in 24 hours.
- I want to use DDoS protection.
- You can simply add `"proxied": true` to your file, to enable Cloudflare's Enterprise-level DDoS protection for your subdomain.
> [!NOTE]
> You can skip these requirements by [supporting the service](https://wdh.gg/pvNCdvs) with a small amount of $2.
>
> If you decide to donate, please email william@is-a.dev with your payment confirmation and your pull request link to receive your NS records.
## 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) 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://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!
### Automated Registration
#### *When using the manage site, please ensure your records are valid. Please do NOT "test" out the manage site and create invalid PRs, it wastes maintainers' time.*
## Automated Registration
***Returning soon.*** Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for updates.
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!
# Issues
If you have any problems, feel free to [open an issue](https://github.com/is-a-dev/register/issues/new/choose).
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.
If you have an issue that contains confidental infomation, send an email to security@is-a.dev.
## Status
You can check the uptime of our services on our [status dashboard](https://is-a-dev.wdh.gg).
---
### Donate
If you like this project, please consider donating so we can keep this project running forever!
We are proud to announce that we are fully supported by Cloudflare's [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria) sponsorship program. We would not be able to operate without their help! 💖
<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 on [Free For Life](https://github.com/wdhdev/free-for-life#domains).
<a href="https://www.cloudflare.com">
<img alt="Cloudflare Logo" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/cloudflare.png" height="96">
</a>
+1 -1
View File
@@ -3,4 +3,4 @@
## Reporting a vulnerability
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository.
However, for **higher severity vulnerabilities and bugs**, please email security@maintainers.is-a.dev.
However, for **higher severity vulnerabilities and bugs**, please email security@is-a.dev.
BIN
View File
Binary file not shown.
-15
View File
@@ -1,15 +0,0 @@
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
yarn
docker-compose
dnsutils
bun
];
in
pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}
+168
View File
@@ -0,0 +1,168 @@
var domainName = "is-a.dev";
var registrar = NewRegistrar("none");
var dnsProvider = DnsProvider(NewDnsProvider("cloudflare"), 0);
function getDomainsList(filesPath) {
var result = [];
var files = glob.apply(null, [filesPath, true, ".json"]);
for (var i = 0; i < files.length; i++) {
var name = files[i]
.split("/")
.pop()
.replace(/\.json$/, "");
result.push({ name: name, data: require(files[i]) });
}
return result;
}
var domains = getDomainsList("./domains");
var records = [];
for (var subdomain in domains) {
var subdomainName = domains[subdomain].name;
var domainData = domains[subdomain].data;
var proxyState = domainData.proxied ? CF_PROXY_ON : CF_PROXY_OFF;
// Handle A records
if (domainData.record.A) {
for (var a in domainData.record.A) {
records.push(
A(subdomainName, IP(domainData.record.A[a]), proxyState)
);
}
}
// Handle AAAA records
if (domainData.record.AAAA) {
for (var aaaa in domainData.record.AAAA) {
records.push(
AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState)
);
}
}
// Handle CAA records
if (domainData.record.CAA) {
for (var caa in domainData.record.CAA) {
var caaRecord = domainData.record.CAA[caa];
records.push(
CAA(
subdomainName,
caaRecord.flags,
caaRecord.tag,
caaRecord.value
)
);
}
}
// Handle CNAME records
if (domainData.record.CNAME) {
// Allow CNAME record on root
if (subdomainName === "@") {
records.push(
ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState)
);
} else {
records.push(
CNAME(subdomainName, domainData.record.CNAME + ".", proxyState)
);
}
}
// Handle DS records
if (domainData.record.DS) {
for (var ds in domainData.record.DS) {
var dsRecord = domainData.record.DS[ds];
records.push(
DS(
subdomainName,
dsRecord.key_tag,
dsRecord.algorithm,
dsRecord.digest_type,
dsRecord.digest
)
);
}
}
// Handle MX records
if (domainData.record.MX) {
for (var mx in domainData.record.MX) {
records.push(
MX(
subdomainName,
10 + parseInt(mx),
domainData.record.MX[mx] + "."
)
);
}
}
// Handle NS records
if (domainData.record.NS) {
for (var ns in domainData.record.NS) {
records.push(NS(subdomainName, domainData.record.NS[ns] + "."));
}
}
// Handle SRV records
if (domainData.record.SRV) {
for (var srv in domainData.record.SRV) {
var srvRecord = domainData.record.SRV[srv];
records.push(
SRV(
subdomainName,
srvRecord.priority,
srvRecord.weight,
srvRecord.port,
srvRecord.target + "."
)
);
}
}
// Handle TXT records
if (domainData.record.TXT) {
if (Array.isArray(domainData.record.TXT)) {
for (var txt in domainData.record.TXT) {
records.push(TXT(subdomainName, domainData.record.TXT[txt].length <= 255 ? "\"" + domainData.record.TXT[txt] + "\"" : domainData.record.TXT[txt]));
}
} else {
records.push(TXT(subdomainName, domainData.record.TXT.length <= 255 ? "\"" + domainData.record.TXT + "\"" : domainData.record.TXT));
}
}
// Handle URL records
if (domainData.record.URL) {
records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
records.push(TXT("_redirect." + subdomainName, "\"" + domainData.record.URL + "\""));
}
// Handle reserved domains
if (domainData.reserved) {
records.push(TXT(subdomainName, "\"" + "RESERVED" + "\""));
}
}
var options = {
no_ns: "true"
};
var ignored = [
IGNORE("@", "MX,TXT"),
IGNORE("_acme-challenge", "TXT"),
IGNORE("_autodiscover._tcp", "SRV"),
IGNORE("_dmarc", "TXT"),
IGNORE("autoconfig", "CNAME"),
IGNORE("autodiscover", "CNAME"),
IGNORE("dkim._domainkey", "TXT")
];
// Push TXT record of when the zone was last updated
records.push(TXT("_zone-updated", "\"" + Date.now().toString() + "\""));
D(domainName, registrar, dnsProvider, options, ignored, records);
-8
View File
@@ -1,8 +0,0 @@
version: '3'
services:
dev:
build:
context: .
dockerfile: ./Dockerfile
volumes:
- ./:/opt/app/code
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "S4IL21",
"email": "s4il.is.a.dev@gmail.com"
},
"record": {
"CNAME": "s4il21.github.io"
}
}
+1 -1
View File
@@ -4,6 +4,6 @@
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayr.link"
"URL": "https://rayrsn.me/"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "satyamverma46@outlook.com"
},
"record": {
"CNAME": "SatyamV7.github.io"
"CNAME": "satyamv7.github.io"
}
}
+1 -1
View File
@@ -4,6 +4,6 @@
"email": "rayrsn@proton.me"
},
"record": {
"URL": "https://rayr.link"
"URL": "https://rayrsn.me/"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "conaitus",
"discord": "772867638920609823",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYStWS9u7kn8H-BJLNUxA0PsFkP5qxGPZm-HYknRfHbFc6c3X2z3Fyz2NQcDz1Du3xpCP58mQsd4lEB9ZBYuzYy8f0xpwr_NeZ1H8l8qIrcekOv3znNXBzfEb5f_jY9lzqUCqD-1f3_X-9J-Q403qxVvx3Tg-7rtUNNtuy4nGPWQK92f1MQva2K2mtFjcvwQyKJLhf1hYakfULm_1UnknYTnfcBmsUZL42CzCeZia9ofvahOGjl4tapLWMbcb3gKtY2cIm37aF3bAXvIIpd50BOv8k4J0NAiKB_1pTcPJlIjvPasoD7-sZBTZ9b5gjjIpajuJaJrh2L5ZN5L4c3X8A.T8PosqQdCtq5qKzL_90vWQ.UCrMJwoBu-vRd5Wj4oS-B63aoapDpka6A0x31G1GpIbzUO-7kHBO1uK7c9rDPpAnuHkOSEp0evh9PJ2-7E1xI-UDIjVkLlE6KUL0eBD8oO0.U0OIRYK4tTs9GV6b1FiarQ"
},
"record": {
"A": ["77.175.38.88"]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "chuckchicken100",
"discord": "815256243786350594",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g"
},
"record": {
"A": ["103.97.126.29"]
}
}
+16
View File
@@ -0,0 +1,16 @@
{
"description": "Personal Portfolio Website",
"repo": "https://github.com/0v90/0v90.github.io",
"owner": {
"username": "0v90",
"discord": "651519394673065989"
},
"record": {
"A": [
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.111.153"
]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "SkyExploreWasTaken",
"discord": "1049263707177353247",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag"
},
"record": {
"CNAME": "edge.redirect.pizza"
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "0x1026",
"email": "me@hugovidafe.dev"
},
"record": {
"URL": "https://hugovidafe.dev"
}
"owner": {
"username": "0x1026",
"email": "me@hugovidafe.dev"
},
"record": {
"URL": "https://hugovidafe.dev"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"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"
]
}
}
@@ -1,12 +1,12 @@
{
"owner": {
"username": "gornostay25",
"email": "me@gornostay25.is-a.dev"
"username": "Yunexiz",
"discord": "1040303561847881729"
},
"record": {
"A": [
"185.199.108.153",
"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"]
}
}
+14
View File
@@ -0,0 +1,14 @@
{
"description": "Email thingy",
"owner": {
"username": "QuinceTart10",
"discord": "862644161156218891"
},
"record": {
"MX": [
"a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
"a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
],
"TXT": "v=spf1 include:spf.seznam.cz ~all"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "PogMaster9001",
"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"
}
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "watsonsohil@gmail.com"
},
"record": {
"CNAME": "EndingPencil.github.io"
"CNAME": "endingpencil.github.io"
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "200anxy",
"email": "aadarshnair.p@gmail.com"
},
"record": {
"CNAME": "200anxy.github.io"
}
"owner": {
"username": "200anxy",
"email": "aadarshnair.p@gmail.com"
},
"record": {
"CNAME": "200anxy.github.io"
}
}
+8 -8
View File
@@ -1,10 +1,10 @@
{
"owner": {
"username": "21Z",
"email": "",
"discord": "780356848737058857"
},
"record": {
"CNAME": "21z.github.io"
}
"owner": {
"username": "21Z",
"discord": "780356848737058857"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "PhoenixOrigin",
"email": "phoenixorigin171@gmail.com"
},
"record": {
"A": ["130.162.166.134"]
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "2giosangmitom",
"email": "yeuxacucodon.dev@proton.me"
},
"record": {
"CNAME": "2giosangmitom.github.io"
}
"owner": {
"username": "2giosangmitom",
"email": "yeuxacucodon.dev@proton.me"
},
"record": {
"CNAME": "2giosangmitom.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "3geETR",
"email": "egemacun@gmail.com"
},
"record": {
"CNAME": "3geetr.github.io"
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "4-m4t",
"email": "e_serhat@hotmail.com"
},
"record": {
"CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
}
"owner": {
"username": "4-m4t",
"email": "e_serhat@hotmail.com"
},
"record": {
"CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
}
}
-1
View File
@@ -3,7 +3,6 @@
"username": "404Dev-404",
"email": "anthonyvaldes318+404@gmail.com"
},
"record": {
"CNAME": "404dev-404.github.io"
}
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "0@fbi.ac"
},
"record": {
"CNAME": "9xN.github.io"
"CNAME": "9xn.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "45i.is-a.dev",
"repo": "https://github.com/45i/things",
"owner": {
"username": "45i",
"email": "sayakpalit61@gmail.com"
},
"record": {
"CNAME": "45i.github.io"
}
}
-1
View File
@@ -3,7 +3,6 @@
"username": "Akshay-Arjun",
"email": "akshayvollala779@gmail.com"
},
"record": {
"URL": "https://akshay-arjun.github.io/Akshay-Arjun"
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "MullerIsabella",
"email": "AlpineDreamer92@protonmail.com"
},
"record": {
"CNAME": "suisse.onrender.com"
}
"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",
"discord": "880084860327313459"
},
"record": {
"URL": "https://shockbs.is-a.dev/"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "maskduck",
"discord": "716134528409665586"
},
"record": {
"CNAME": "maskduck.pages.dev"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "realSunyz",
"discord": "800186537719365662",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lcA-FDIDxbODMySbmJgJOi2oJl04JAODrUgFTVwXa0w-jncbJ6Frvykm7oGVxqKmtOMnRJD7wVTl1Sfr-Y-nOAmN0ZY6FNW1vR1kwY1x_sXLnko9S_t-p0dgZ7lo1cVI1TcL2Z0C7yGOgK06U02dB7tN-m9piRa2cf09QM35oLm8_UZvTeZeCLRJnzTG3FVK0yosy38oXIk0c3oNgEkgufTQZDJgmh4lU4Ws8qmCdrqzRCFFUoNarx_6Q3y22we1x_zr4fGGqarv2lVZOz7DR0_zDK7jrsoC4-42sM_WnECfCVGxyMPeWbNlQyrfqzJjcM2MvKwodx5KbJBHOkRhoA.6n1HQotWwFwdkIu61eaz4A.T-S96mKQwHRD78Xq-8h1htrsFx8PI5XxRneVrP_yed28BIRAtjcNLNvj4CwwaewrNeRp8MBDVYAjKKl79gDZSvnX7SuusOU2Cj82tFkpdJeR_vyqTyODUx5rIIMtD2p5.5MxztQbJrVaqmRuW6e57Cg"
},
"record": {
"CNAME": "pub-seven-intro.pages.dev"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "XikiZxGS",
"discord": "1015654462334971925",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
},
"record": {
"CNAME": "xikizxgs.github.io"
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "8-bittt",
"email": "8botted@gmail.com"
},
"record": {
"URL": "https://replit.com/@8bittt?path="
}
"owner": {
"username": "8-bittt",
"email": "8botted@gmail.com"
},
"record": {
"URL": "https://replit.com/@8bittt?path="
}
}
+3 -5
View File
@@ -1,11 +1,9 @@
{
"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"
"username": "is-a-dev",
"email": "admin@is-a.dev"
},
"record": {
"URL": "http://www.is-a.dev"
"CNAME": "is-a-dev.github.io"
}
}
@@ -0,0 +1,11 @@
{
"description": "JustStudio.API",
"owner": {
"username": "JustDeveloper1",
"email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"CNAME": "ec675496b91489e24d221965._acme.deno.dev"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"owner": {
"username": "denboy0123",
"email": "pochtaproverka01@gmail.com"
},
"record": {
"TXT": [
"FZo9g0GqRYR-fhmWc1QzbycfV5UZIE4bwh42BI81NDQ",
"V1N8tuJvEcUtltxMXLRvP0U1_jaAgsSJJ89MgyxpWUk"]
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "VaibhavSys",
"email": "vaibhavsys@protonmail.com"
},
"record": {
"CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net"
}
"owner": {
"username": "VaibhavSys",
"email": "vaibhavsys@protonmail.com"
},
"record": {
"CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"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"
}
}
-1
View File
@@ -1,4 +1,3 @@
{
"owner": {
"username": "RaafeyRaza",
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "EducatedSuddenBucket",
"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"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "alvinsjoy",
"discord": "825382504353234954"
},
"record": {
"TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "domain verification for bluesky",
"owner": {
"username": "catto24",
"email": "catto24@proton.me"
},
"record": {
"TXT": "did=did:plc:whzff4s3db6taso3s43ylrou"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "theclyron",
"email": "onenonlyclyron@gmail.com"
},
"record": {
"TXT": "did=did:plc:fqvzbqsjzjkl4o66rfp6cgk3"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "crischutu07",
"email": "crischutu07owo@gmail.com",
"description": "Bluesky custom handle."
},
"record": {
"TXT": "did=did:plc:tfpfqi3qewuc5ugaipb57waa"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "domain verification for bluesky",
"owner": {
"username": "luihh",
"email": "luihh@proton.me"
},
"record": {
"TXT": "did=did:plc:nkzlgllahrw2v2y6p4inqx6t"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "domain verification for bluesky",
"owner": {
"username": "TheHCJ",
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
},
"record": {
"TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
}
}
+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"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "octyn-yt",
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
},
"record": {
"TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "AKCord",
"email": "shrestha.aeniv@gmail.com"
},
"record": {
"TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "akk1to",
"email": "akk1to.dev@gmail.com",
"discord": "727497287777124414"
},
"record": {
"TXT": ["dh=1b549c9ba1012a210482879df31eaddc4dbf0c7e"]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "akshtt-dev",
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
"record": {
"TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Alecks20",
"email": "contact@alecks.dev",
"discord": "612522818294251522"
},
"record": {
"TXT": "dh=0d543348d17f2be631fd3a25c3ae3e099741ff81"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "aloramiaa",
"email": "xaloramia@gmail.com"
},
"record": {
"TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6"
}
}
+3 -5
View File
@@ -1,11 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
"email": "YouFoundAlpha@alpha.is-a.dev",
"Discord": "661121998830960651",
"GitHub": "YouFoundAlpha",
"GitLab": "YouFoundAlpha",
"Mastodon": "@YouFoundAlpha@mastodon.social"
"discord": "661121998830960651",
"gitlab": "YouFoundAlpha",
"mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "alvinsjoy",
"discord": "825382504353234954"
},
"record": {
"TXT": "dh=2e0d11ef77e37336649b42cd76be7681008ac30a"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "true1ann",
"email": "true1ann@tutamail.com"
},
"record": {
"TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "antebrl",
"email": "ahcwnh@gmail.com"
},
"record": {
"TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "akk1to",
"email": "akk1to.dev@gmail.com",
"discord": "727497287777124414"
},
"record": {
"TXT": ["dh=1a950b0754b823073a474660fa065a40a6a77009"]
}
}
-10
View File
@@ -1,10 +0,0 @@
{
"owner": {
"username": "Stef-00012",
"email": "admin@stefdp.is-a.dev",
"discord": "694986201739952229"
},
"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"
}
}
+8 -8
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "ashishagarwal2023",
"email": "code.with.aasheesh@gmail.com"
},
"record": {
"TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0"
}
}
"owner": {
"username": "devashish2024",
"email": "code.with.aasheesh@gmail.com"
},
"record": {
"TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "AXVIII3",
"email": "anirbanrc2286@gmail.com"
},
"record": {
"TXT": "dh=06feb5fa4fc1b28e67043c64664a49c5dfe9b614"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "AzhamProdLive",
"email": "websitedomain.regroup588@passinbox.com",
"discord": "797534115935027271"
},
"record": {
"TXT": "dh=b3b9be236f1e61048cecc94f8e3e6a4accf9d6b5"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "akk1to",
"email": "akk1to.dev@gmail.com",
"discord": "727497287777124414"
},
"record": {
"TXT": ["dh=e1e17c98197b35ff9ed4eef8a473fa86fa3106b8"]
}
}
+8 -8
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "bkmsstudio",
"email": "mmini15354424@gmail.com"
},
"record": {
"TXT": "dh=28e7384e869c06a1ca87f91b10fd14aefc7f4433"
}
}
"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"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "bob16077",
"discord": "bob16077777"
},
"record": {
"TXT": "dh=82f4456e6c61592f5dcdc8a4a9066d6111292de6"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "BrandgrandRealMe",
"email": "brandon.lambe@skiff.com"
},
"record": {
"TXT": "dh=5a46861f9c2b864210ab3d3ffdd61d09e9170650"
}
}
+8 -8
View File
@@ -1,10 +1,10 @@
{
"owner": {
"username": "Caiden-P",
"email": "iididhejejdj@gmail.com",
"discord": "850820069310201896"
},
"record": {
"TXT": "dh=9edde4bc2a73469cb8653bf05ae22226397bc77a"
}
"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"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "gabrielasants",
"email": "gabrielasantos030@gmail.com"
},
"record": {
"TXT": "dh=a755ef48b5344a0fb3b986db5b0e2304caced68c"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "catto24",
"email": "catto24@proton.me"
},
"record": {
"TXT": "dh=cb090910b5977bb43674000fab99c3a76492ac78"
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "ChaoticChaosTheGreat",
"email": "ryan.ryanabraham@gmail.com"
},
"record": {
"TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd"
}
"owner": {
"username": "ChaoticChaosTheGreat",
"email": "ryan.ryanabraham@gmail.com"
},
"record": {
"TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Ciao287",
"discord": "687333016921440317"
},
"record": {
"TXT": "dh=ce277d8733f3951ace98e01de4cbf58ffca4b4c6"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Ciao287",
"discord": "687333016921440317"
},
"record": {
"TXT": "dh=7033eb795b01d2b28ceb767f8e34a4dffa268406"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "theclyron",
"email": "onenonlyclyron@gmail.com"
},
"record": {
"TXT": "dh=08fd1efb158b657de5293ec643a8426a20a93ede"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "CodeSuthar",
"email": "AdityaSuthar13@outlook.com"
},
"record": {
"TXT": "dh=c9d95514358feae443357e8366bfa224cb7709e1"
}
}

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