mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-21 04:24:17 +00:00
Merge branch 'main' into main
This commit is contained in:
@@ -3,3 +3,4 @@ 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
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
* @phenax
|
||||
|
||||
domains/ @is-a-dev/maintainers
|
||||
*.md @is-a-dev/maintainers
|
||||
@@ -0,0 +1,15 @@
|
||||
## Requirements
|
||||
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above.
|
||||
|
||||
Please note that we reserve the rights not to accept any domain at our own discretion.
|
||||
|
||||
- [ ] The file is in the `domains` folder and is in the JSON format.
|
||||
- [ ] You have completed your website. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] The website is reachable. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] You're not using Vercel or Netlify. <!-- This is not required if you're using an URL record. -->
|
||||
- [ ] The CNAME record doesn't contain `https://` or `/`. <!-- This is not required if you are not using a CNAME record. -->
|
||||
- [ ] There is sufficient information at the `owner` field. <!-- You need to have your email presented at `email` field. If you don't want to provide your email for any reason, you can specify another social platform (e.g. Discord or Twitter) so we can contact you. -->
|
||||
|
||||
|
||||
## Website Link/Preview
|
||||
<!-- Please provide a link or preview of your website below. -->
|
||||
+14
-12
@@ -10,15 +10,17 @@ jobs:
|
||||
name: instructions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Comment
|
||||
if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
uses: actions/github-script@v3
|
||||
with:
|
||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
script: |
|
||||
const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
|
||||
const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
|
||||
if (hasLabel(context, 'domain'))
|
||||
console.log('Domain');
|
||||
await instructions(context, github);
|
||||
- run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }}
|
||||
if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
# - uses: actions/checkout@v2
|
||||
# - name: Comment
|
||||
# if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
||||
# uses: actions/github-script@v3
|
||||
# with:
|
||||
# github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
# script: |
|
||||
# const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
|
||||
# const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
|
||||
# if (hasLabel(context, 'domain'))
|
||||
# console.log('Domain');
|
||||
# await instructions(context, github);
|
||||
|
||||
@@ -5,15 +5,19 @@ jobs:
|
||||
validation:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- name: Installing dependencies
|
||||
- name: Setup node v15
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '15'
|
||||
- name: Install dependencies
|
||||
uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: install --ignore-engines
|
||||
- name: Running tests
|
||||
cmd: install --ignore-engines --frozen-lockfile
|
||||
- name: Run tests
|
||||
uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: test
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
name: Label
|
||||
name: Pull Request Labeler
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 * * * *"
|
||||
|
||||
- cron: '*/10 * * * *'
|
||||
jobs:
|
||||
label:
|
||||
labeler:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Labelling pull request
|
||||
uses: actions/labeler@main
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
- uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
LABEL_MAPPINGS_FILE: .github/labeler.yml
|
||||
|
||||
@@ -1,14 +1,17 @@
|
||||
name: Publish records
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
name: 'Publish records'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
if: github.repository == 'is-a-dev/register'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: install --ignore-engines
|
||||
@@ -25,6 +28,7 @@ jobs:
|
||||
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 }}
|
||||
uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: publish-records
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
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 issue to prevent it'
|
||||
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
|
||||
exempt-issue-labels: 'no-stale'
|
||||
exempt-pr-labels: 'no-stale'
|
||||
+5
-4
@@ -1,8 +1,9 @@
|
||||
# Code of conduct
|
||||
# Code of Conduct
|
||||
This is a Code of Conduct for any interactions in this repository. This includes pull requests, issues, etc.
|
||||
|
||||
* **Don't be a dick** - It's not that complicated. Just be nice to people
|
||||
* **Don't abuse the service** - This service is intended for developers to get a pretty url for their personal websites
|
||||
- **Use common sense** - It's not that complicated. Just be nice to people.
|
||||
- **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites.
|
||||
- **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites.
|
||||
|
||||
If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue.
|
||||
The abuse reports will be investigated and the necassary action will be taken
|
||||
The abuse reports will be investigated and the necessary action will be taken!
|
||||
|
||||
+12
-12
@@ -1,24 +1,24 @@
|
||||
# Contributing
|
||||
When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
|
||||
|
||||
You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md)
|
||||
You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md).
|
||||
|
||||
## Pull requests
|
||||
You can create an pull request for the following reasons -
|
||||
* Adding, changing or removing a domain file you own
|
||||
* Fixing a bug in the scripts or CI
|
||||
* Fix an error in the documentation
|
||||
* Adding, changing or removing a domain file you own.
|
||||
* Fixing a bug in the scripts or CI.
|
||||
* Fix an error in the documentation.
|
||||
|
||||
#### Domains
|
||||
Changes to domain files will follow the given process -
|
||||
* PR will be reviewed and merged to `main` branch
|
||||
* Currently, the publishing of records is done manually. This will be automated soon with releases
|
||||
* The changes should reflect soon after publishing
|
||||
* PR will be reviewed and merged to `main` branch.
|
||||
* The records will be published as soon as the PR is merged.
|
||||
* The changes should reflect soon after publishing.
|
||||
|
||||
|
||||
## Issues
|
||||
* **Report an abusive domain** - Create a new issue with the label `report-abuse`
|
||||
* **Report a problem with your domain** - Create a new issue with the label `support`
|
||||
* **Suggestions** - Create a new issue with the label `suggestion`
|
||||
* **For any questions** - Create a new issue with the label `question`
|
||||
* **Report any other issues related to this repository** - Create a new issue with any label that fits
|
||||
* **Report an abusive domain** - Create a new issue with the label `report-abuse`.
|
||||
* **Report a problem with your domain** - Create a new issue with the label `support`.
|
||||
* **Suggestions** - Create a new issue with the label `suggestion`.
|
||||
* **For any questions** - Create a new issue with the label `question`.
|
||||
* **Report any other issues related to this repository** - Create a new issue with any label that fits.
|
||||
|
||||
+21
@@ -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"]
|
||||
|
||||
@@ -1,29 +1,76 @@
|
||||

|
||||
<p align="center">
|
||||
<img alt="is-a-dev Banner" src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png">
|
||||
</p>
|
||||
|
||||
<br />
|
||||
<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">
|
||||
</p>
|
||||
|
||||
**is-a-dev** is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
|
||||
<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>
|
||||
|
||||
## How do I register?
|
||||
* Fork this project
|
||||
* Add a new `domains/your-domain-name.json` file directory to register `your-domain-name.is-a.dev`
|
||||
* [Read the docs](./docs)
|
||||
* The PR will be reviewed and merged
|
||||
* After merging, the changes will take effect within a day
|
||||
* That's it! Done! Now go show off your cool `.is-a.dev` domain
|
||||
<p align="center">
|
||||
<a href="https://discord.gg/PZCGHz4RhQ"><img alt="Discord Server" src="https://discord.com/api/guilds/830872854677422150/widget.png?style=banner2"></a>
|
||||
</p>
|
||||
|
||||
# Issues
|
||||
|
||||
If you have any problems then feel free to open a issue on github.
|
||||
If you have an issue that contains confidental infomation then email hello@maintainers.is-a.dev any other emails will be ignored.
|
||||
|
||||
## Donations
|
||||
This project is a free and open source service for developers and will stay that way.
|
||||
## Register
|
||||
|
||||
Please consider donating to help me keep this running forever!
|
||||
### Automated Registration
|
||||
|
||||
<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 recurring donation button" /></a>
|
||||
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 automagically!
|
||||
|
||||
Another method is to join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing.
|
||||
|
||||
### Manual Registration
|
||||
|
||||
## License
|
||||
This project is under the [GPL-3.0](./LICENSE) license.
|
||||
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
|
||||
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`.
|
||||
- [Read the documentation](https://is-a.dev/docs).
|
||||
- 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.
|
||||
- Enjoy your new `.is-a.dev` domain!
|
||||
|
||||
### CLI Registration
|
||||
|
||||
For issues with the CLI, **DO NOT OPEN AN ISSUE ON THIS REPOSITORY**, instead open an issue [here](https://github.com/wdhdev/is-a-dev-cli/issues/new).
|
||||
|
||||
Install the CLI:
|
||||
|
||||
```bash
|
||||
npm install @is-a-dev/cli -g
|
||||
```
|
||||
|
||||
Login to the CLI:
|
||||
|
||||
```bash
|
||||
is-a-dev login
|
||||
```
|
||||
|
||||
Register a subdomain on the CLI:
|
||||
|
||||
```
|
||||
is-a-dev register
|
||||
```
|
||||
|
||||
## Status
|
||||
You can check the uptime of our services on our [status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw).
|
||||
|
||||
[](https://stats.uptimerobot.com/zY4XKIRVzw/787472645)
|
||||
[](https://stats.uptimerobot.com/zY4XKIRVzw/787472617)
|
||||
|
||||
### Similar Services
|
||||
If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains).
|
||||
|
||||
### Donate
|
||||
If you like this project, please consider donating so we can keep this project running forever!
|
||||
|
||||
<a href="https://www.buymeacoffee.com/phenax" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me a Coffee" height="28" width="119"></a>
|
||||
<a href="https://liberapay.com/phenax" target="_blank"><img src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=for-the-badge" alt="Liberapay"></a>
|
||||
|
||||
+5
-3
@@ -3,12 +3,14 @@ let
|
||||
inherit (nixpkgs) pkgs;
|
||||
|
||||
nixPackages = with pkgs; [
|
||||
nodejs-15_x
|
||||
nodejs-16_x
|
||||
yarn
|
||||
docker-compose
|
||||
dnsutils
|
||||
certbot
|
||||
#certbot
|
||||
];
|
||||
in pkgs.stdenv.mkDerivation {
|
||||
in
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "env";
|
||||
buildInputs = nixPackages;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
version: '3'
|
||||
services:
|
||||
dev:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
volumes:
|
||||
- ./:/opt/app/code
|
||||
@@ -1,7 +0,0 @@
|
||||
# How to register
|
||||
You can read the [domains.json file api reference](./domains-json.md) for more information about the json file structure.
|
||||
|
||||
### Websites hosted at
|
||||
* [For github pages users](./hosted-at/github-pages.md)
|
||||
* [For other services](./hosted-at/others.md)
|
||||
|
||||
@@ -1,88 +0,0 @@
|
||||
# Domains json file
|
||||
The way you register your own domain name is through a pull request.
|
||||
To register `my-domain.is-a.dev`, you need to create a `domains/my-domain.json` file
|
||||
|
||||
### Filename
|
||||
The file name must pass the following criteria -
|
||||
* Must be alpha-numeric in lowercase with dashes as seperators
|
||||
* Must be more than 2 characters long
|
||||
* Must have a `.json` file extension
|
||||
|
||||
|
||||
The file needs to have the following fields -
|
||||
|
||||
### owner (required)
|
||||
You need to specify some information about yourself here.
|
||||
This is so that you can be contacted if required.
|
||||
|
||||
In the owner object, the fields `username` and `email` are required. You can however add more information in this object if you need.
|
||||
```json
|
||||
{
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email"
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
If you don't wish to share your email address here, please share your twitter or any other social media account.
|
||||
```json
|
||||
{
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "",
|
||||
"twitter": "twitter-handle"
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### description
|
||||
Describe your domain name and your usage. This is purely for documentation purpose and is optional.
|
||||
|
||||
|
||||
### repo
|
||||
This is a link to your website repository or your github account. This is purely for documentation purpose and is optional.
|
||||
|
||||
|
||||
### record (required)
|
||||
This is where you specify how you want to link to your server/webpage.
|
||||
|
||||
Currently, only `CNAME`, `A`, `URL` record types are supported.
|
||||
|
||||
Here's a few different use cases for the given record types -
|
||||
|
||||
* **CNAME**
|
||||
CNAME must be a host name (Eg - `something.tld`)
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"CNAME": "username.github.io"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **A record**
|
||||
A record must be a list of ips
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"A": [
|
||||
"999.999.991.999",
|
||||
"999.999.992.999",
|
||||
"999.999.993.999",
|
||||
"999.999.994.999"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* **URL redirection**
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"URL": "https://my-other-website.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
# For github pages
|
||||
|
||||
### Creating a github pages repo
|
||||
You can create a github pages website by creating a repo with the name `<your-github-username>.github.io`.
|
||||
For more information about github pages, please read through [their guide](https://guides.github.com/features/pages/).
|
||||
|
||||
|
||||
### Domains file
|
||||
Create a json file inside the `domains` directory (`domains/<subdomain>.json`) with the following contents
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/github-username/github-username.github.io",
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email",
|
||||
"twitter": "your-twitter-username"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "github-username.github.io"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Configuring your repo
|
||||
* After the pull request is merged, you will see a 404 error on `your-domain.is-a.dev`. To fix this go to your github page repo's `Settings > Github pages > Custom domain` and add `your-domain.is-a.dev` in the given field
|
||||
* Check the `Enforce HTTPS` checkbox below the custom domain input
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
# For other hosting services
|
||||
|
||||
### Domains file
|
||||
Create a json file inside the `domains` directory (`domains/<subdomain>.json`) with the following contents
|
||||
```json
|
||||
{
|
||||
"description": "Add some description",
|
||||
"repo": "https://github.com/github-username",
|
||||
"owner": {
|
||||
"username": "github-username",
|
||||
"email": "any@email"
|
||||
},
|
||||
"record": {}
|
||||
}
|
||||
```
|
||||
|
||||
### Record
|
||||
In your `record` key of the json file, you need to add one of the following -
|
||||
* CNAME record
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"CNAME": "the-domain-you-own.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* A records
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"A": [
|
||||
"69.69.69.69",
|
||||
"69.69.69.70"
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
* URL redirection
|
||||
```json
|
||||
{
|
||||
"record": {
|
||||
"URL": "https://your-website.com"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Configuring your server
|
||||
After the pull request is merged, **configure your server** (apache, nginx, whatever) to work with `<subdomain>.is-a.dev`. If you are unsure how to configure your server, you can create an issue for support.
|
||||
|
||||
You should also, include `<subdomain>.is-a.dev` in your **ssl certificate** to get rid of certificate errors
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "SatyamV7.is-a.dev",
|
||||
"repo": "https://github.com/SatyamV7/SatyamV7.github.io",
|
||||
"owner": {
|
||||
"username": "SatyamV7",
|
||||
"email": "satyamverma46@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "SatyamV7.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "0ad.is-a.dev",
|
||||
"owner": {
|
||||
"username": "broduer40",
|
||||
"email": "broduer@aogamers.net",
|
||||
"discord": "[AoG+] Broduer#0331"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://play0ad.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "pythonmcpi",
|
||||
"email": "user3456@insomnia247.nl",
|
||||
"irc": "user3456@irc.insomnia247.nl/#shells",
|
||||
"discord": "Little Furret#7901",
|
||||
"note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
|
||||
},
|
||||
"description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
|
||||
"record": {
|
||||
"CNAME": "insomnia247.nl"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "Yamaishi's website",
|
||||
"repo": "https://github.com/0x3st/0x3st.github.io",
|
||||
"owner": {
|
||||
"username": "0x3st",
|
||||
"email": "t.yamaishi@qq.com",
|
||||
"twitter": "TenkutiYamaishi"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "0x3st.github.io"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0xSuryax",
|
||||
"email": "surya98613@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["38.242.141.34"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "0xviel github page",
|
||||
"repo": "https://github.com/nobuyaki/nobuyaki.github.io",
|
||||
"owner": {
|
||||
"username": "nobuyaki",
|
||||
"email": "contact@0xviel.my.id",
|
||||
"discord": "445073800850046977"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "nobuyaki.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"description": "redirects to my website",
|
||||
"repo": "https://github.com/18o4/18o4.github.io",
|
||||
"owner": {
|
||||
"username": "18o4",
|
||||
"email": "",
|
||||
"discord": "18O4#4350",
|
||||
"discordUserID": "279894305630453760"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://18o4.tk"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "1NO26",
|
||||
"email": "ali2626albayrak@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://whub.pro"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
|
||||
"repo": "https://github.com/EndingPencil/EndingPencil.github.io",
|
||||
"owner": {
|
||||
"username": "EndingPencil",
|
||||
"email": "watsonsohil@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "EndingPencil.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RainyXeon",
|
||||
"email": "minh15052008@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "5a3e476d-47ce-4088-9b34-42cdb8c3395b.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "1st.is-a.dev",
|
||||
"repo": "https://github.com/Rahuletto/1st",
|
||||
"owner": {
|
||||
"username": "Rahuletto",
|
||||
"email": "rahulmarban@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "d0720bf3-70d2-4b24-9273-b44ce8e0c708.id.repl.co"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "merakesh207",
|
||||
"email": "merakesh207@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://behance.net/merakesh207"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "2096779623",
|
||||
"email": "2096779623@qq.com",
|
||||
"telegram": "utermux_blog"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://www.utermux.dev"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "3pls0de.is-a.dev.",
|
||||
"repo": "https://github.com/3pls0de",
|
||||
"owner": {
|
||||
"username": "3pls0de",
|
||||
"email": "naji.aka58@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://lostpipel.blogspot.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "404Dev-404",
|
||||
"email": "anthonyvaldes318+404@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "404dev-404.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "44.is-a.dev",
|
||||
"repo": "https://github.com/9xN/9xN.github.io",
|
||||
"owner": {
|
||||
"username": "9xN",
|
||||
"email": "0@fbi.ac"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "9xN.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Akshay-Arjun",
|
||||
"email": "akshayvollala779@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"URL": "https://akshay-arjun.github.io/Akshay-Arjun"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/5rq/5rq.github.io",
|
||||
"owner": {
|
||||
"username": "5rq",
|
||||
"email": "600@fbi.ac"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "5rq.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Portfolio website for 6502",
|
||||
"repo": "https://github.com/nobody5050/nobody5050.github.io",
|
||||
"owner": {
|
||||
"username": "Nobody5050",
|
||||
"email": "levibelland@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "nobody5050.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Sonic853",
|
||||
"email": "sonic853@qq.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["119.29.157.82"]
|
||||
}
|
||||
}
|
||||
+10
-10
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"description": "The root domain for is-a.dev website",
|
||||
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
|
||||
"owner": {
|
||||
"username": "phenax",
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
}
|
||||
}
|
||||
"description": "The root domain for is-a.dev website",
|
||||
"repo": "https://github.com/is-a-dev/is-a-dev.github.io",
|
||||
"owner": {
|
||||
"username": "phenax",
|
||||
"email": "phenax5@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"URL": "http://www.is-a.dev"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "404Dev-404",
|
||||
"email": "anthonyvaldes318+404@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "22a06372e0e8c1ce907acca87f8222"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Adolar0042",
|
||||
"email": "adolar0042@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "927a8ca97dbdccd9140313116bd068"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Sife-shuo",
|
||||
"email": "sifed@qq.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "35bbdb5b21b0f5706786ea4bc01002"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "TorchedSammy",
|
||||
"email": "torchedsammy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9693d9e721696f4184aa3abfa35921"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Verification for aakanksha.is-a.dev",
|
||||
"owner": {
|
||||
"username": "aakankshabhende",
|
||||
"email": "aakanksha0407@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "0e195a2a30854573db976207e5f2f2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Shinyzenith",
|
||||
"email": "aakashsensharma@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "6f217d98c6a92f084c092bab59d8b1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AldenizenMC",
|
||||
"email": "aldenizen09@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "3a73c3c550c151965f6781677b6d2d"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "amalpotra",
|
||||
"email": "amarjeetmalpotra@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "15c0eb5d4a85c75c4b205ac26a4d31"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "anamolsapkota",
|
||||
"email": "anamolsapkota@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "d89d65454e6f71641cc8e45a2ad8b2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "anandyeole",
|
||||
"email": "anandyeole@duck.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "510cbb66f4422990546436db3c897a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal portfolio website (domain verification)",
|
||||
"repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io",
|
||||
"owner": {
|
||||
"username": "ANANTH-SWAMY",
|
||||
"email": "ananth.nps@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "cb106acbe8da52273b1a5807fb1d9f"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Github verification",
|
||||
"owner": {
|
||||
"username": "anshtyagi0",
|
||||
"email": "tyagiansh175@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "7b628651b5ce7a58e0876e8ddbae98"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "armoredvortex",
|
||||
"email": "rachitpandey@protonmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "f333cd13b1edfcaa51d5413b7fd05f"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "auravoid",
|
||||
"email": "github@auravoid.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "a0182396037ba6edc7f689cf8847f9"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "avellea",
|
||||
"email": "is-a-dev@win11react.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "5c38dbee73e6936232992c0f98829e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "avipars",
|
||||
"email": "avi.pars@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "68e225e3d290a962de10935ed3f684"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "AXVIII3",
|
||||
"email": "anirbanrc2286@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "f99b7081b391b0e77e8b9bd80ea50e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal site for github@ayvacs (GH Pages verification)",
|
||||
"repo": "https://github.com/ayvacs/ayvacs.github.io",
|
||||
"owner": {
|
||||
"username": "ayvacs",
|
||||
"email": "ayvacs@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "5a1e6c3195a98bf63ceba5a88f4be2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "boredcodebyk",
|
||||
"email": "khromabyk+dev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "18eddbb722418d4b62eb8976f91621"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "caodoc",
|
||||
"email": "",
|
||||
"discord": "caodoc"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "c3aa36c2b7f2e2bf94a92b760760ca"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "charmingdisorder",
|
||||
"email": "null"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "8045a0394db9ecae4e8f4a76f5c17c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "chethanyadav456",
|
||||
"email": "rockchethan1111@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9781ed4422557bd427d0eff2c17b99"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Github verification",
|
||||
"owner": {
|
||||
"username": "compCoder007",
|
||||
"email": "competentcoder007@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "7e581a7ce40509036ecb310e92fd21"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "crystalbajgai",
|
||||
"email": "crystalbajgai@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "6fbb6593b607699c01a1c17c8c2849"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "danilofuchs",
|
||||
"email": "danilo_fuchs@hotmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "09bee48261a7e91718432a7b51baaa"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "dumprr",
|
||||
"email": "duhhhmprr@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "493971f29452bc15b55966259b43a5"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "dushmanta05",
|
||||
"email": "dushmanta.dev@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "259ff2c88b910f54c7a1ec2d0da405"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "dvandervlag",
|
||||
"email": "dvandervlag@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "e0c9a40b22c0a75c4043ff40e1b926"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Endermanbugzjfc",
|
||||
"email": "endermanbugzjfc@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "238acf06da9051a27631863f11abbf"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "fdciabdul",
|
||||
"email": "cp@imtaqin.id"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "b300a7cdb4c929b57cae7e0bf0ab69"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "flazepe",
|
||||
"email": "flazepe@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "68edc295b0936fb51d13af5cbbfc3b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "foxy4096",
|
||||
"email": "adityapriyadarshi669@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "eb006bea4f375b57b795dbfc8dd3fe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gautamkrishnar",
|
||||
"email": "rgautamkrishna@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "155ab7179ccadb58ed0627f0b45420"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "iakzs",
|
||||
"email": "iakzs@protonmail.com",
|
||||
"discord": "622795838032314388"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "e20d874e765da4afd4a221f6c8bce4"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "iakzs",
|
||||
"email": "iakzs@protonmail.com",
|
||||
"discord": "622795838032314388"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "cb7cd68eea57b70a1cd2814629c399"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Icky17",
|
||||
"email": "jairomoralesperez0@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "bdff1e7214b7ebd125f3b9e9e9f1cd"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "impratik7",
|
||||
"email": "malipratik09@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "31f203aa7f5e0f5c0d7e984a718bc7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "inkilu",
|
||||
"email": "gauthamgkm@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "d84cc8928b4a48588344fd7d279fd6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "iraviteja",
|
||||
"email": "iraviteja77@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "6bb854139d8be9a7f37ccb05319b75"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsvick",
|
||||
"email": "vivek_kasture@techjoomla.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "6cccc8b9552901f383cdc6a606b185"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "javascript-void0",
|
||||
"email": "",
|
||||
"discord": "Java#3865"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "ce7434d57dd03085f434bc76dbab2f"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Jesgran",
|
||||
"email": "calzdani20@libero.it"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "4ca188e02efff19513cd6f803a57e2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "joythejoystick1",
|
||||
"email": "midoayoub778@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "eb682c2a35bd6139b653df86f7d248"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "justtobbi",
|
||||
"email": "justtobbi@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "40c1c0481529b00233ccf00048c45c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"description": "AyanAmy's About Page - Verification",
|
||||
"repo": "https://github.com/jy1263/jy1263.github.io",
|
||||
"owner": {
|
||||
"username": "jy1263",
|
||||
"email": "",
|
||||
"twitter": "jy126orjy126"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "250303a2dde21ac34ad10792da01fa"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "LaBus3",
|
||||
"email": "madhav.v.1996@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "7362cb36811c9eefc5039e6e6da778"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "liancg@gmail.com"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "de487db710c1daf905269fb57775b6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Github Verification",
|
||||
"owner": {
|
||||
"username": "loiSvelasco",
|
||||
"email": "loisuperficialvelasco@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "e45f5cee8c9438fe563d3bf4b2fbbe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lrmn7",
|
||||
"email": "lrmnid@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9693d9e721696f4184aa3abfa35921"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "marcossatoshi",
|
||||
"email": "marcos.satoshi@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "f3045f0960ac5562a7d764b72d102a"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "MCotocel",
|
||||
"email": "mcotocel@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "059ac86f94300091a59d2cef8b09a6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "mr1cecream",
|
||||
"email": "guy@ochakov.com",
|
||||
"twitter": "Mr__Icecream"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "86fe9c2f7e2d0be6a7a1c16a1c8032"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NatBLida68",
|
||||
"email": "aswajith.jithu888@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "f20bb532af2838eed8bfe622378d4b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal portfolio for showing my projects, contacts and about me",
|
||||
"repo": "https://github.com/night0721/night0721.github.io",
|
||||
"owner": {
|
||||
"username": "night0721",
|
||||
"email": "nightkalyyy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "e87fbe224df0c16bf8e0796e229952"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "nobody5050",
|
||||
"email": "levibelland@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "0648c9309d9441b7f6b0dea3a78194"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "node0505",
|
||||
"email": "node0505@outlook.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "18bf4da227454aaee1c8e2ba62d466"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "not-a-ethan",
|
||||
"email": "",
|
||||
"discord": "not_ethan."
|
||||
},
|
||||
"record": {
|
||||
"TXT": "72fd44f779f6bd6ad363ff20bdeffb"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "notnotrachit",
|
||||
"email": "rachitkhurana40@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "934b26e127661bad98765dc4d571f2"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user