mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-26 23:58:16 +00:00
Merge branch 'main' into main
This commit is contained in:
+1
-5
@@ -1,8 +1,4 @@
|
||||
* @phenax @wdhdev
|
||||
* @wdhdev
|
||||
|
||||
/.github/ @wdhdev
|
||||
/domains/ @is-a-dev/maintainers
|
||||
|
||||
*.md @is-a-dev/maintainers
|
||||
/LICENSE @phenax
|
||||
/dnsconfig.js @wdhdev
|
||||
|
||||
+1
-3
@@ -1,3 +1 @@
|
||||
custom: ["https://www.paypal.me/phenax"]
|
||||
liberapay: phenax
|
||||
buy_me_a_coffee: phenax
|
||||
custom: ["https://donate.stripe.com/fZe3df4BE8Y32GY9AB"]
|
||||
|
||||
@@ -30,8 +30,3 @@ jobs:
|
||||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
with:
|
||||
args: push
|
||||
|
||||
- name: Trigger URL Webhook
|
||||
env:
|
||||
WEBHOOK_URL: ${{ secrets.URL_WEBHOOK }}
|
||||
run: curl -X GET "$WEBHOOK_URL"
|
||||
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
source-directory: "raw-api"
|
||||
destination-github-username: is-a-dev
|
||||
destination-repository-name: raw-api
|
||||
user-email: actions@github.com
|
||||
user-email: "actions@github.com"
|
||||
user-name: "GitHub Actions"
|
||||
env:
|
||||
API_TOKEN_GITHUB: ${{ secrets.BOT }}
|
||||
|
||||
@@ -7,7 +7,9 @@ on:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "domains/*"
|
||||
- ".github/workflows/validation.yml"
|
||||
- "tests/*"
|
||||
- "utils/*"
|
||||
- ".github/workflows/validate.yml"
|
||||
- "dnsconfig.js"
|
||||
|
||||
workflow_dispatch:
|
||||
@@ -19,6 +21,7 @@ concurrency:
|
||||
jobs:
|
||||
dns:
|
||||
name: DNS
|
||||
if: "!contains(github.event.head_commit.message, '[skip-ci]')"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -28,15 +31,13 @@ jobs:
|
||||
with:
|
||||
args: check
|
||||
|
||||
json:
|
||||
name: JSON
|
||||
tests:
|
||||
name: Tests
|
||||
if: "!contains(github.event.head_commit.message, '[skip-ci]')"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: JSON Syntax Check
|
||||
uses: limitusus/json-syntax-check@v2
|
||||
with:
|
||||
pattern: "\\.json$"
|
||||
env:
|
||||
BASE: "domains/"
|
||||
- run: npm install
|
||||
|
||||
- run: npm test
|
||||
+130
@@ -0,0 +1,130 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
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.*
|
||||
@@ -1,11 +0,0 @@
|
||||
# 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 |
|
||||
| Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer |
|
||||
| orangc | [@orangci](https://github.com/orangci) | Maintainer |
|
||||
| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer |
|
||||
@@ -14,8 +14,6 @@
|
||||
|
||||
<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>
|
||||
|
||||
[](https://github.com/is-a-dev/register/actions/workflows/publish.yml)
|
||||
|
||||
## 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.
|
||||
@@ -39,6 +37,13 @@ When applying for NS records, please consider if you *actually* need them. Pleas
|
||||
|
||||
For any questions regarding NS records, feel free to email support@is-a.dev.
|
||||
|
||||
> [!NOTE]
|
||||
> You can skip these requirements by supporting the service with the small amount of $2: https://donate.stripe.com/00gg017NQ6PV3L2cMM
|
||||
>
|
||||
> All donations go towards supporting the service's running costs.
|
||||
>
|
||||
> 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).
|
||||
|
||||
|
||||
+20
-15
@@ -23,7 +23,6 @@ var records = [];
|
||||
|
||||
for (var subdomain in domains) {
|
||||
var subdomainName = domains[subdomain].name;
|
||||
var fullSubdomain = subdomainName + "." + domainName;
|
||||
var domainData = domains[subdomain].data;
|
||||
var proxyState = domainData.proxied ? CF_PROXY_ON : CF_PROXY_OFF;
|
||||
|
||||
@@ -76,15 +75,18 @@ for (var subdomain in domains) {
|
||||
|
||||
// Handle DS records
|
||||
if (domainData.record.DS) {
|
||||
records.push(
|
||||
DS(
|
||||
subdomainName,
|
||||
domainData.record.DS.key_tag,
|
||||
domainData.record.DS.algorithm,
|
||||
domainData.record.DS.digest_type,
|
||||
domainData.record.DS.digest
|
||||
)
|
||||
);
|
||||
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
|
||||
@@ -127,31 +129,31 @@ for (var subdomain in domains) {
|
||||
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]));
|
||||
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));
|
||||
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"));
|
||||
records.push(TXT(subdomainName, "\"" + "RESERVED" + "\""));
|
||||
}
|
||||
}
|
||||
|
||||
var options = {
|
||||
no_ns: 'true'
|
||||
no_ns: "true"
|
||||
};
|
||||
|
||||
var ignored = [
|
||||
IGNORE("@", "MX,TXT"),
|
||||
IGNORE("\\*"),
|
||||
IGNORE("_acme-challenge", "TXT"),
|
||||
IGNORE("_autodiscover._tcp", "SRV"),
|
||||
IGNORE("_dmarc", "TXT"),
|
||||
@@ -160,4 +162,7 @@ var ignored = [
|
||||
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);
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "S4IL21",
|
||||
"email": "s4il.is.a.dev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "s4il21.github.io"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@
|
||||
"email": "satyamverma46@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "SatyamV7.github.io"
|
||||
"CNAME": "satyamv7.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-2
@@ -3,8 +3,7 @@
|
||||
"repo": "https://github.com/0v90/0v90.github.io",
|
||||
"owner": {
|
||||
"username": "0v90",
|
||||
"discord": "651519394673065989",
|
||||
"email": ""
|
||||
"discord": "651519394673065989"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Yunexiz",
|
||||
"discord": "1040303561847881729",
|
||||
"email": ""
|
||||
"discord": "1040303561847881729"
|
||||
},
|
||||
"record": {
|
||||
"A": [
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
"email": "watsonsohil@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "EndingPencil.github.io"
|
||||
"CNAME": "endingpencil.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PhoenixOrigin",
|
||||
"email": "phoenixorigin171@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["130.162.166.134"]
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MysticalPvE",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -6,6 +6,6 @@
|
||||
"email": "0@fbi.ac"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "9xN.github.io"
|
||||
"CNAME": "9xn.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-2
@@ -5,6 +5,5 @@
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://shockbs.is-a.dev/"
|
||||
},
|
||||
"proxied": true
|
||||
}
|
||||
}
|
||||
|
||||
+3
-1
@@ -3,5 +3,7 @@
|
||||
"username": "maskduck",
|
||||
"discord": "716134528409665586"
|
||||
},
|
||||
"record": { "CNAME": "maskduck.pages.dev" }
|
||||
"record": {
|
||||
"CNAME": "maskduck.pages.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "alvinsjoy",
|
||||
"discord": "825382504353234954"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Akatsuki2555",
|
||||
"email": "akatsuki2555@proton.me",
|
||||
"discord": "1226900455037075509"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=30962b6c5cdbbd4629fdf0da9d0bf4c717f065e9"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "akk1to",
|
||||
"email": "akk1to.dev@gmail.com",
|
||||
"discord": "727497287777124414"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1b549c9ba1012a210482879df31eaddc4dbf0c7e"]
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
"discord": "661121998830960651",
|
||||
"gitlab": "YouFoundAlpha",
|
||||
"mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "akk1to",
|
||||
"email": "akk1to.dev@gmail.com",
|
||||
"discord": "727497287777124414"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1a950b0754b823073a474660fa065a40a6a77009"]
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ashishagarwal2023",
|
||||
"username": "devashish2024",
|
||||
"email": "code.with.aasheesh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "akk1to",
|
||||
"email": "akk1to.dev@gmail.com",
|
||||
"discord": "727497287777124414"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=e1e17c98197b35ff9ed4eef8a473fa86fa3106b8"]
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"description": "My base website. Very epik tbh 💥💥",
|
||||
"repo": "https://github.com/cupglassdev/cupglassdev.github.io",
|
||||
"owner": {
|
||||
"username": "cupglassdev",
|
||||
"twitter": "https://x.com/cupglassdev",
|
||||
"lahelu": "https://lahelu.com/user/cupglassdev",
|
||||
"discord": "cupglassdev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1a7a67b133e464ce252912f15ae575f3a74b7c45"]
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "daglaroglou",
|
||||
"email": "christos.daglaroglou@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=835bc23146b3e22366c53fc75b2e573d30f02730"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "probablydem0n",
|
||||
"discord": 935272776586129400
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=5ce927a38096a3a9d48e24ba44d85b0655aa4fc6"]
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "EducatedSuddenBucket",
|
||||
"discord": "1167825360151380032",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fiKDfHFdeXEvcx-9T9B_2QxG8p8P-fC3uT5So98T78XutxFp6Nc6qElNABob_nxlsiOK9N1RIqeRdDfPDN1jMATvN5NbJK3djCOaSDU7gb7qXVKpNHJKERtcSBVfFP4GzEgnyFP2x6y0USWUI3qjuuyhEP73lVvBkI8Xwi9ijhVGPiJI2OXMh4SRLvUlTXxSyi0EmK5GJEZNMan0Phxhe1vIN4HXialEHu5X9z85VVDaPnTKtZUM0cv_YSlnL5KbHxL8o82zNdiuTX1XV2gjACcmk1-YW_AhH3pUOvCNlbodewyVG9Q0whaLZvtccOnsbVst8dzc2STxanASBN2idA.hMiZtTdAF3ZgNO_mRHziWw.fImfROdecxp7xIqWTq_k-a339nOvZCxndcY8pHEQ6ZMYJ0gNwSBWbm3W8ob1k83z9DvgrYFwBansZ4JrlG7VU_o4HPAmB0sHPMpp8EsHpOQ1IORmNM5sMUEJbBeXeekG.n_nbnPDDQbi7MqrJXIc5xw"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=fb569bc3fb022455ac370440b925e73fbf40b75d"
|
||||
}
|
||||
}
|
||||
@@ -2,8 +2,7 @@
|
||||
"owner": {
|
||||
"username": "Socketlike",
|
||||
"discordId": "285329659023851520",
|
||||
"discord": "encyclopedic",
|
||||
"email": ""
|
||||
"discord": "encyclopedic"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=2ffdb09f9be5f3f51fe2089c4cced6ec296d490e"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gokul6350",
|
||||
"email": "gokul00060@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=55a65497a2c3938fee2de54e3600a5b55524016c"]
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"owner": {
|
||||
"username": "jimmy20180130",
|
||||
"email": "jimmy20180130@gmail.com",
|
||||
"twitter": "@jimmyyo45639462",
|
||||
"twitter": "jimmyyo45639462",
|
||||
"discord": "xiaoxi_tw#0"
|
||||
},
|
||||
"record": {
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jirafey",
|
||||
"email": "e9282425-361f-427d-a3dd-249a564432b9@anonaddy.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "KrazyKleb",
|
||||
"email": "krazykleb@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9b437fc3639b73eb33fe9b536d5ad6acbec42dd1"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"description": "_discord.kuba is a subdomain for verification of Discord's domain ownership system.",
|
||||
"owner": {
|
||||
"telegram": "idkuba",
|
||||
"username": "kbvivi",
|
||||
"email": "kbvivi.contact@gmail.com",
|
||||
"discord": "105170831130234880"
|
||||
},
|
||||
"repo": "https://github.com/kbvivi/kuba.lol",
|
||||
"record": {
|
||||
"TXT": ["dh=4f43d84403713773fa9506963218fe01cfd9b61d"]
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "amoramicae",
|
||||
"discord": "1252631745514180790",
|
||||
"email": ""
|
||||
"discord": "1252631745514180790"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=d49386149c842861e763ac8bf5ce74c93414ce5a"
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "syedrayangames",
|
||||
"email": "syedrayangames@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9978fb189e392bec25b857297f914f34ef65ffb7"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "nikytap1n",
|
||||
"username": "nikyy2",
|
||||
"email": "anhky726@gmail.com",
|
||||
"discord": "1007521768761729094"
|
||||
},
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "orxngc",
|
||||
"discord": "orangc",
|
||||
"email": "orangc@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a46c846585142f2290edfa87de14a47c01715d15"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "orxngc",
|
||||
"discord": "orangc",
|
||||
"email": "orangc@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "orxngc",
|
||||
"discord": "orangc",
|
||||
"email": "orangc@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=f05ab12fac60a5257c0ebc18895228ee3ec397d3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "S4IL21",
|
||||
"email": "s4il.is.a.dev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=accf8fbd0fd5a197eecbedae299873b421de6430"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ShingSemicolon",
|
||||
"email": "Shing.XD.0602@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=df5daefdc7745f38295b3f89ac5de5373eec9c6c"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "jasomtubratu"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=47fddb5e68440c61b93da59a8e57d91da546ae1e"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "jasomtubratu"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=47fddb5e68440c61b93da59a8e57d91da546ae1e"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=d8213a7b69c2c71bfc2cdddc2744080847a4b0da"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "orxngc",
|
||||
"discord": "orangc",
|
||||
"email": "orangc@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=23993c297b87e754fd5660af023aa55579ed324e"
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"owner": {
|
||||
"username": "jimmy20180130",
|
||||
"email": "jimmy20180130@gmail.com",
|
||||
"twitter": "@jimmyyo45639462",
|
||||
"twitter": "jimmyyo45639462",
|
||||
"discord": "xiaoxi_tw#0"
|
||||
},
|
||||
"record": {
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "xzonix",
|
||||
"email": "imahalojigi@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9ffde6acccff8c74faeb599818e2901110d15fa5"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
"discord": "661121998830960651",
|
||||
"gitlab": "YouFoundAlpha",
|
||||
"mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7"
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "SkyExploreWasTaken",
|
||||
"discord": "1049263707177353247",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=f84f09e3884eca601066a6e1dba5175f6e82940f"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ZiynCS",
|
||||
"email": "NotZiyn@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MysticalPvE",
|
||||
"discord": "1229782675678826496",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MullerIsabella",
|
||||
"email": "AlpineDreamer92@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "8e7d9774b8"
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -2,10 +2,10 @@
|
||||
"owner": {
|
||||
"username": "RichardKanshen",
|
||||
"email": "richard@kanshen.click",
|
||||
"twitter": "@kanskje0",
|
||||
"twitter": "kanskje0",
|
||||
"discord": "kanshen.uwu",
|
||||
"bluesky": "kanshen.click",
|
||||
"telegram": "@richardkanskje"
|
||||
"telegram": "richardkanskje"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "392e701839"
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MullerIsabella",
|
||||
"email": "AlpineDreamer92@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "111c9dc10c"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
"discord": "661121998830960651",
|
||||
"gitlab": "YouFoundAlpha",
|
||||
"mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9568f60569"
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
"discord": "661121998830960651",
|
||||
"gitlab": "YouFoundAlpha",
|
||||
"mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "a4b5c60953"
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
"discord": "661121998830960651",
|
||||
"gitlab": "YouFoundAlpha",
|
||||
"mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "ed3c92c01a"
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0pearlcz0",
|
||||
"email": "",
|
||||
"discord": "809488731353776149",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EWTrZf_5I2GQGS2_M2eRydgef__rnGfaJplaMYAtS-0BxFSldAaScbilhvJXA-LGBa7Y79M3fYvUG_WCaoEV-GUGrNubGdfub4EnUBCAiatsMr5c6jBAZKze2qp2xRzpwGbTFs2nLGK-ON6s6LmBQfmqDdBRMAofSeWYSDDmjntJ9YBiC0eEor-0DtB7ljRTonUt-8th_n5s1AszQxM6koZRO8IFIe7hfL4PylTZaR1n-9hSU4j7X6zHkpJmC0Q8x9VP8KzuPzmApFO4Trc2oN8fs1YsUJSeMR5PZ4A4XiCEQ_ZhUlm1QuuUB25pEao8uoFx4ZSDDRN5mougkdqYFg.vxBW0pzGpQAcBqm0jHWZOw.Zu5v21jKdWfaHo3ErT3SkOVdcmrCw0b8c2NLSflMvKagusHcXg6qhaKmyATLUjQn_uVE6epD1OEim54ji-S_a7ypkn40Ii_Rl7HXgWIHDZg.CPb58_yXhixs83QtFx3ROQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "bf6f41543a58bffd08fd85ffd9d254"
|
||||
}
|
||||
}
|
||||
|
||||
"owner": {
|
||||
"username": "0pearlcz0",
|
||||
"discord": "809488731353776149",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EWTrZf_5I2GQGS2_M2eRydgef__rnGfaJplaMYAtS-0BxFSldAaScbilhvJXA-LGBa7Y79M3fYvUG_WCaoEV-GUGrNubGdfub4EnUBCAiatsMr5c6jBAZKze2qp2xRzpwGbTFs2nLGK-ON6s6LmBQfmqDdBRMAofSeWYSDDmjntJ9YBiC0eEor-0DtB7ljRTonUt-8th_n5s1AszQxM6koZRO8IFIe7hfL4PylTZaR1n-9hSU4j7X6zHkpJmC0Q8x9VP8KzuPzmApFO4Trc2oN8fs1YsUJSeMR5PZ4A4XiCEQ_ZhUlm1QuuUB25pEao8uoFx4ZSDDRN5mougkdqYFg.vxBW0pzGpQAcBqm0jHWZOw.Zu5v21jKdWfaHo3ErT3SkOVdcmrCw0b8c2NLSflMvKagusHcXg6qhaKmyATLUjQn_uVE6epD1OEim54ji-S_a7ypkn40Ii_Rl7HXgWIHDZg.CPb58_yXhixs83QtFx3ROQ"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "bf6f41543a58bffd08fd85ffd9d254"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0v90",
|
||||
"discord": "651519394673065989",
|
||||
"email": ""
|
||||
"discord": "651519394673065989"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9e58408bb4a7267e5a81669f75cfb3"
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Akatsuki2555",
|
||||
"email": "Akatsuki2555@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "af66c6734ae2342654c413fbb3b9aa"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Glqch404",
|
||||
"email": "bridgerbusiness2@gmail.com",
|
||||
"twitter": "Glqch",
|
||||
"discord": "915932527871541309"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "a3b430c8adc12043863d6785cfa782"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "SkyExploreWasTaken",
|
||||
"discord": "1049263707177353247",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "7eb5b6034d696256f342136b0289cc"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "TorchedSammy",
|
||||
"email": "torchedsammy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9693d9e721696f4184aa3abfa35921"
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"description": "Portfolio Website",
|
||||
"repo": "https://github.com/YesnielX/yesnielx.github.io",
|
||||
"owner": {
|
||||
"username": "YesnielX",
|
||||
"discord": "yesnielx"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["7b437ce587783bab1a17084b82cca0"]
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "YouFoundAlpha",
|
||||
"Discord": "661121998830960651",
|
||||
"GitHub": "YouFoundAlpha",
|
||||
"GitLab": "YouFoundAlpha",
|
||||
"Mastodon": "@YouFoundAlpha@mastodon.social"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "123b9197abda60197a8afa64af5cf0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "This website is my personal portfollo XD (let it on rq)",
|
||||
"repo": "https://github.com/akk1to/akk1to.github.io",
|
||||
"owner": {
|
||||
"username": "akk1to",
|
||||
"email": "akk1to.dev@gmail.com",
|
||||
"discord": "727497287777124414"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["b7205350c0f56235a5eebee2fd1993"]
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "anamolsapkota",
|
||||
"email": "anamolsapkota@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "d89d65454e6f71641cc8e45a2ad8b2"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "anshbhimani",
|
||||
"email": "ansh.bhimani@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "36d0b9db7565094d11ea8fdb539e1dg"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "avellea",
|
||||
"email": ""
|
||||
"username": "avellea"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "5c38dbee73e6936232992c0f98829e"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "winter7eaf",
|
||||
"username": "catrinlam",
|
||||
"discord": "614054830360494100"
|
||||
},
|
||||
"record": {
|
||||
@@ -3,7 +3,7 @@
|
||||
"repo": "https://github.com/chadeeeee/chadee-site",
|
||||
"owner": {
|
||||
"username": "chadeeeee",
|
||||
"telegram": "@chadeeeeeeeeee",
|
||||
"telegram": "chadeeeeeeeeee",
|
||||
"email": "esurginet2011@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "charmingdisorder",
|
||||
"email": "null"
|
||||
"username": "charmingdisorder"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "8045a0394db9ecae4e8f4a76f5c17c"
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Crazy-Max-Blog",
|
||||
"email": "Crazy-Max-2011@yandex.ru"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "bf0161fd315024bd5069ccb7f38cdc"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"description": "My base website. Very epik tbh 💥💥",
|
||||
"repo": "https://github.com/cupglassdev/cupglassdev.github.io",
|
||||
"owner": {
|
||||
"username": "cupglassdev",
|
||||
"twitter": "https://x.com/cupglassdev",
|
||||
"lahelu": "https://lahelu.com/user/cupglassdev",
|
||||
"discord": "cupglassdev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["8512bd6443e9d125eb9223d57c1a40"]
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "danilofuchs",
|
||||
"email": "danilo_fuchs@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "09bee48261a7e91718432a7b51baaa"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Dev-420",
|
||||
"email": "imakbss@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "af648cf0502797580ddf061805dad3"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "devendrakanojiya",
|
||||
"email": "s_36100@bkbirlacollegekalyan.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "37b9724a41bf8e23b2a352d65b7d19"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user