Merge branch 'main' into main

This commit is contained in:
FatGrizzly
2021-04-14 13:47:11 +05:30
committed by GitHub
170 changed files with 4823 additions and 3029 deletions
-7
View File
@@ -17,10 +17,3 @@ jobs:
uses: borales/actions-yarn@v2.0.0
with:
cmd: test
#label:
#runs-on: ubuntu-latest
#steps:
#- name: Labelling pull request
#uses: actions/labeler@main
#with:
#repo-token: "${{ secrets.GITHUB_TOKEN }}"
+13
View File
@@ -0,0 +1,13 @@
name: Label
on:
schedule:
- cron: "0 * * * *"
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Labelling pull request
uses: actions/labeler@main
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
+19
View File
@@ -0,0 +1,19 @@
name: StaleBOT
on:
workflow_dispatch:
name: 'Force cleanup'
schedule:
- cron: "30 14 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 20
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
+21
View File
@@ -0,0 +1,21 @@
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 npm i -g n yarn && n 15.11
RUN node -v
WORKDIR /opt/app
COPY yarn.lock .
COPY package.json .
RUN yarn install
CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"]
+5
View File
@@ -4,6 +4,8 @@
**is-a-dev** is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
> **[Looking for maintainers](https://github.com/is-a-dev/register/discussions/667)**
## How do I register?
* Fork this project
@@ -27,3 +29,6 @@ Please consider donating to help me keep this running forever!
## License
This project is under the [GPL-3.0](./LICENSE) license.
[Uptime status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw)
+16
View File
@@ -0,0 +1,16 @@
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-15_x
yarn
docker-compose
#dnsutils
#certbot
];
in
pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}
+8
View File
@@ -0,0 +1,8 @@
version: '3'
services:
dev:
build:
context: .
dockerfile: ./Dockerfile
volumes:
- ./:/opt/app/code
+32
View File
@@ -0,0 +1,32 @@
# Reviewing pull requests
There are a few things you'll need to look out for when reviewing pull requests for domain registrations. This list is not exhaustive and will be updated.
### CI errors
A lot of minor issues will be caught in the CI checks
* JSON parsing issues
* Schema issues
If the CI is failing, tag the user and comment on the pr.
### Invalid email/social link
A way to contact the user is important in case we need to inform the users of some changes to the project.
Confirm if the email looks valid or the social user name/link works.
The user should have either an email or a valid social link.
### Invalid CNAME
CNAME has to be a hostname. Something like 'example.com'.
People tend to accidentally put a url there instead sometimes like `http://something.com` or `something.com/path`.
Both of those are invalid.
### Invalid A
A record has to be an array of ips
### Only one record type
Earlier, is-a-dev used to allow for handling https redirections along with CNAME but the way we handle requests has changed since then.
This is why a record file can only contain one record type. Either `CNAME` or `A` or `URL`.
+11
View File
@@ -0,0 +1,11 @@
# Publishing records
> NOTE: This is only for maintainers with publishing access
Currently, the records are published using a manual github actions workflow.
When all the PR's are merged and ready, go to `Actions > Publish records` and click on the `Run workflow` button to publish the merged records.
Sometimes it may log an error message while publishing saying some record(s) couldn't be published.
Usually, the cause is related to some conflict while deleting and re-publishing.
In those situations, running the workflow again will fix the issues.
+11
View File
@@ -0,0 +1,11 @@
{
"description": "0xflotus' personal developer website",
"repo": "https://github.com/0xflotus/0xflotus.github.io",
"owner": {
"username": "0xflotus",
"email": "0xflotus@gmail.com"
},
"record": {
"CNAME": "0xflotus.github.io"
}
}
+1 -1
View File
@@ -9,4 +9,4 @@
"record": {
"CNAME": "aakhilv.github.io"
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "aanthr0",
"email": "anthromadayt@gmail.com"
},
"record": {
"URL": "http://bh006.bluefoxhost.com:8215"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io",
"owner": {
"username": "Agrim-Bansal",
"email": "agrimx2@gmail.com"
},
"record": {
"CNAME": "agrim-bansal.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Alessandro's portfolio",
"repo": "https://github.com/alessandroaussems/portfolio",
"owner": {
"username": "alessandroaussems",
"email": "me@alessandroaussems.be"
},
"record": {
"URL": "https://alessandroaussems.be"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/jn-aman",
"owner": {
"username": "jn-aman",
"email": "aman.j@safepath.ai"
},
"record": {
"CNAME": "amanwiki.netlify.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Just my personal website",
"repo": "https://github.com/AozoraDev/AozoraDev.github.io",
"owner": {
"username": "AozoraDev",
"email": "aozoradeveloper@gmail.com"
},
"record": {
"CNAME": "aozoradev.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "My api",
"owner": {
"username": "StalkerMeyr",
"email": "andchit223@gmail.com"
},
"record": {
"A": [
"185.87.48.199"
]
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Arthurdw",
"email": "mail@arthurdw.com"
},
"repo": "https://github.com/arthurdw",
"record": {
"URL": "https://www.arthurdw.com"
}
}
+4 -4
View File
@@ -1,11 +1,11 @@
{
"description": "ATZU's website",
"description": "Atzu's Personal Website",
"repo": "https://github.com/z3ro0k",
"owner": {
"username": "z3ro0k",
"email": "zerok636@gmail.com"
"username": "Atzu",
"email": "atzu@nextgenteam.tech"
},
"record": {
"CNAME": "atzu.xyz"
"URL": "https://atzu.studio"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "this a link to my website",
"owner": {
"username": "avcado",
"email": "devavcado@gmail.com"
},
"record": {
"CNAME": "avcado.github.io"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "The Interstellar Twilight",
"repo": "https://github.com/avinal/avinal.github.io",
"owner": {
"username": "avinal",
"email": "185067@nith.ac.in"
},
"record": {
"CNAME": "avinal.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Aypro's personal website",
"repo": "https://github.com/aypro-droid/aypro-droid.github.io",
"owner": {
"username": "aypro-droid",
"email": "ayprogaming1@gmail.com"
},
"record": {
"CNAME": "aypro-droid.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "bashoudev",
"email": "zionthedev@gmail.com",
"twitter": "bashoudev"
},
"record": {
"URL": "https://bashoudev.ga"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Basils' website",
"repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io",
"owner": {
"username": "LowSpecCorgi",
"email": "haroldthesenpai@gmail.com",
"twitter": "basilicous"
},
"record": {
"CNAME": "LowSpeCorgi.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"owner": {
"username": "thetayloredman",
"email": "",
"telegram": "BadBoyHaloCat"
},
"description": "Personal website",
"record": {
"A": [
"167.172.157.69"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bicepsfako's personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "bicepsfako.netlify.app"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Bots personal developer website",
"repo": "https://github.com/Bicepsfako",
"owner": {
"username": "Bicepsfako",
"email": "bicepsfako@gmail.com"
},
"record": {
"CNAME": "vascular-barnacle-zfdxk5mcunu4qasmwk8n14na.herokudns.com"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Discord Bot's Website",
"owner": {
"username": "brawlie",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "brawlie.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "a website for my api",
"repo": "https://github.com/brawlie/api",
"owner": {
"username": "brawlie",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "cjdenio",
"email": "",
"twitter": "CalebDenio"
},
"repo": "https://github.com/cjdenio/site-frontend",
"record": {
"URL": "https://calebden.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "code-a-bit",
"repo": "https://github.com/carlosgiralt/carlosgiralt.github.io",
"owner": {
"username": "carlosgiralt",
"email": "",
"twitter": "@cagiraltt"
},
"record": {
"CNAME": "carlosgiralt.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Diordnas",
"email": "alessandroeliot@gmail.com"
},
"description": "Personal site, as well as hosting a few tools",
"repo": "https://github.com/diordnas/diordnas.github.io",
"record": {
"CNAME": "diordnas.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Chandrakant's Work",
"owner": {
"username": "chandrakaant",
"email": "chandrakantpatel23@gmail.com"
},
"record": {
"CNAME": "chandrakaant.github.io"
}
}
-11
View File
@@ -1,11 +0,0 @@
{
"description": "Chetan's website",
"repo": "https://github.com/chetanbasuray/chetanbasuray.github.io",
"owner": {
"username": "chetanbasuray",
"email": "basuraychetan@gmail.com"
},
"record": {
"CNAME": "chetanbasuray.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Krchip's develop site",
"repo": "https://github.com/Krchip/Krchip.github.io",
"owner": {
"username": "Krchip",
"email": "elite7744@gmail.com"
},
"record": {
"URL": "https://krchip.github.io"
}
}
+1 -1
View File
@@ -6,4 +6,4 @@
"record": {
"CNAME": "sly-little-fox.github.io"
}
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Main Pages",
"repo": "https://github.com/CinnamonShrine/CinnamonShrine.github.io",
"owner": {
"username": "CinnamonShrine",
"email": "marifbillah524@gmail.com",
"twitter": "CinnamonShrine"
},
"record": {
"CNAME": "cinnamonshrine.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A website to show off my projects and or just blogs, etc etc.",
"repo": "https://github.com/ZeroTwoDevs/connor.github.io",
"owner": {
"username": "Connor",
"email": "halil_ismail@yahoo.com"
},
"record": {
"CNAME": "connordevs.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "CoolCoderSJ",
"email": "CoolCoderSJ@gmail.com"
},
"description": "Portfolio",
"record": {
"CNAME": "coolcodersj.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "A Website For My API",
"repo": "https://github.com/joeleeofficial/",
"owner": {
"username": "joeleeofficial",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Hello! My name is Daniel, I am a developer that has been programming since 2018. This website shows some of the things I have created.",
"owner": {
"username": "hackermondev",
"email": "",
"twitter": "hackermondev"
},
"record": {
"CNAME": "71bac7ca-1eac-46fe-9588-cd31d68b2e06.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Dave Bhandari's Portfolio",
"repo": "https://github.com/Davekibh/Davekibh.github.io",
"owner": {
"username": "Davekibh",
"email": "davestephen2002@gmail.com"
},
"record": {
"CNAME": "Davekibh.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"description": "Personal Portfolio",
"owner": {
"username": "Deeksha2501",
"email": "sharmadeeksha325@gmail.com"
},
"record": {
"URL": "http://deekshasharma.vercel.app/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Student and developer in the United Kingdom.",
"repo": "https://github.com/ohlookitsderpy",
"record": {
"URL": "https://derpyenterprises.org"
},
"owner": {
"username": "ohlookitsderpy",
"email": "contact@derpyenterprises.org"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A personal site for all my stuff",
"repo": "https://github.com/b1ackshadow/b1ackshadow.github.io",
"owner": {
"username": "b1ackshadow",
"email": "actuallydc@gmail.com",
"twitter": ""
},
"record": {
"CNAME": "b1ackshadow.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "a discord bot website",
"repo": "https://github.com/botstudios",
"owner": {
"username": "BotStudios",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "botstudios.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"Dooly": "Dooly is a Dev.",
"repo": "https://github.com/entry0917/doolyweb/",
"owner": {
"username": "entry0917",
"email": "seeun0917@naver.com",
"twitter": "sense09173"
},
"record": {
"CNAME": "entry0917.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "dsaw's blog",
"repo": "https://github.com/dsaw/dsaw.github.io",
"owner": {
"username": "dsaw",
"email": "dsawthedsawwhat@gmail.com"
},
"record": {
"CNAME": "dsaw.github.io"
}
}
+4 -4
View File
@@ -1,11 +1,11 @@
{
"description": "DwiiUnknown is a dev.",
"repo": "https://github.com/ItzMeDwii/dwii.me",
"repo": "https://github.com/ItzMeDwii/dwii",
"owner": {
"username": "ItzMeDwii",
"email": "dwii5359@azalelnation.com"
"email": "dwiiunknown@gmail.com"
},
"record": {
"CNAME": "azn-us.dwii.me"
"URL": "https://dwii.my.id/"
}
}
}
+2 -2
View File
@@ -6,6 +6,6 @@
"record": {
"A": [
"90.217.214.245"
]
]
}
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "331leo",
"email": "331leo@kakao.com"
},
"record": {
"CNAME": "dev.is.eddy.leok.kr"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Ella's Portfolio",
"repo": "https://github.com/eilla1/ella.is-a.dev-redirect",
"owner": {
"username": "eilla1",
"email": "exu6056@gmail.com"
},
"record": {
"CNAME": "eilla1.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Emmaffle's Site - memorable redirect",
"repo": "https://github.com/wafflecoffee/waffle.coffee",
"owner": {
"username": "wafflecoffee",
"email": "emma@waffle.coffee"
},
"record": {
"CNAME": "waffle.coffee"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "evaldas",
"email": "evabur@icloud.com"
},
"record": {
"CNAME": "burlingis.com"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "home/croxx",
"repo": "https://github.com/fabiancrx/fabiancrx.github.io",
"owner": {
"username": "fabiancrx",
"email": "croxx5f@gmail.com"
},
"record": {
"CNAME": "fabiancrx.github.io"
}
}
+3 -3
View File
@@ -1,11 +1,11 @@
{
"description": "Fayyadh Personal Website",
"repo": "https://github.com/Abdurrahman075/reweb",
"description": "My Personal Website",
"repo": "https://github.com/Abdurrahman075/fayyadh-my-id",
"owner": {
"username": "Fayyadh",
"email": "fayyadh.abdurrahman007@gmail.com"
},
"record": {
"CNAME": "glitch.edgeapp.net"
"URL": "https://fayyadh.my.id"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "github-username",
"email": "mail@felixyeung.dev"
},
"repo": "https://github.com/felixyeungdev",
"record": {
"URL": "https://felixyeung.dev"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Flexicos website",
"repo": "https://github.com/7xh/7xh.github.io",
"owner": {
"username": "7xh",
"email": "noterme@protonmail.com"
},
"record": {
"CNAME": "7xh.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "fluted.is-a-dev",
"repo": "https://github.com/fluteds/fluteds.github.io",
"owner": {
"username": "fluteds",
"email": "",
"twitter": "fluted_"
},
"record": {
"CNAME": "fluted.xyz"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "FSanchir",
"repo": "https://github.com/fsanchir/fsanchir.github.io",
"owner": {
"username": "fsanchir",
"email": "fsanchir@fsip.ml",
"twitter": "None!"
},
"record": {
"CNAME": "fsanchir.github.io"
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"description": "Gingdev personal developer website",
"repo": "https://github.com/ging-dev",
"owner": {
"username": "ging-dev",
"email": "gingdz11012001@gmail.com"
},
"record": {
"A": [
"192.243.108.102"
]
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My Personal Website",
"repo": "https://github.com/GiriGummadi",
"owner": {
"username": "GiriGummadi",
"email": "girigummadi5656@gmail.com"
},
"record": {
"CNAME": "girigummadi.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "gornostay25",
"email": "volodia.palamar25+github@gmail.com"
},
"record": {
"CNAME": "gornostay25.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Gokul's Personal Site",
"repo": "https://github.com/JavaCafe01/javacafe01.github.io",
"owner": {
"username": "JavaCafe01",
"email": "",
"twitter": "javacafe01"
},
"record": {
"CNAME": "javacafe01.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "hector-vigil",
"repo": "https://github.com/Hector-Vigil/hector-vigil.github.io",
"owner": {
"username": "hector-vigil",
"email": "vigilescalera.h@gmail.com"
},
"record": {
"CNAME": "hector-vigil.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Portfolio redirect for Hokkqi",
"repo": "https://werewolf.codes",
"owner": {
"username": "hokkqi",
"email": "lio@werewolf.design"
},
"record": {
"URL": "https://werewolf.design"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal portfolio for Ishaan Mehta (IIIT Surat)",
"repo": "https://github.com/ishaanmehta4/portfolio",
"owner": {
"username": "ishaanmehta4",
"email": "ishaanmehta4@gmail.com"
},
"record": {
"URL": "https://github.com/ishaanmehta4"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Ishan Goel's personal website (quackduck@github)",
"repo": "https://github.com/quackduck/quackduck.github.io",
"owner": {
"username": "quackduck",
"email": "igoel.mail@gmail.com",
"name": "Ishan Goel"
},
"record": {
"CNAME": "quackduck.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"owner": {
"username": "TheLimifiedLime",
"email": "",
"twitter": "TheLimifiedLime"
},
"description": "I will use this to redirect to my main domain",
"repo": "https://github.com/TheLimifiedLime/issai.club",
"record": {
"URL": "https://issai.club"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "nythrox",
"email": "jasonsantiagobutler@gmail.com",
"twitter": "nythrox_"
},
"record": {
"URL": "https://jasonbutler.web.app/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/SquarePear/jeffreyharmon.me",
"owner": {
"username": "SquarePear",
"email": "jeffrey@reygames.com"
},
"record": {
"URL": "https://jeffreyharmon.me/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "TheBotlyNoob's development website",
"repo": "https://github.com/TheBotlyNoob/TheBotlyNoob.github.io",
"owner": {
"username": "TheBotlyNoob",
"email": "TheBotlyNoob@gmail.com"
},
"record": {
"CNAME": "TheBotlyNoob.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "my personal website",
"repo": "https://github.com/teamjoelee/me",
"owner": {
"username": "teamjoelee",
"email": "tojoeleeofficial@gmail.com"
},
"record": {
"CNAME": "teamjoelee.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Johan's personal developer website",
"repo": "https://github.com/JohanSanSebastian.github.io",
"owner": {
"username": "JohanSanSebastian",
"email": "johansanju06@gmail.com"
},
"record": {
"CNAME": "JohanSanSebastian.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Personal website of Johnson Lee",
"repo": "https://github.com/johnsonlee/johnsonlee.github.io",
"owner": {
"username": "johnsonlee",
"email": "g.johnsonlee@gmail.com"
},
"record": {
"CNAME": "johnsonlee.github.io"
}
}
+2 -2
View File
@@ -1,9 +1,9 @@
{
"owner": {
"username": "HerrBlauzahn",
"username": "Justus-D",
"email": "justus.is-a.dev@herrblauzahn.de"
},
"record": {
"CNAME": "herrblauzahn.github.io"
"CNAME": "is-a-dev.justus-d.de"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "KAI is a Dev",
"repo": "https://github.com/blackaimc/blackaimc.github.io",
"owner": {
"username": "blackaimc",
"email": "blackaimc@gmail.com"
},
"record": {
"CNAME": "blackaimc.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Kells is Developer!",
"repo": "https://github.com/jwkim101201/jwkim101201.github.io",
"owner": {
"username": "jwkim101201",
"email": "jwkim101201@gmail.com"
},
"record": {
"CNAME": "jwkim101201.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Khushraj Rathod's personal website.",
"repo": "https://github.com/KhushrajRathod/www.khushrajrathod.com",
"owner": {
"username": "KhushrajRathod",
"email": "me@khushrajrathod.com"
},
"record": {
"URL": "https://www.khushrajrathod.com"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "L0SER's personal developer website",
"repo": "https://github.com/L0SER8228",
"owner": {
"username": "L0SER8228",
"email": "loserlackey@gmail.com"
},
"record": {
"CNAME": "L0SER8228.github.io"
}
}
+1 -2
View File
@@ -1,6 +1,5 @@
{
"repo": "https://github.com/LeonskiDev/leonskidev.github.io",
"description": "This is my portfolio website, if possible I'll also have bodged.is-a.dev as my blog.",
"repo": "https://github.com/LeonskiDev/leonskidev",
"owner": {
"username": "LeonskiDev",
"email": "bodged@pm.me"
+12
View File
@@ -0,0 +1,12 @@
{
"description": "Leví Arista Resume",
"repo": "https://github.com/leviarista/resume",
"owner": {
"username": "leviarista",
"email": "levi.arista@gmail.com",
"twitter": "leviarista"
},
"record": {
"URL": "https://leviarista.github.io/resume/"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Homepage redirect for Lio",
"repo": "https://werewolf.codes",
"owner": {
"username": "hokkqi",
"email": "lio@werewolf.design"
},
"record": {
"URL": "https://himbo.cat"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "LlamaLad7's personal website",
"repo": "https://github.com/LlamaLad7/llamalad7.github.io",
"owner": {
"username": "LlamaLad7",
"email": "l3gomindstorms@gmail.com"
},
"record": {
"CNAME": "llamalad7.github.io"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "LinkerScript",
"email": "min@effobe.com"
},
"record": {
"CNAME": "6498c941-9031-4e57-9fc0-12716fa187f4.repl.co"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "The personal website for LuanRT",
"repo": "https://github.com/luanrt/luanrt.github.io",
"owner": {
"username": "luanrt",
"email": "luan.lrt4@gmail.com"
},
"record": {
"CNAME": "luanrt.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Luis Correa Leyva",
"repo": "https://github.com/correaleyval/correaleyval.github.io",
"owner": {
"username": "correaleyval",
"email": "correaleyval@gmail.com"
},
"record": {
"CNAME": "correaleyval.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"owner": {
"username": "Merlin04",
"email": "is-a-dev@benjaminsmith.dev"
},
"description": "Redirect to personal website",
"repo": "https://github.com/merlin04/benjaminsmith.dev",
"record": {
"URL": "https://benjaminsmith.dev"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "magic4me",
"email": "magic4me.info@gmail.com"
},
"record": {
"CNAME": "magic4me.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Portfolio of Marcus Weinberger",
"repo": "https://github.com/AgeOfMarcus",
"owner": {
"username": "AgeOfMarcus",
"email": "marcusjw.ftw@gmail.com"
},
"record": {
"CNAME": "dev.marcusj.tech"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Miguel Piedrafita's website",
"repo": "https://github.com/m1guelpf",
"owner": {
"username": "m1guelpf",
"email": "soy@miguelpiedrafita.com"
},
"record": {
"URL": "https://miguelpiedrafita.com"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "A young full-stack developer who loves Python!",
"repo": "https://github.com/isigebengu-mikey/isigebengu-mikey.github.io",
"owner": {
"username": "isigebengu-mikey",
"email": "mikey@mikeyo.ml",
"twitter": ""
},
"record": {
"CNAME": "isigebengu-mikey.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/mtgsquad/mahir-molai",
"owner": {
"username": "mtgsquad",
"email": "mtgissmart@gmail.com"
},
"record": {
"CNAME": "mahir-molai.pages.dev"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "6lb",
"email": "6lb@github.io"
},
"record": {
"CNAME": "6lb.github.io"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"description": "MTGSquad's Website, A Place Where He Jots Down Dumb Stuff",
"repo": "https://github.com/mtgsquad",
"owner": {
"username": "mtgsquad",
"email": "mtgsquad.dev@protonmail.com",
"twitter": "mtgsquad_dev"
},
"record": {
"CNAME": "hashnode.network"
}
}
+4 -4
View File
@@ -1,11 +1,11 @@
{
"description": "Muchenski's personal developer website",
"repo": "https://github.com/HenriqueMuchenski/henriquemuchenski.github.io",
"repo": "https://github.com/Muchenski/muchenski.github.io",
"owner": {
"username": "HenriqueMuchenski",
"email": "hjmuchenski@gmail.com"
"username": "Muchenski",
"email": "muchenski.dev@gmail.com"
},
"record": {
"CNAME": "henriquemuchenski.github.io"
"CNAME": "muchenski.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "The official website for Lawliet.Host.",
"repo": "https://github.com/NoobDevs69/LawlietHost",
"owner": {
"username": "MysteriousK69",
"email": "mysteriousk@lawliet.host"
},
"record": {
"CNAME": "lawliet.host"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "Nalin-2005",
"email": "nalinstudios@gmail.com",
"instagram": "nalin_2005"
},
"record": {
"CNAME": "nalin-2005.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "Narender's Personal Website and Blog",
"repo": "https://github.com/nkkize/nkkize.github.io",
"owner": {
"username": "nkkize",
"email": "nkk.snat@gmail.com"
},
"record": {
"CNAME": "nkkize.github.io"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"description": "My personal website",
"repo": "https://github.com/itsnebulalol/nebulayt.xyz",
"owner": {
"username": "itsnebulalol",
"email": "computerman1229@gmail.com"
},
"record": {
"CNAME": "itsnebulalol.github.io"
}
}

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