Merge branch 'main' into main

This commit is contained in:
Fernando Daniel Quispe Condori
2025-01-18 11:25:25 -05:00
committed by GitHub
275 changed files with 2911 additions and 585 deletions
+17 -12
View File
@@ -1,16 +1,21 @@
<!-- Please complete this template so we can review your pull request faster. -->
<!--
!!! YOU MUST FILL OUT THIS TEMPLATE FOR YOUR PULL REQUEST TO BE ACCEPTED !!!
-->
## Requirements
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above.
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain **MUST** pass **ALL** the indicated requirements below.
Please note that we reserve the rights not to accept any domain at our own discretion.
<!-- Change each checkbox to [x] to mark it as checked. -->
- [ ] I have **read** and **understood** the [Terms of Service](https://is-a.dev/terms). <!-- Your domain MUST follow the TOS to be approved. -->
- [ ] My domain is **not** for commercial use.
- [ ] My file is in the `domains` folder and is in the JSON format.
- [ ] My file's name is all lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
- [ ] The website is **reachable**. <!-- Not needed if the domain is for emails only. -->
- [ ] I have **completed** my website. <!-- Not needed if the domain is for emails only. -->
- [ ] My website is related to **software development**.
- [ ] I have provided contact information in the `owner` key. <!-- Provide your email in the `email` field or another platform (e.g., X, Discord) for contact. -->
- [ ] I have **followed** the [documentation](https://docs.is-a.dev).
- [ ] I understand my domain may be removed if I violate the [Terms of Service](https://is-a.dev/terms).
- [ ] 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. -->
- [ ] 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. If you can't make the website visible, then an image of the website is also fine! -->
## Website Preview
<!-- Provide a link or preview of your website below. If you can't make the website visible, then a screenshot of the website also works. -->
+6 -1
View File
@@ -21,10 +21,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run tests
run: |
npm install
npx ava tests/*.test.js
- name: Generate creds.json
run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json
- name: Publish
- name: Push DNS records
uses: is-a-dev/dnscontrol-action@main
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
+4 -6
View File
@@ -19,14 +19,13 @@ concurrency:
cancel-in-progress: true
jobs:
dns:
name: DNS
dnscontrol:
name: DNSControl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
uses: is-a-dev/dnscontrol-action@main
- uses: is-a-dev/dnscontrol-action@main
with:
args: check
@@ -38,5 +37,4 @@ jobs:
- run: npm install
- name: Run tests
run: npx ava tests/*.test.js
- run: npx ava tests/*.test.js
+8 -45
View File
@@ -29,18 +29,14 @@ for (var subdomain in domains) {
// Handle A records
if (domainData.record.A) {
for (var a in domainData.record.A) {
records.push(
A(subdomainName, IP(domainData.record.A[a]), proxyState)
);
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)
);
records.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState));
}
}
@@ -48,29 +44,14 @@ for (var subdomain in domains) {
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
)
);
records.push(CAA(subdomainName, 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)
);
}
// Use ALIAS instead of CNAME to support CNAME flattening on the root domain
records.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState));
}
// Handle DS records
@@ -78,13 +59,7 @@ for (var subdomain in domains) {
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
)
DS(subdomainName, dsRecord.key_tag, dsRecord.algorithm, dsRecord.digest_type, dsRecord.digest)
);
}
}
@@ -92,13 +67,7 @@ for (var subdomain in domains) {
// 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] + "."
)
);
records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + "."));
}
}
@@ -114,13 +83,7 @@ for (var subdomain in domains) {
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 + "."
)
SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
);
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"repo": "https://github.com/256javy/256javy.github.io",
"owner": {
"username": "256javy",
"email": "256javiervillalba@gmail.com"
},
"record": {
"CNAME": "256javy.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "horibyte",
"email": "thehoribyte@gmail.com"
},
"record": {
"TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "itsFatlum",
"email": "fatlum@lumi.is-a.dev"
},
"record": {
"TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "nilsraccoon",
"discord": "1129507464589627512"
},
"record": {
"TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "PentSec",
"email": "jeffreysfu@gmail.com"
},
"record": {
"TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824"
}
}
+1 -1
View File
@@ -1,7 +1,7 @@
{
"owner": {
"username": "RadioactivePotato",
"discord": "krunchiekrunch._."
"discord": "1166013268008120340"
},
"record": {
"TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5"
+10
View File
@@ -0,0 +1,10 @@
{
"description": "DMARC",
"owner": {
"username": "QuinceTart10",
"discord": "862644161156218891"
},
"record": {
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "DMARC",
"owner": {
"username": "QuinceTart10",
"discord": "862644161156218891"
},
"record": {
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "DMARC",
"owner": {
"username": "QuinceTart10",
"discord": "862644161156218891"
},
"record": {
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "is-a-dev",
"email": "admin@is-a.dev"
},
"record": {
"TXT": "2aeb08f313"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "is-a-dev",
"email": "admin@is-a.dev"
},
"record": {
"TXT": "30e221e0a1"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "JustStudio.",
"owner": {
"username": "JustDeveloper1",
"email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"TXT": [
"d878bca923"
]
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "256javy",
"email": "256javiervillalba@gmail.com"
},
"record": {
"TXT": "5274c84dbbf074d67b53fc4305ced5"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "devhammed",
"email": "hey@hammed.dev"
},
"record": {
"TXT": "7672b068b3140a9fbaaf9bfe0ab136"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ethereumvd",
"email": "ethereum249@gmail.com"
},
"record": {
"TXT": "acffd9c330d027fef82987d6dd8b4e"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "is-a-dev",
"email": "admin@is-a.dev"
},
"record": {
"TXT": "18b49a8904257ea06c3595614d9a4e"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "manugeni",
"email": "rendaniman@outlook.com"
},
"record": {
"TXT": "c43b4f0460a8d8b9c05affa2da77ef"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "NarasimaPandiyan",
"email": "cs42059@gmail.com"
},
"record": {
"TXT": "0cd2fb39489f7652da9a4942df4a75"
}
}
@@ -0,0 +1,9 @@
{
"owner": {
"username": "PentSec",
"email": "jeffreysfu@gmail.com"
},
"record": {
"TXT": "c1f0e5d392a06b64a632b42f794b1a"
}
}
@@ -1,7 +1,7 @@
{
"owner": {
"username": "RadioactivePotato",
"discord": "krunchiekrunch._."
"discord": "1166013268008120340"
},
"record": {
"TXT": "05dc6febabf44f8decab35d01609ee"
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ramanandkrgupta",
"email": "ramanand@myyahoo.com"
},
"record": {
"TXT": "07cd3e879dce98546f212f494f50da"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "vyductan",
"email": "vdt5snet@gmail.com",
"discord": "370012050316984321"
},
"record": {
"TXT": "vc-domain-verify=*.vyductan.is-a.dev,f7fc15db084fa96cf967"
}
}
+8
View File
@@ -0,0 +1,8 @@
{
"owner": {
"username": "heyjumanji"
},
"record": {
"TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"]
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A simple portfolio template made by me.",
"repo": "https://github.com/deadshotofficial/minimal-portfolio",
"owner": {
"username": "deadshotofficial",
"email": "deadshot3r@pm.me",
"discord": "416952474587496449"
},
"record": {
"TXT": "vc-domain-verify=deadshot.is-a.dev,5bc34658e6351c74153c"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "thisisdhika",
"email": "dhikaardana87@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=dhika.is-a.dev,3b4f3c565c41289d2f66"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "tuannguyen2002",
"email": "",
"discord": "minhtuan9039"
},
"record": {
"TXT": "vc-domain-verify=ebooks.is-a.dev,5fa4e0aa7b17c9f52a9d"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "fabien-h",
"email": "fabien.huet@gmail.com",
"discord": "fabien_huet"
},
"record": {
"TXT": "vc-domain-verify=fabien.is.a.dev,65d8329499551546ef22"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "felipecalderon",
"email": "hola@felipe.bio"
},
"record": {
"TXT": ["vc-domain-verify=felipe.is-a.dev,07f2247f0a80372e5d48"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "guidocaru",
"discord": "696554384817127486"
},
"record": {
"TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "harshshah-codes",
"email": "harshshah.dev@gmail.com",
"discord": "889700837520199761"
},
"record": {
"TXT": "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "jimjja",
"email": "jemalja.dev@gmail.com",
"discord": "665635903955533845"
},
"record": {
"TXT": "vc-domain-verify=jemalahmedov.is-a.dev,3f41428af72725b71a10"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Jorge-lopz",
"email": "jlpenero2005@gmail.com",
"discord": "713831494761840753"
},
"record": {
"TXT": "vc-domain-verify=jorge-lopz.is-a.dev,5bfcd4cedc07714c2319"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Juanmorales1810",
"email": "juan.exequiel.morales@gmail.com",
"discord": "746910653343596574"
},
"record": {
"TXT": "vc-domain-verify=juan-morales.is-a.dev,ccd6e4ba9d4b2196b5f7"
}
}
+7 -6
View File
@@ -1,8 +1,9 @@
{
"owner": {
"username": "heyjumanji"
},
"record": {
"TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"]
}
"owner": {
"username": "heyjumanji",
"email": "madhuchutiya.unhinge50@silomails.com"
},
"record": {
"TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "Lobooooooo14",
"discord": "783120232134082580"
},
"record": {
"TXT": "vc-domain-verify=lobo.is-a.dev,aa27648658caa1c96bb8"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "argkont",
"email": "kohacaelo+is-a-dev@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=maanripe.is-a.dev,58b3a98b581598b3f572"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "maheshpaulj",
"email": "mahesh.paul.j@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=maheshpaul.is-a.dev,a6be9b77a63b6d4c8cd6"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "michaelmuthomi",
"email": "",
"discord": "michaelgikunda"
},
"record": {
"TXT": "vc-domain-verify=muthomi.is-a.dev,9e31bd88e28832c37f97"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "mirzazaman",
"email": "mirzazaman828@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=mzaman.is-a.dev,23ba156f3878cfc860f7"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "syedtahseen",
"email": "itxtahseen@gmail.com"
},
"record": {
"TXT": ["vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229"]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "naman-0804",
"email": "namansrivastava1608@gmail.com",
"discord": "naman_1101"
},
"record": {
"TXT": "vc-domain-verify=namansrivastava.is-a.dev,7b128b70cd9aae28bf1c"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "tuannguyen2002",
"email": "",
"discord": "minhtuan9039"
},
"record": {
"TXT": "vc-domain-verify=nguyenminhtuan.is-a.dev,2910b5006f1f208b05e6"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "peme969",
"email": "mrcoderpeme@gmail.com"
},
"record": {
"TXT":[
"vc-domain-verify=beta.peme969.is-a.dev,3478ddbc826d30476c3c"
]
}
}
+7 -7
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "notreallyprince",
"email": "prince30112001@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a"
"owner": {
"username": "notreallyprince",
"email": "prince30112001@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=princeprajapati.is-a.dev,f0d9843f925488ed34bb"
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "raghu-8",
"email": "raghu.project.websites@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=raghu.is-a.dev,64be76cc9f11decf61dd"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "13yadav",
"email": "yadavranjit521@gmail.com",
"discord": "529604454908035083"
},
"record": {
"TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ronaldoao",
"email": "ronaldoa.ojeda@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=ronaldo.is-a.dev,bba2427440502a716d1c"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "samishoukat12",
"email": "samishoukat12@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=samishoukat.is-a.dev,f7c3cb972c650104d507"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "wisauw",
"email": "riveross92@gmail.com",
"discord": "313046852415258625"
},
"record": {
"TXT": "vc-domain-verify=sebastianriveros.is-a.dev,be3bca98d22aab14d046"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "bananaking6",
"email": "",
"discord": "skibidibagel"
},
"record": {
"TXT": "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "UsmanBaig001",
"email": "usmanbaig1572@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=usmanbaig.is-a.dev,c2f96e70ebd3aef5458b"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "vyductan",
"email": "vdt5snet@gmail.com",
"discord": "370012050316984321"
},
"record": {
"TXT": "vc-domain-verify=vyductan.is-a.dev,55a7295a416ad7fd8e1f"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "willymateo",
"email": "matheoowilly@gmail.com",
"discord": "willycocolon"
},
"record": {
"TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "aaditya2200",
"email": "aaditya2200@gmail.com"
},
"record": {
"CNAME": "aaditya2200.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "AaronPerezPerez",
"email": "aarperper@gmail.com"
},
"record": {
"CNAME": "terminal-portfolio-h80h9v8ub-aaronperezperez.vercel.app"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "alireza mohebbi threejs project - aasoft.ir",
"owner": {
"username": "aasoftir",
"email": "aasoftmohebbi@gmail.com"
},
"record": {
"URL": "https://glitch-text-threejs.vercel.app/"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "abdiopp",
"email": "ginnieabdullah007@gmail.com"
},
"record": {
"CNAME": "abdi-portfolio.web.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This subdomain hosts my personal portfolio website.",
"repo": "https://github.com/abineethan/abineethan.github.io",
"owner": {
"username": "abineethan",
"email": "abineethan22@gmail.com"
},
"record": {
"CNAME": "abineethan.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "My Portfolio Website",
"repo": "https://github.com/adithyapaib/adithyapaib.github.io",
"owner": {
"username": "adithyapaib",
"email": "paiadithya26@gmail.com",
"twitter": "adithyapaib"
},
"record": {
"CNAME": "adithyapaib.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "AdrianQR01",
"email": "adrianquenard@gmail.com"
},
"record": {
"CNAME": "adrianqr01.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal portfolio",
"repo": "https://github.com/alexES13/alexES13.github.io",
"owner": {
"username": "alexES13",
"email": "butano_tren.7r@icloud.com"
},
"record": {
"CNAME": "alexes13.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "this is for my personal website made.",
"owner": {
"username": "ahyalfan",
"email": "alfandi0857@gmail.com"
},
"record": {
"URL": "https://ahyalfan.my.id"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Akira's Dev Webpage",
"repo": "https://github.com/cakira/cakira.github.io.git",
"owner": {
"username": "cakira",
"email": "cleber.akira@gmail.com"
},
"record": {
"CNAME": "cakira.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "joel",
"email": "joel@alblandino.com"
},
"record": {
"URL": "https://alblandino.com"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "alemiherbert",
"email": "alemiherbert@gmail.com"
},
"record": {
"CNAME": "alemiherbert.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My personal domain.",
"repo": "https://github.com/alexandre-machado/alexandre-machado.github.io",
"owner": {
"username": "alexandre-machado",
"email": "alexandre@machado.cc"
},
"record": {
"URL": "https://alexandre.machado.cc"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ALEXXHUMILDE",
"email": "alexxcrack3@gmail.com"
},
"record": {
"CNAME": "alexxhumilde.netlify.app"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "badrelmers",
"email": "alkorsan@gmail.com"
},
"record": {
"CNAME": "alkorsan.pages.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "amanza17.is-a.dev",
"repo": "https://github.com/Amanza17/Amanza17.github.io.git",
"owner": {
"username": "Amanza17",
"email": "a.manzanares.2023@alumnos.urjc.es"
},
"record": {
"CNAME": "amanza17.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Ammar's personal website",
"repo": "https://github.com/Ammaryasser1998/ammaryasser1998.github.io",
"owner": {
"username": "Ammaryasser1998",
"email": "amyss1910@gmail.com"
},
"record": {
"CNAME": "ammaryasser1998.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My perosnal portfolio",
"repo": "https://github.com/anthonycursewl/brd-portfolio",
"owner": {
"username": "anthonycursewl",
"email": "zerpaathony.wx@breadriuss.com"
},
"record": {
"CNAME": "anthportafolio.netlify.app"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "vyductan",
"email": "vdt5snet@gmail.com",
"discord": "370012050316984321"
},
"record": {
"A": ["76.76.21.21"]
}
}
+3 -1
View File
@@ -6,6 +6,8 @@
},
"record": {
"CNAME": "cjolivier123.github.io"
"A": ["185.199.108.153", "185.199.110.153", "185.199.109.153", "185.199.111.153" ],
"TXT": ["zoho-verification=zb76097651.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"],
"MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Agung's Portofolio Website",
"repo": "https://github.com/asbp/asbp.github.io",
"owner": {
"username": "asbp",
"email": "guungofficial@gmail.com"
},
"record": {
"CNAME": "asbp.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Personal website me , Aswin M V",
"repo": "https://github.com/AswinArsha/mypersonalwebsite.git",
"owner": {
"username": "AswinArsha",
"email": "aswinmv13@gmail.com"
},
"record": {
"CNAME": "tubular-kangaroo-60ad83.netlify.app"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Portfolio website for Awais Khan Niazi",
"repo": "https://github.com/askhan963/register",
"owner": {
"username": "askhan963",
"email": "awaisknas963@gmail.com"
},
"record": {
"CNAME": "awaiskhanniazi.netlify.app"
},
"proxied": false
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "axioris",
"email": "dane.foster.collins@gmail.com"
},
"record": {
"CNAME": "axioris.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "peme969",
"email": "mrcoderpeme@gmail.com"
},
"record": {
"CNAME":"beta-nine-taupe.vercel.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A portfolio website",
"repo": "https://github.com/bitsexploited/bitsexploited.github.io",
"owner": {
"username": "BitsExploited",
"email": "tspamiitesh@gmail.com"
},
"record": {
"CNAME": "BitsExploited.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "Boopup",
"discord": "972502840247484527",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XpL4EHQDM2NhhOcMnxdbK1MOEgJqrE4REv8yt5tx7uiBoPWpOkHaiyA6q1qpPpan5pdxz3QT03Okj3I-sgW5Jqo_J65lLkd_NhTIcC-BpBiqic8LrSSPXHCdPG6iB5vdWOOiAnyesygsUF5460q2X-lxuaGQ7c5vqNJxC3XVv2aDal8cYXHY5Fn1SaXNNYpdkjWDByszsy1negAdRCdZqUDnEbiyAVp5jcETjC7Rs7qJSYI4noYuatL6HYZs-17WTbhVKNA9dfmGVcPzrNB4jl_jtgXHP0Bf_xg5OSiQ4MiSGcCObMBirxSlhid-56HuzyJUDaZgiuSSPq-VdinNNw.QlY7KCeNk9GIOA3tdSkyrw.2iQLx2zPSnj0DRMey79pgn1wV1G08vhZPKpHEb4YGTcEa8bOT7lQ3hiiwBj6kbxMM54L2xz4kOBcX5fjI3o4uhay96GtE76G4cuPVBBGx8g.v44-C_GmlY0plYvqCasd_w"
},
"record": {
"A": ["191.101.148.239"]
}
}
-10
View File
@@ -1,10 +0,0 @@
{
"repo": "https://github.com/boolean44-repos/boolean44-repos.github.io",
"owner": {
"username": "boolean44-repos",
"email": "serenitypalmer10@gmail.com"
},
"record": {
"CNAME": "boolean44-repos.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "boudjoo",
"email": "abdouboudjo1@gmail.com"
},
"record": {
"CNAME": "boudjoo.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "bananaking6",
"email": "",
"discord": "skibidibagel"
},
"record": {
"CNAME": "sandpack-jet.vercel.app"
}
}
+3 -3
View File
@@ -1,12 +1,12 @@
{
"description": "My personal website and blog",
"repo": "https://github.com/CaenJones/caenjones.github.io",
"repo": "https://github.com/vcc3v/vcc3v.github.io",
"owner": {
"username": "CaenJones",
"username": "vcc3v",
"email": "cj@caenjones.com",
"twitter": ""
},
"record": {
"CNAME": "caenjones.github.io"
"CNAME": "vcc3v.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "ItzYoVishal",
"email": "rockstarelitecoc@gmail.com"
},
"record": {
"A": ["4.157.244.201"]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "sonpt-afk",
"email": "sonbappe89@gmail.com"
},
"record": {
"CNAME": "sonpts-landingfolio.vercel.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Use to portfolio",
"repo": "https://github.com/chard33/portafolio---Alura",
"owner": {
"username": "chard33",
"email": "jchar33@hotmail.com"
},
"record": {
"CNAME": "chard33.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "razelleclaren",
"email": "gracela.claren1@gmail.com"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"$schema": "../schemas/domain.json",
"owner": {
"username": "CristopherPaiz",
"email": "choperpaiz1@gmail.com"
},
"record": {
"CNAME": "crpaiz.netlify.app"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "DanielZambranoC",
"email": "trail.moth9771@eagereverest.com"
},
"record": {
"URL": "https://www.linkedin.com/in/danielzambranoc/"
}
}
-9
View File
@@ -1,9 +0,0 @@
{
"owner": {
"username": "Samuraiflamesf",
"email": "Samuraiflamesf@gmail.com"
},
"record": {
"A": ["100.42.189.124"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "davechbga",
"email": "davechbga@gmail.com"
},
"record": {
"CNAME": "davechbga.vercel.app"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "David Mendoza Pardo",
"repo": "https://github.com/dave-mp/davemp",
"owner": {
"username": "dave-mp",
"email": "david.mendoza@chibchapps.io",
"twitter": "dave-mp"
},
"record": {
"CNAME": "davemp.vercel.app"
}
}
+10 -10
View File
@@ -1,12 +1,12 @@
{
"description": "Updated Website 2023 Edition Haha",
"repo": "https://github.com/deadshotofficial/deadshotofficial.github.io",
"owner": {
"username": "deadshotofficial",
"email": "deadshot3r@pm.me",
"twitter": "deadshot3r"
},
"record": {
"CNAME": "deadshotofficial.github.io"
}
"description": "A simple portfolio template made by me.",
"repo": "https://github.com/deadshotofficial/minimal-portfolio",
"owner": {
"username": "deadshotofficial",
"email": "deadshot3r@pm.me",
"discord": "416952474587496449"
},
"record": {
"CNAME": "deadshotdev.vercel.app"
}
}
+15 -2
View File
@@ -4,10 +4,23 @@
"owner": {
"username": "creeperkafasi",
"twitter": "_creeperkafasi_",
"discord": "creeperkafasipw#1861",
"discord": "creeperkafasi",
"note": "I don't use twitter that much, you may have a better chance to contact me through discord"
},
"record": {
"CNAME": "creeperkafasi.github.io"
"A": [
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.111.153"
],
"MX": [
"mx1.forwardemail.net",
"mx2.forwardemail.net"
],
"TXT": [
"forward-email=MDcyNzA3YjVlMTdjNzhhYS1iMzA0NDgxN2RjMmZiODZhODI5Y2UyNmUzNzY5NjJhZWZkMTA4MjBlNDEyYTk3MTc0MjhkN2NlMmQxNWQ5MmFi",
"google-site-verification=9jbck7qUZb10EWndaXLikv_Kx9xQ7DpShwFCttIzA6Q"
]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "thisisdhika",
"email": "dhikaardana87@gmail.com"
},
"record": {
"CNAME": "thisisdhika.vercel.app"
}
}

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