diff --git a/package-lock.json b/package-lock.json
index 29533a4..83de58a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -19,6 +19,7 @@
"@vitejs/plugin-vue": "^2.3.4",
"autoprefixer": "^10.4.14",
"daisyui": "^3.5.1",
+ "dotenv": "^16.3.1",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"vite": "^2.9.16"
@@ -534,6 +535,18 @@
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
"dev": true
},
+ "node_modules/dotenv": {
+ "version": "16.3.1",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz",
+ "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/motdotla/dotenv?sponsor=1"
+ }
+ },
"node_modules/electron-to-chromium": {
"version": "1.4.490",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz",
diff --git a/package.json b/package.json
index e30e6e5..c43a606 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,8 @@
"scripts": {
"dev": "vite --host",
"build": "vite build",
- "preview": "vite preview --host"
+ "preview": "vite preview --host",
+ "mocker": "node ./src/api/mocker.mjs"
},
"author": "Evren Ceyhan",
"license": "MIT",
@@ -27,6 +28,7 @@
"@vitejs/plugin-vue": "^2.3.4",
"autoprefixer": "^10.4.14",
"daisyui": "^3.5.1",
+ "dotenv": "^16.3.1",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"vite": "^2.9.16"
diff --git a/src/api/github.js b/src/api/github.js
index 16927af..be02d74 100644
--- a/src/api/github.js
+++ b/src/api/github.js
@@ -7,50 +7,68 @@ const API_URL = 'https://api.github.com';
const API_USER_ID = import.meta.env.VITE_USER_GITHUB;
const API_USER_URL = `${API_URL}/users/${API_USER_ID}`;
-// helpers
-const fetchFile = async (path) => fetchJson(new URL(path, import.meta.url));
+// RESOURCES ///////////////////////////////////////////////////////////////////////////////////////
-const normalizeRepoLanguages = (languages) => {
- // summarize total lines of languages in single repo
- const lineSum = Object.values(languages).reduce((sum, v) => sum + v, 0);
+export async function getProfile() {
+ return IS_DEV
+ ? await fetchFile('mocks/profile.json')
+ : await fetchJson(API_USER_URL);
+}
- return Object.entries(languages).map(([name, lines]) => ({
- name,
- lines,
- color: LANGUAGES[name]?.color,
- rate: (lines / lineSum) * 100,
- }));
-};
-
-export const getProfile = () =>
- IS_DEV ? fetchFile('profile.json') : fetchJson(API_USER_URL);
-
-export const getRepositories = async (query = { sort: 'updated' }) => {
+export async function getRepositories(query = { sort: 'updated' }) {
// purge cache if modified since last cached request
// purgeCacheIfModified(`${API_USER_URL}/repos`);
// fetch data or use mock in DEV
const repos = IS_DEV
- ? await fetchFile('repos.json')
+ ? await fetchFile('mocks/repos.json')
: await fetchJson(`${API_USER_URL}/repos`, query);
// fetch languages per repository
const reposWithLanguages = repos.map(async (repo) => {
- // define default language as fallback
- let languages = { [repo.language]: 1 };
+ let languages;
try {
- languages = IS_DEV
- ? repo.languages // use as-is in DEV
- : await fetchJson(repo.languages_url);
- } catch (e) {}
+ // try fetching languages per repository
+ languages = await getRepoLanguages(repo.name);
+ } catch (e) {
+ // use default language as fallback if failed
+ languages = normalizeRepoLanguages({ [repo.language]: 1 });
+ }
// normalize languages per repository
- return { ...repo, languages: normalizeRepoLanguages(languages) };
+ return { ...repo, languages };
});
// return all promises as one
return Promise.all(reposWithLanguages);
+}
+
+export async function getRepoLanguages(repo) {
+ const languages = IS_DEV
+ ? await fetchFile(`mocks/${repo}-languages.json`)
+ : await fetchJson(`${API_USER_URL}/${repo}/languages`);
+
+ return normalizeRepoLanguages(languages);
+}
+
+// HELPERS /////////////////////////////////////////////////////////////////////////////////////////
+
+const fetchFile = async (path) => {
+ const url = new URL(path, import.meta.url);
+ return (await fetch(url)).json();
+};
+
+const normalizeRepoLanguages = (languages) => {
+ // summarize total lines of languages in single repo
+ const lineSum = Object.values(languages).reduce((sum, v) => sum + v, 0);
+
+ return Object.entries(languages).map(([name, lines]) => ({
+ name,
+ lines,
+ color: LANGUAGES[name]?.color,
+ rate: ((lines / lineSum) * 100).toFixed(1),
+ }));
};
// export const purgeCacheIfModified = async (url) => {
diff --git a/src/api/mocker.mjs b/src/api/mocker.mjs
new file mode 100644
index 0000000..6620be4
--- /dev/null
+++ b/src/api/mocker.mjs
@@ -0,0 +1,62 @@
+/**
+ * This is a server side script to generate mock data, it's not part of the app,
+ * It's only used to generate mock data for the DEV environment!
+ */
+
+import fs from 'fs';
+import { fileURLToPath } from 'url';
+import { dirname } from 'path';
+import dotenv from 'dotenv';
+
+// load env vars
+dotenv.config();
+
+// __dirname is not available in ES6 modules
+// https://stackoverflow.com/questions/46745014/using-dirname-in-es6-modules
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+const MOCKS_DIR = __dirname + '/mocks';
+
+// define vars
+const API_URL = 'https://api.github.com';
+const API_USER_ID = process.env.VITE_USER_GITHUB;
+const API_USER_URL = `${API_URL}/users/${API_USER_ID}`;
+
+const readMockFile = (name) => {
+ const filename = `${MOCKS_DIR}/${name}.json`;
+ const jsonData = fs.readFileSync(filename);
+ return JSON.parse(jsonData);
+};
+
+const writeMockFile = (name, data) => {
+ const filename = `${MOCKS_DIR}/${name}.json`;
+ const jsonData = JSON.stringify(data, null, 2);
+ fs.writeFileSync(filename, jsonData);
+};
+
+const generateProfile = async () => {
+ const response = await fetch(API_USER_URL);
+ const data = await response.json();
+ writeMockFile('profile', data);
+};
+
+const generateRepos = async () => {
+ const response = await fetch(`${API_USER_URL}/repos?sort=updated`);
+ const data = await response.json();
+ writeMockFile('repos', data);
+};
+
+const generateLanguages = async () => {
+ const repos = readMockFile('repos');
+
+ repos.forEach(async ({ name, languages_url }) => {
+ const response = await fetch(languages_url);
+ const languages = await response.json();
+ writeMockFile(`${name}-languages`, languages);
+ });
+};
+
+// generate mock data
+await generateProfile();
+await generateRepos();
+await generateLanguages();
diff --git a/src/api/mocks/amazon-scraper-api-languages.json b/src/api/mocks/amazon-scraper-api-languages.json
new file mode 100644
index 0000000..52fd9c3
--- /dev/null
+++ b/src/api/mocks/amazon-scraper-api-languages.json
@@ -0,0 +1,3 @@
+{
+ "JavaScript": 3106
+}
\ No newline at end of file
diff --git a/src/api/mocks/blog-challenge-languages.json b/src/api/mocks/blog-challenge-languages.json
new file mode 100644
index 0000000..d3961d4
--- /dev/null
+++ b/src/api/mocks/blog-challenge-languages.json
@@ -0,0 +1,5 @@
+{
+ "PHP": 19143,
+ "HTML": 12378,
+ "Hack": 321
+}
\ No newline at end of file
diff --git a/src/api/mocks/bootstrap-breeze-languages.json b/src/api/mocks/bootstrap-breeze-languages.json
new file mode 100644
index 0000000..c8e8096
--- /dev/null
+++ b/src/api/mocks/bootstrap-breeze-languages.json
@@ -0,0 +1,7 @@
+{
+ "Vue": 47227,
+ "PHP": 4894,
+ "JavaScript": 855,
+ "Blade": 474,
+ "CSS": 118
+}
\ No newline at end of file
diff --git a/src/api/mocks/bs-bootcamp-web-languages.json b/src/api/mocks/bs-bootcamp-web-languages.json
new file mode 100644
index 0000000..4bfa5fc
--- /dev/null
+++ b/src/api/mocks/bs-bootcamp-web-languages.json
@@ -0,0 +1,4 @@
+{
+ "HTML": 32616,
+ "CSS": 177
+}
\ No newline at end of file
diff --git a/src/api/mocks/bs-splendid-food-languages.json b/src/api/mocks/bs-splendid-food-languages.json
new file mode 100644
index 0000000..0899c37
--- /dev/null
+++ b/src/api/mocks/bs-splendid-food-languages.json
@@ -0,0 +1,4 @@
+{
+ "HTML": 29547,
+ "SCSS": 14096
+}
\ No newline at end of file
diff --git a/src/api/mocks/devbox-lemp-languages.json b/src/api/mocks/devbox-lemp-languages.json
new file mode 100644
index 0000000..bb461d4
--- /dev/null
+++ b/src/api/mocks/devbox-lemp-languages.json
@@ -0,0 +1,4 @@
+{
+ "Shell": 10343,
+ "PHP": 16
+}
\ No newline at end of file
diff --git a/src/api/mocks/fixxo-app-languages.json b/src/api/mocks/fixxo-app-languages.json
new file mode 100644
index 0000000..cfef9df
--- /dev/null
+++ b/src/api/mocks/fixxo-app-languages.json
@@ -0,0 +1,8 @@
+{
+ "PHP": 237946,
+ "Vue": 194674,
+ "JavaScript": 12024,
+ "Blade": 700,
+ "CSS": 388,
+ "Procfile": 42
+}
\ No newline at end of file
diff --git a/src/api/mocks/gym-crm-languages.json b/src/api/mocks/gym-crm-languages.json
new file mode 100644
index 0000000..cc14f55
--- /dev/null
+++ b/src/api/mocks/gym-crm-languages.json
@@ -0,0 +1,4 @@
+{
+ "PHP": 79585,
+ "HTML": 2953
+}
\ No newline at end of file
diff --git a/src/api/mocks/laragym-languages.json b/src/api/mocks/laragym-languages.json
new file mode 100644
index 0000000..5a83e85
--- /dev/null
+++ b/src/api/mocks/laragym-languages.json
@@ -0,0 +1,7 @@
+{
+ "JavaScript": 230840,
+ "PHP": 209779,
+ "HTML": 5629,
+ "Dockerfile": 848,
+ "Shell": 322
+}
\ No newline at end of file
diff --git a/src/api/mocks/multiplay-ball-game-languages.json b/src/api/mocks/multiplay-ball-game-languages.json
new file mode 100644
index 0000000..5d61d34
--- /dev/null
+++ b/src/api/mocks/multiplay-ball-game-languages.json
@@ -0,0 +1,5 @@
+{
+ "TypeScript": 6559,
+ "HTML": 4580,
+ "JavaScript": 3134
+}
\ No newline at end of file
diff --git a/src/api/mocks/multiplay-snake-game-languages.json b/src/api/mocks/multiplay-snake-game-languages.json
new file mode 100644
index 0000000..2d5a8fc
--- /dev/null
+++ b/src/api/mocks/multiplay-snake-game-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 10103,
+ "Vue": 2523,
+ "HTML": 371
+}
\ No newline at end of file
diff --git a/src/api/mocks/networking-models-languages.json b/src/api/mocks/networking-models-languages.json
new file mode 100644
index 0000000..4281700
--- /dev/null
+++ b/src/api/mocks/networking-models-languages.json
@@ -0,0 +1,4 @@
+{
+ "JavaScript": 9357,
+ "Shell": 533
+}
\ No newline at end of file
diff --git a/src/api/mocks/next-cats-world-languages.json b/src/api/mocks/next-cats-world-languages.json
new file mode 100644
index 0000000..b11caa5
--- /dev/null
+++ b/src/api/mocks/next-cats-world-languages.json
@@ -0,0 +1,4 @@
+{
+ "JavaScript": 15574,
+ "CSS": 346
+}
\ No newline at end of file
diff --git a/src/api/mocks/next-meetups-languages.json b/src/api/mocks/next-meetups-languages.json
new file mode 100644
index 0000000..473322e
--- /dev/null
+++ b/src/api/mocks/next-meetups-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 19858,
+ "CSS": 390,
+ "Shell": 97
+}
\ No newline at end of file
diff --git a/src/api/mocks/next-real-estate-languages.json b/src/api/mocks/next-real-estate-languages.json
new file mode 100644
index 0000000..d5ff7f5
--- /dev/null
+++ b/src/api/mocks/next-real-estate-languages.json
@@ -0,0 +1,3 @@
+{
+ "JavaScript": 29655
+}
\ No newline at end of file
diff --git a/src/api/mocks/ng-comic-book-languages.json b/src/api/mocks/ng-comic-book-languages.json
new file mode 100644
index 0000000..5c6603f
--- /dev/null
+++ b/src/api/mocks/ng-comic-book-languages.json
@@ -0,0 +1,6 @@
+{
+ "TypeScript": 24408,
+ "HTML": 13172,
+ "JavaScript": 2238,
+ "CSS": 1330
+}
\ No newline at end of file
diff --git a/src/api/mocks/ng-heroes-app-languages.json b/src/api/mocks/ng-heroes-app-languages.json
new file mode 100644
index 0000000..3ec7b70
--- /dev/null
+++ b/src/api/mocks/ng-heroes-app-languages.json
@@ -0,0 +1,6 @@
+{
+ "TypeScript": 21436,
+ "HTML": 5580,
+ "JavaScript": 2232,
+ "CSS": 322
+}
\ No newline at end of file
diff --git a/src/api/mocks/ng-organic-shop-languages.json b/src/api/mocks/ng-organic-shop-languages.json
new file mode 100644
index 0000000..5ce4bba
--- /dev/null
+++ b/src/api/mocks/ng-organic-shop-languages.json
@@ -0,0 +1,6 @@
+{
+ "TypeScript": 50970,
+ "HTML": 22580,
+ "JavaScript": 1832,
+ "CSS": 760
+}
\ No newline at end of file
diff --git a/src/api/mocks/ng-weather-app-languages.json b/src/api/mocks/ng-weather-app-languages.json
new file mode 100644
index 0000000..7e1b109
--- /dev/null
+++ b/src/api/mocks/ng-weather-app-languages.json
@@ -0,0 +1,6 @@
+{
+ "HTML": 29042,
+ "TypeScript": 18705,
+ "JavaScript": 3802,
+ "CSS": 1096
+}
\ No newline at end of file
diff --git a/src/api/mocks/nuxt-resto-advisor-languages.json b/src/api/mocks/nuxt-resto-advisor-languages.json
new file mode 100644
index 0000000..2e01f73
--- /dev/null
+++ b/src/api/mocks/nuxt-resto-advisor-languages.json
@@ -0,0 +1,4 @@
+{
+ "Vue": 6028,
+ "TypeScript": 1412
+}
\ No newline at end of file
diff --git a/src/api/mocks/profile.json b/src/api/mocks/profile.json
new file mode 100644
index 0000000..19e16ee
--- /dev/null
+++ b/src/api/mocks/profile.json
@@ -0,0 +1,34 @@
+{
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false,
+ "name": "Evren Ceyhan",
+ "company": "CEYHAN I/O",
+ "blog": "http://ceyhan.io",
+ "location": "Brussels",
+ "email": null,
+ "hireable": true,
+ "bio": "Full Stack Web Developer",
+ "twitter_username": "webceyhan",
+ "public_repos": 40,
+ "public_gists": 0,
+ "followers": 4,
+ "following": 5,
+ "created_at": "2013-03-01T16:12:23Z",
+ "updated_at": "2023-08-08T08:24:14Z"
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-budget-tracker-languages.json b/src/api/mocks/react-budget-tracker-languages.json
new file mode 100644
index 0000000..3beddd5
--- /dev/null
+++ b/src/api/mocks/react-budget-tracker-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 22777,
+ "HTML": 1835,
+ "CSS": 200
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-goggle-languages.json b/src/api/mocks/react-goggle-languages.json
new file mode 100644
index 0000000..fe004ad
--- /dev/null
+++ b/src/api/mocks/react-goggle-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 30002,
+ "HTML": 1718,
+ "CSS": 59
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-meetups-languages.json b/src/api/mocks/react-meetups-languages.json
new file mode 100644
index 0000000..4dae542
--- /dev/null
+++ b/src/api/mocks/react-meetups-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 14466,
+ "HTML": 403,
+ "CSS": 374
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-movie-land-languages.json b/src/api/mocks/react-movie-land-languages.json
new file mode 100644
index 0000000..ce2e175
--- /dev/null
+++ b/src/api/mocks/react-movie-land-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 3920,
+ "HTML": 1748,
+ "CSS": 760
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-threads-app-languages.json b/src/api/mocks/react-threads-app-languages.json
new file mode 100644
index 0000000..7b43ffc
--- /dev/null
+++ b/src/api/mocks/react-threads-app-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 19975,
+ "CSS": 3166,
+ "HTML": 361
+}
\ No newline at end of file
diff --git a/src/api/mocks/react-tourism-app-languages.json b/src/api/mocks/react-tourism-app-languages.json
new file mode 100644
index 0000000..436e3de
--- /dev/null
+++ b/src/api/mocks/react-tourism-app-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 20975,
+ "HTML": 574,
+ "CSS": 106
+}
\ No newline at end of file
diff --git a/src/api/mocks/readme-template-languages.json b/src/api/mocks/readme-template-languages.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/src/api/mocks/readme-template-languages.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/src/api/mocks/recipe-book-languages.json b/src/api/mocks/recipe-book-languages.json
new file mode 100644
index 0000000..0e0b5ed
--- /dev/null
+++ b/src/api/mocks/recipe-book-languages.json
@@ -0,0 +1,7 @@
+{
+ "PHP": 99535,
+ "JavaScript": 1987,
+ "Vue": 1633,
+ "Blade": 700,
+ "CSS": 59
+}
\ No newline at end of file
diff --git a/src/api/mocks/repos.json b/src/api/mocks/repos.json
new file mode 100644
index 0000000..b5cef0e
--- /dev/null
+++ b/src/api/mocks/repos.json
@@ -0,0 +1,3458 @@
+[
+ {
+ "id": 92673588,
+ "node_id": "MDEwOlJlcG9zaXRvcnk5MjY3MzU4OA==",
+ "name": "webceyhan.github.io",
+ "full_name": "webceyhan/webceyhan.github.io",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/webceyhan.github.io",
+ "description": "CEYHAN I/O Landing Page",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/webceyhan.github.io",
+ "forks_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/deployments",
+ "created_at": "2017-05-28T16:38:39Z",
+ "updated_at": "2023-08-14T17:09:29Z",
+ "pushed_at": "2023-08-14T20:28:54Z",
+ "git_url": "git://github.com/webceyhan/webceyhan.github.io.git",
+ "ssh_url": "git@github.com:webceyhan/webceyhan.github.io.git",
+ "clone_url": "https://github.com/webceyhan/webceyhan.github.io.git",
+ "svn_url": "https://github.com/webceyhan/webceyhan.github.io",
+ "homepage": "http://www.ceyhan.io",
+ "size": 19217,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "Vue",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap-icons",
+ "css",
+ "daisyui",
+ "github-actions",
+ "github-api",
+ "github-pages",
+ "html",
+ "javascript",
+ "nodejs",
+ "rest",
+ "tailwindcss",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 0,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 675579375,
+ "node_id": "R_kgDOKESF7w",
+ "name": "recipe-book",
+ "full_name": "webceyhan/recipe-book",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/recipe-book",
+ "description": "Demonstration of peer programming for Content & Coffee job interview",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/recipe-book",
+ "forks_url": "https://api.github.com/repos/webceyhan/recipe-book/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/recipe-book/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/recipe-book/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/recipe-book/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/recipe-book/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/recipe-book/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/recipe-book/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/recipe-book/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/recipe-book/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/recipe-book/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/recipe-book/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/recipe-book/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/recipe-book/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/recipe-book/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/recipe-book/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/recipe-book/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/recipe-book/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/recipe-book/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/recipe-book/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/recipe-book/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/recipe-book/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/recipe-book/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/recipe-book/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/recipe-book/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/recipe-book/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/recipe-book/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/recipe-book/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/recipe-book/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/recipe-book/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/recipe-book/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/recipe-book/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/recipe-book/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/recipe-book/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/recipe-book/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/recipe-book/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/recipe-book/deployments",
+ "created_at": "2023-08-07T08:47:28Z",
+ "updated_at": "2023-08-07T08:47:34Z",
+ "pushed_at": "2023-08-11T08:20:59Z",
+ "git_url": "git://github.com/webceyhan/recipe-book.git",
+ "ssh_url": "git@github.com:webceyhan/recipe-book.git",
+ "clone_url": "https://github.com/webceyhan/recipe-book.git",
+ "svn_url": "https://github.com/webceyhan/recipe-book",
+ "homepage": null,
+ "size": 184,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "PHP",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": null,
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "mysql",
+ "php",
+ "laravel",
+ "vue",
+ "inertiajs",
+ "tailwindcss",
+ "daisyui"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 0,
+ "watchers": 0,
+ "default_branch": "main"
+ },
+ {
+ "id": 665996718,
+ "node_id": "R_kgDOJ7JNrg",
+ "name": "react-threads-app",
+ "full_name": "webceyhan/react-threads-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/react-threads-app",
+ "description": "Meta Threads Clone + React + JsonServer",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/react-threads-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/react-threads-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/react-threads-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/react-threads-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/react-threads-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/react-threads-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/react-threads-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/react-threads-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/react-threads-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/react-threads-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/react-threads-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/react-threads-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/react-threads-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/react-threads-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/react-threads-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/react-threads-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/react-threads-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/react-threads-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/react-threads-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/react-threads-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/react-threads-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/react-threads-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/react-threads-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/react-threads-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/react-threads-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/react-threads-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/react-threads-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/react-threads-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/react-threads-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/react-threads-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/react-threads-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/react-threads-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/react-threads-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/react-threads-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/react-threads-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/react-threads-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/react-threads-app/deployments",
+ "created_at": "2023-07-13T13:18:10Z",
+ "updated_at": "2023-07-13T13:19:48Z",
+ "pushed_at": "2023-08-14T18:30:00Z",
+ "git_url": "git://github.com/webceyhan/react-threads-app.git",
+ "ssh_url": "git@github.com:webceyhan/react-threads-app.git",
+ "clone_url": "https://github.com/webceyhan/react-threads-app.git",
+ "svn_url": "https://github.com/webceyhan/react-threads-app",
+ "homepage": null,
+ "size": 365,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 5,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "javascript",
+ "react",
+ "json-server",
+ "tailwindcss"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 5,
+ "watchers": 0,
+ "default_branch": "main"
+ },
+ {
+ "id": 486904070,
+ "node_id": "R_kgDOHQWRBg",
+ "name": "react-goggle",
+ "full_name": "webceyhan/react-goggle",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/react-goggle",
+ "description": "Google Search Clone + React + TailwindCSS",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/react-goggle",
+ "forks_url": "https://api.github.com/repos/webceyhan/react-goggle/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/react-goggle/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/react-goggle/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/react-goggle/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/react-goggle/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/react-goggle/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/react-goggle/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/react-goggle/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/react-goggle/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/react-goggle/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/react-goggle/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/react-goggle/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/react-goggle/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/react-goggle/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/react-goggle/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/react-goggle/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/react-goggle/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/react-goggle/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/react-goggle/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/react-goggle/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/react-goggle/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/react-goggle/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/react-goggle/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/react-goggle/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/react-goggle/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/react-goggle/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/react-goggle/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/react-goggle/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/react-goggle/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/react-goggle/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/react-goggle/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/react-goggle/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/react-goggle/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/react-goggle/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/react-goggle/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/react-goggle/deployments",
+ "created_at": "2022-04-29T08:57:47Z",
+ "updated_at": "2023-06-22T20:19:04Z",
+ "pushed_at": "2023-03-08T08:02:17Z",
+ "git_url": "git://github.com/webceyhan/react-goggle.git",
+ "ssh_url": "git@github.com:webceyhan/react-goggle.git",
+ "clone_url": "https://github.com/webceyhan/react-goggle.git",
+ "svn_url": "https://github.com/webceyhan/react-goggle",
+ "homepage": "https://webceyhan-react-goggle.netlify.app",
+ "size": 3114,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 11,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "css",
+ "github-actions",
+ "google",
+ "html",
+ "javascript",
+ "netlify",
+ "nodejs",
+ "rapidapi",
+ "react",
+ "rest",
+ "search",
+ "tailwindcss"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 11,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 455620411,
+ "node_id": "R_kgDOGyg3Ow",
+ "name": "readme-template",
+ "full_name": "webceyhan/readme-template",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/readme-template",
+ "description": "ReadMe Template",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/readme-template",
+ "forks_url": "https://api.github.com/repos/webceyhan/readme-template/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/readme-template/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/readme-template/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/readme-template/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/readme-template/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/readme-template/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/readme-template/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/readme-template/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/readme-template/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/readme-template/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/readme-template/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/readme-template/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/readme-template/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/readme-template/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/readme-template/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/readme-template/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/readme-template/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/readme-template/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/readme-template/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/readme-template/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/readme-template/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/readme-template/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/readme-template/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/readme-template/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/readme-template/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/readme-template/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/readme-template/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/readme-template/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/readme-template/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/readme-template/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/readme-template/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/readme-template/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/readme-template/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/readme-template/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/readme-template/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/readme-template/deployments",
+ "created_at": "2022-02-04T16:35:35Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2022-02-05T12:34:00Z",
+ "git_url": "git://github.com/webceyhan/readme-template.git",
+ "ssh_url": "git@github.com:webceyhan/readme-template.git",
+ "clone_url": "https://github.com/webceyhan/readme-template.git",
+ "svn_url": "https://github.com/webceyhan/readme-template",
+ "homepage": null,
+ "size": 13,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": null,
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 1,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [],
+ "visibility": "public",
+ "forks": 1,
+ "open_issues": 0,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 460482756,
+ "node_id": "R_kgDOG3JoxA",
+ "name": "vite-bmi-app",
+ "full_name": "webceyhan/vite-bmi-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-bmi-app",
+ "description": "Vite BMI/BMR Calculator",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-bmi-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-bmi-app/deployments",
+ "created_at": "2022-02-17T15:00:45Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-02-02T15:05:48Z",
+ "git_url": "git://github.com/webceyhan/vite-bmi-app.git",
+ "ssh_url": "git@github.com:webceyhan/vite-bmi-app.git",
+ "clone_url": "https://github.com/webceyhan/vite-bmi-app.git",
+ "svn_url": "https://github.com/webceyhan/vite-bmi-app",
+ "homepage": "https://webceyhan.github.io/vite-bmi-app",
+ "size": 110,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "Vue",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 4,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "github-actions",
+ "github-pages",
+ "html",
+ "javascript",
+ "nodejs",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 4,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 483562295,
+ "node_id": "R_kgDOHNKTNw",
+ "name": "vite-chain",
+ "full_name": "webceyhan/vite-chain",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-chain",
+ "description": "ViteChain - Blockchain Demo",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-chain",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-chain/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-chain/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-chain/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-chain/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-chain/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-chain/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-chain/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-chain/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-chain/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-chain/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-chain/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-chain/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-chain/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-chain/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-chain/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-chain/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-chain/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-chain/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-chain/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-chain/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-chain/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-chain/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-chain/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-chain/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-chain/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-chain/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-chain/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-chain/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-chain/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-chain/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-chain/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-chain/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-chain/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-chain/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-chain/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-chain/deployments",
+ "created_at": "2022-04-20T08:03:47Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-06T16:08:13Z",
+ "git_url": "git://github.com/webceyhan/vite-chain.git",
+ "ssh_url": "git@github.com:webceyhan/vite-chain.git",
+ "clone_url": "https://github.com/webceyhan/vite-chain.git",
+ "svn_url": "https://github.com/webceyhan/vite-chain",
+ "homepage": "https://webceyhan-vite-chain.herokuapp.com",
+ "size": 853,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 6,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bitcoin",
+ "blockchain",
+ "cryptocurrency",
+ "cryptography",
+ "css",
+ "express",
+ "html",
+ "javascript",
+ "nodejs",
+ "p2p",
+ "proof-of-work",
+ "rest-api",
+ "sse",
+ "typescript",
+ "vite",
+ "vue",
+ "web3",
+ "websockets"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 6,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 456700912,
+ "node_id": "R_kgDOGziz8A",
+ "name": "multiplay-ball-game",
+ "full_name": "webceyhan/multiplay-ball-game",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/multiplay-ball-game",
+ "description": "Multiplay Ball Game using Express + Websockets",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/multiplay-ball-game",
+ "forks_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/multiplay-ball-game/deployments",
+ "created_at": "2022-02-07T22:36:00Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-07T06:48:48Z",
+ "git_url": "git://github.com/webceyhan/multiplay-ball-game.git",
+ "ssh_url": "git@github.com:webceyhan/multiplay-ball-game.git",
+ "clone_url": "https://github.com/webceyhan/multiplay-ball-game.git",
+ "svn_url": "https://github.com/webceyhan/multiplay-ball-game",
+ "homepage": "https://webceyhan-multiplay-ball-game.herokuapp.com/",
+ "size": 332,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 7,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "express",
+ "github-actions",
+ "heroku",
+ "html",
+ "javascript",
+ "nodejs",
+ "typescript",
+ "vue",
+ "websocket"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 7,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 452275370,
+ "node_id": "R_kgDOGvUsqg",
+ "name": "vite-rps-game",
+ "full_name": "webceyhan/vite-rps-game",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-rps-game",
+ "description": "Vite Rock-Paper-Scissors Game",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-rps-game",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-rps-game/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-rps-game/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-rps-game/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-rps-game/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-rps-game/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-rps-game/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-rps-game/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-rps-game/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-rps-game/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-rps-game/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-rps-game/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-rps-game/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-rps-game/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-rps-game/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-rps-game/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-rps-game/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-rps-game/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-rps-game/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-rps-game/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-rps-game/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-rps-game/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-rps-game/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-rps-game/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-rps-game/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-rps-game/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-rps-game/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-rps-game/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-rps-game/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-rps-game/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-rps-game/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-rps-game/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-rps-game/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-rps-game/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-rps-game/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-rps-game/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-rps-game/deployments",
+ "created_at": "2022-01-26T12:56:17Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-02-27T23:03:09Z",
+ "git_url": "git://github.com/webceyhan/vite-rps-game.git",
+ "ssh_url": "git@github.com:webceyhan/vite-rps-game.git",
+ "clone_url": "https://github.com/webceyhan/vite-rps-game.git",
+ "svn_url": "https://github.com/webceyhan/vite-rps-game",
+ "homepage": "https://webceyhan.github.io/vite-rps-game",
+ "size": 3058,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 5,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "game",
+ "github-actions",
+ "github-pages",
+ "html",
+ "javascript",
+ "nodejs",
+ "typescript",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 5,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 469928789,
+ "node_id": "R_kgDOHAKLVQ",
+ "name": "vite-finance-portfolio",
+ "full_name": "webceyhan/vite-finance-portfolio",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-finance-portfolio",
+ "description": "Finance Portfolio + Vite + Vue + Bootstrap + Firebase",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-finance-portfolio/deployments",
+ "created_at": "2022-03-14T22:47:17Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-03T00:01:34Z",
+ "git_url": "git://github.com/webceyhan/vite-finance-portfolio.git",
+ "ssh_url": "git@github.com:webceyhan/vite-finance-portfolio.git",
+ "clone_url": "https://github.com/webceyhan/vite-finance-portfolio.git",
+ "svn_url": "https://github.com/webceyhan/vite-finance-portfolio",
+ "homepage": "https://vite-finance-portfolio.web.app",
+ "size": 191,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "Vue",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 7,
+ "license": null,
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "authentication",
+ "bootstrap",
+ "css",
+ "firebase",
+ "firebase-auth",
+ "firebase-hosting",
+ "firestore",
+ "frontend",
+ "github-actions",
+ "html",
+ "javascript",
+ "nodejs",
+ "rest",
+ "typescript",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 7,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 457834318,
+ "node_id": "R_kgDOG0n_Tg",
+ "name": "vite-crypto-ticker-app",
+ "full_name": "webceyhan/vite-crypto-ticker-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-crypto-ticker-app",
+ "description": "Vite Crypto Ticker App with SSE",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-crypto-ticker-app/deployments",
+ "created_at": "2022-02-10T15:22:42Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-07T07:41:36Z",
+ "git_url": "git://github.com/webceyhan/vite-crypto-ticker-app.git",
+ "ssh_url": "git@github.com:webceyhan/vite-crypto-ticker-app.git",
+ "clone_url": "https://github.com/webceyhan/vite-crypto-ticker-app.git",
+ "svn_url": "https://github.com/webceyhan/vite-crypto-ticker-app",
+ "homepage": "https://webceyhan-vite-crypto-ticker.herokuapp.com/",
+ "size": 434,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 8,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "coincap-api",
+ "css",
+ "express",
+ "github-actions",
+ "heroku",
+ "html",
+ "javascript",
+ "nodejs",
+ "sse",
+ "vite",
+ "vue",
+ "websocket"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 8,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 486116451,
+ "node_id": "R_kgDOHPmMYw",
+ "name": "react-movie-land",
+ "full_name": "webceyhan/react-movie-land",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/react-movie-land",
+ "description": "MovieLand App + React + Bootstrap",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/react-movie-land",
+ "forks_url": "https://api.github.com/repos/webceyhan/react-movie-land/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/react-movie-land/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/react-movie-land/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/react-movie-land/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/react-movie-land/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/react-movie-land/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/react-movie-land/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/react-movie-land/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/react-movie-land/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/react-movie-land/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/react-movie-land/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/react-movie-land/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/react-movie-land/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/react-movie-land/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/react-movie-land/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/react-movie-land/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/react-movie-land/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/react-movie-land/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/react-movie-land/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/react-movie-land/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/react-movie-land/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/react-movie-land/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/react-movie-land/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/react-movie-land/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/react-movie-land/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/react-movie-land/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/react-movie-land/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/react-movie-land/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/react-movie-land/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/react-movie-land/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/react-movie-land/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/react-movie-land/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/react-movie-land/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/react-movie-land/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/react-movie-land/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/react-movie-land/deployments",
+ "created_at": "2022-04-27T08:52:58Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-02T22:38:00Z",
+ "git_url": "git://github.com/webceyhan/react-movie-land.git",
+ "ssh_url": "git@github.com:webceyhan/react-movie-land.git",
+ "clone_url": "https://github.com/webceyhan/react-movie-land.git",
+ "svn_url": "https://github.com/webceyhan/react-movie-land",
+ "homepage": "https://webceyhan.github.io/react-movie-land",
+ "size": 2702,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 11,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "html",
+ "javascript",
+ "nodejs",
+ "omdb-api",
+ "react"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 11,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 457799235,
+ "node_id": "R_kgDOG0l2Qw",
+ "name": "networking-models",
+ "full_name": "webceyhan/networking-models",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/networking-models",
+ "description": "Computer Networking Models",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/networking-models",
+ "forks_url": "https://api.github.com/repos/webceyhan/networking-models/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/networking-models/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/networking-models/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/networking-models/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/networking-models/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/networking-models/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/networking-models/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/networking-models/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/networking-models/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/networking-models/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/networking-models/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/networking-models/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/networking-models/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/networking-models/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/networking-models/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/networking-models/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/networking-models/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/networking-models/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/networking-models/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/networking-models/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/networking-models/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/networking-models/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/networking-models/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/networking-models/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/networking-models/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/networking-models/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/networking-models/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/networking-models/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/networking-models/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/networking-models/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/networking-models/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/networking-models/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/networking-models/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/networking-models/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/networking-models/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/networking-models/deployments",
+ "created_at": "2022-02-10T13:50:05Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-03T19:02:29Z",
+ "git_url": "git://github.com/webceyhan/networking-models.git",
+ "ssh_url": "git@github.com:webceyhan/networking-models.git",
+ "clone_url": "https://github.com/webceyhan/networking-models.git",
+ "svn_url": "https://github.com/webceyhan/networking-models",
+ "homepage": "",
+ "size": 124,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 8,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bidirectional",
+ "http",
+ "http2",
+ "https",
+ "javascript",
+ "long-polling",
+ "nodejs",
+ "sse",
+ "unidirectional",
+ "websocket"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 8,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 457072497,
+ "node_id": "R_kgDOGz5fcQ",
+ "name": "multiplay-snake-game",
+ "full_name": "webceyhan/multiplay-snake-game",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/multiplay-snake-game",
+ "description": "Multiplay Snake Game using Vite + Vue + Websockets",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/multiplay-snake-game",
+ "forks_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/multiplay-snake-game/deployments",
+ "created_at": "2022-02-08T19:22:01Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-03-07T07:17:32Z",
+ "git_url": "git://github.com/webceyhan/multiplay-snake-game.git",
+ "ssh_url": "git@github.com:webceyhan/multiplay-snake-game.git",
+ "clone_url": "https://github.com/webceyhan/multiplay-snake-game.git",
+ "svn_url": "https://github.com/webceyhan/multiplay-snake-game",
+ "homepage": "https://webceyhan-multiplay-snake-game.herokuapp.com/",
+ "size": 445,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 8,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "express",
+ "game",
+ "html",
+ "javascript",
+ "nodejs",
+ "vite",
+ "vue",
+ "websocket"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 8,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 453815424,
+ "node_id": "R_kgDOGwysgA",
+ "name": "vite-chat-app",
+ "full_name": "webceyhan/vite-chat-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-chat-app",
+ "description": "Vite Chat Application",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-chat-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-chat-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-chat-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-chat-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-chat-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-chat-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-chat-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-chat-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-chat-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-chat-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-chat-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-chat-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-chat-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-chat-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-chat-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-chat-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-chat-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-chat-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-chat-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-chat-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-chat-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-chat-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-chat-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-chat-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-chat-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-chat-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-chat-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-chat-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-chat-app/deployments",
+ "created_at": "2022-01-30T22:13:49Z",
+ "updated_at": "2023-06-22T20:19:03Z",
+ "pushed_at": "2023-02-12T00:13:14Z",
+ "git_url": "git://github.com/webceyhan/vite-chat-app.git",
+ "ssh_url": "git@github.com:webceyhan/vite-chat-app.git",
+ "clone_url": "https://github.com/webceyhan/vite-chat-app.git",
+ "svn_url": "https://github.com/webceyhan/vite-chat-app",
+ "homepage": "https://webceyhan-chat-app.herokuapp.com/",
+ "size": 501,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 7,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "express",
+ "heroku",
+ "html",
+ "javascript",
+ "nodejs",
+ "vite",
+ "vue",
+ "websocket"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 7,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 450259481,
+ "node_id": "R_kgDOGtZqGQ",
+ "name": "ng-weather-app",
+ "full_name": "webceyhan/ng-weather-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/ng-weather-app",
+ "description": "Weather application built with Angular + Express + GeoCities API + OpenWeatherMap API",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/ng-weather-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/ng-weather-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/ng-weather-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/ng-weather-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/ng-weather-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/ng-weather-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/ng-weather-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/ng-weather-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/ng-weather-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/ng-weather-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/ng-weather-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/ng-weather-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/ng-weather-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/ng-weather-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/ng-weather-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/ng-weather-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/ng-weather-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/ng-weather-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/ng-weather-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/ng-weather-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/ng-weather-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/ng-weather-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/ng-weather-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/ng-weather-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/ng-weather-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/ng-weather-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/ng-weather-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/ng-weather-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/ng-weather-app/deployments",
+ "created_at": "2022-01-20T21:12:46Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T03:27:47Z",
+ "git_url": "git://github.com/webceyhan/ng-weather-app.git",
+ "ssh_url": "git@github.com:webceyhan/ng-weather-app.git",
+ "clone_url": "https://github.com/webceyhan/ng-weather-app.git",
+ "svn_url": "https://github.com/webceyhan/ng-weather-app",
+ "homepage": "https://webceyhan-ng-weather-app.herokuapp.com",
+ "size": 4871,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "HTML",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 20,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "angular",
+ "bootstrap",
+ "css",
+ "express",
+ "github-actions",
+ "heroku",
+ "html",
+ "javascript",
+ "nodejs",
+ "rest",
+ "typescript"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 20,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 448089506,
+ "node_id": "R_kgDOGrVNog",
+ "name": "bs-bootcamp-web",
+ "full_name": "webceyhan/bs-bootcamp-web",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/bs-bootcamp-web",
+ "description": "Frontend Bootcamp Website with Bootstrap",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web",
+ "forks_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-web/deployments",
+ "created_at": "2022-01-14T19:49:07Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2022-02-07T14:14:18Z",
+ "git_url": "git://github.com/webceyhan/bs-bootcamp-web.git",
+ "ssh_url": "git@github.com:webceyhan/bs-bootcamp-web.git",
+ "clone_url": "https://github.com/webceyhan/bs-bootcamp-web.git",
+ "svn_url": "https://github.com/webceyhan/bs-bootcamp-web",
+ "homepage": "https://webceyhan.github.io/bs-bootcamp-web",
+ "size": 52,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "HTML",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "html",
+ "javascript",
+ "mapbox"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 0,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 449339128,
+ "node_id": "R_kgDOGshe-A",
+ "name": "amazon-scraper-api",
+ "full_name": "webceyhan/amazon-scraper-api",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/amazon-scraper-api",
+ "description": "Sample E-commerce API from Amazon with Express + ScraperAPI",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/amazon-scraper-api",
+ "forks_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/deployments",
+ "created_at": "2022-01-18T15:26:32Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T03:02:07Z",
+ "git_url": "git://github.com/webceyhan/amazon-scraper-api.git",
+ "ssh_url": "git@github.com:webceyhan/amazon-scraper-api.git",
+ "clone_url": "https://github.com/webceyhan/amazon-scraper-api.git",
+ "svn_url": "https://github.com/webceyhan/amazon-scraper-api",
+ "homepage": "https://webceyhan-amazon-scraper-api.herokuapp.com",
+ "size": 321,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 10,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "api",
+ "expressjs",
+ "github-actions",
+ "heroku",
+ "javascript",
+ "nodejs",
+ "rapidapi",
+ "rest",
+ "scraperapi"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 10,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 450597864,
+ "node_id": "R_kgDOGtuT6A",
+ "name": "ts-boilerplate",
+ "full_name": "webceyhan/ts-boilerplate",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/ts-boilerplate",
+ "description": "Typescript Boilerplate template",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/ts-boilerplate",
+ "forks_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/deployments",
+ "created_at": "2022-01-21T18:23:13Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T04:01:34Z",
+ "git_url": "git://github.com/webceyhan/ts-boilerplate.git",
+ "ssh_url": "git@github.com:webceyhan/ts-boilerplate.git",
+ "clone_url": "https://github.com/webceyhan/ts-boilerplate.git",
+ "svn_url": "https://github.com/webceyhan/ts-boilerplate",
+ "homepage": "",
+ "size": 560,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 8,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "boilerplate",
+ "eslint",
+ "github-actions",
+ "javascript",
+ "jest",
+ "nodejs",
+ "typescript"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 8,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 450461948,
+ "node_id": "R_kgDOGtmA_A",
+ "name": "ng-heroes-app",
+ "full_name": "webceyhan/ng-heroes-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/ng-heroes-app",
+ "description": "Angular Tour of Heroes Application",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/ng-heroes-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/ng-heroes-app/deployments",
+ "created_at": "2022-01-21T11:16:16Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T03:33:18Z",
+ "git_url": "git://github.com/webceyhan/ng-heroes-app.git",
+ "ssh_url": "git@github.com:webceyhan/ng-heroes-app.git",
+ "clone_url": "https://github.com/webceyhan/ng-heroes-app.git",
+ "svn_url": "https://github.com/webceyhan/ng-heroes-app",
+ "homepage": "https://webceyhan-ng-heroes-app.herokuapp.com",
+ "size": 4239,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 21,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "angular",
+ "bootstrap",
+ "css",
+ "github-actions",
+ "heroku",
+ "html",
+ "javascript",
+ "nodejs",
+ "rest",
+ "typescript"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 21,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 270766570,
+ "node_id": "MDEwOlJlcG9zaXRvcnkyNzA3NjY1NzA=",
+ "name": "ng-comic-book",
+ "full_name": "webceyhan/ng-comic-book",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/ng-comic-book",
+ "description": "DC version of \"Tour-of-Heroes\" built with Angular + Firestore database",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/ng-comic-book",
+ "forks_url": "https://api.github.com/repos/webceyhan/ng-comic-book/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/ng-comic-book/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/ng-comic-book/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/ng-comic-book/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/ng-comic-book/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/ng-comic-book/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/ng-comic-book/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/ng-comic-book/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/ng-comic-book/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/ng-comic-book/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/ng-comic-book/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/ng-comic-book/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/ng-comic-book/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/ng-comic-book/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/ng-comic-book/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/ng-comic-book/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/ng-comic-book/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/ng-comic-book/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/ng-comic-book/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/ng-comic-book/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/ng-comic-book/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/ng-comic-book/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/ng-comic-book/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-comic-book/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/ng-comic-book/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/ng-comic-book/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/ng-comic-book/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/ng-comic-book/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/ng-comic-book/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/ng-comic-book/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/ng-comic-book/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/ng-comic-book/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/ng-comic-book/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/ng-comic-book/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/ng-comic-book/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/ng-comic-book/deployments",
+ "created_at": "2020-06-08T17:46:41Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T06:27:29Z",
+ "git_url": "git://github.com/webceyhan/ng-comic-book.git",
+ "ssh_url": "git@github.com:webceyhan/ng-comic-book.git",
+ "clone_url": "https://github.com/webceyhan/ng-comic-book.git",
+ "svn_url": "https://github.com/webceyhan/ng-comic-book",
+ "homepage": "https://comic-book-95862.web.app",
+ "size": 1948,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 21,
+ "license": null,
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "angular",
+ "bootstrap",
+ "css",
+ "firebase",
+ "firestore",
+ "frontend",
+ "github-actions",
+ "html",
+ "javascript",
+ "nodejs",
+ "nosql",
+ "rxjs",
+ "typescript"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 21,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 267419590,
+ "node_id": "MDEwOlJlcG9zaXRvcnkyNjc0MTk1OTA=",
+ "name": "ng-organic-shop",
+ "full_name": "webceyhan/ng-organic-shop",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/ng-organic-shop",
+ "description": "Course project built with Angular + Firebase authentication + realtime database",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/ng-organic-shop",
+ "forks_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/ng-organic-shop/deployments",
+ "created_at": "2020-05-27T20:27:48Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-06T09:22:39Z",
+ "git_url": "git://github.com/webceyhan/ng-organic-shop.git",
+ "ssh_url": "git@github.com:webceyhan/ng-organic-shop.git",
+ "clone_url": "https://github.com/webceyhan/ng-organic-shop.git",
+ "svn_url": "https://github.com/webceyhan/ng-organic-shop",
+ "homepage": "https://organic-shop-92b11.web.app",
+ "size": 1103,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 5,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "angular",
+ "authentication",
+ "bootstrap",
+ "css",
+ "firebase",
+ "frontend",
+ "github-actions",
+ "html",
+ "javascript",
+ "nosql",
+ "realtime-database",
+ "rest",
+ "rxjs",
+ "typescript"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 5,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 446071781,
+ "node_id": "R_kgDOGpaD5Q",
+ "name": "bs-splendid-food",
+ "full_name": "webceyhan/bs-splendid-food",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/bs-splendid-food",
+ "description": "Splendid Food Website with Bootstrap",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/bs-splendid-food",
+ "forks_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/deployments",
+ "created_at": "2022-01-09T11:42:28Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-06T04:05:03Z",
+ "git_url": "git://github.com/webceyhan/bs-splendid-food.git",
+ "ssh_url": "git@github.com:webceyhan/bs-splendid-food.git",
+ "clone_url": "https://github.com/webceyhan/bs-splendid-food.git",
+ "svn_url": "https://github.com/webceyhan/bs-splendid-food",
+ "homepage": "https://webceyhan.github.io/bs-splendid-food",
+ "size": 578,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "HTML",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 8,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "html",
+ "javascript",
+ "nodejs",
+ "sass"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 8,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 447553022,
+ "node_id": "R_kgDOGq0d_g",
+ "name": "vue-splendid-food",
+ "full_name": "webceyhan/vue-splendid-food",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vue-splendid-food",
+ "description": "Vue Splendid Food Application",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vue-splendid-food",
+ "forks_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/deployments",
+ "created_at": "2022-01-13T10:16:21Z",
+ "updated_at": "2023-06-22T20:19:02Z",
+ "pushed_at": "2023-03-07T02:12:23Z",
+ "git_url": "git://github.com/webceyhan/vue-splendid-food.git",
+ "ssh_url": "git@github.com:webceyhan/vue-splendid-food.git",
+ "clone_url": "https://github.com/webceyhan/vue-splendid-food.git",
+ "svn_url": "https://github.com/webceyhan/vue-splendid-food",
+ "homepage": "https://vue-splendid-food.web.app/",
+ "size": 3096,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "SCSS",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 17,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "firebase",
+ "github-actions",
+ "html",
+ "javascript",
+ "nodejs",
+ "sass",
+ "vue",
+ "vuex"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 17,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 655909123,
+ "node_id": "R_kgDOJxhhAw",
+ "name": "blog-challenge",
+ "full_name": "webceyhan/blog-challenge",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/blog-challenge",
+ "description": "php coding challenge project to build a blog without any framework",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/blog-challenge",
+ "forks_url": "https://api.github.com/repos/webceyhan/blog-challenge/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/blog-challenge/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/blog-challenge/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/blog-challenge/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/blog-challenge/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/blog-challenge/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/blog-challenge/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/blog-challenge/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/blog-challenge/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/blog-challenge/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/blog-challenge/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/blog-challenge/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/blog-challenge/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/blog-challenge/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/blog-challenge/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/blog-challenge/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/blog-challenge/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/blog-challenge/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/blog-challenge/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/blog-challenge/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/blog-challenge/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/blog-challenge/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/blog-challenge/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/blog-challenge/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/blog-challenge/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/blog-challenge/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/blog-challenge/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/blog-challenge/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/blog-challenge/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/blog-challenge/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/blog-challenge/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/blog-challenge/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/blog-challenge/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/blog-challenge/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/blog-challenge/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/blog-challenge/deployments",
+ "created_at": "2023-06-19T21:47:11Z",
+ "updated_at": "2023-06-19T21:47:29Z",
+ "pushed_at": "2023-06-19T21:50:29Z",
+ "git_url": "git://github.com/webceyhan/blog-challenge.git",
+ "ssh_url": "git@github.com:webceyhan/blog-challenge.git",
+ "clone_url": "https://github.com/webceyhan/blog-challenge.git",
+ "svn_url": "https://github.com/webceyhan/blog-challenge",
+ "homepage": null,
+ "size": 13,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "PHP",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": null,
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 0,
+ "watchers": 0,
+ "default_branch": "main"
+ },
+ {
+ "id": 606387331,
+ "node_id": "R_kgDOJCS8gw",
+ "name": "fixxo-app",
+ "full_name": "webceyhan/fixxo-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/fixxo-app",
+ "description": "Repair Shop Ticketing Application",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/fixxo-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/fixxo-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/fixxo-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/fixxo-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/fixxo-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/fixxo-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/fixxo-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/fixxo-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/fixxo-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/fixxo-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/fixxo-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/fixxo-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/fixxo-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/fixxo-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/fixxo-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/fixxo-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/fixxo-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/fixxo-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/fixxo-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/fixxo-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/fixxo-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/fixxo-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/fixxo-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/fixxo-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/fixxo-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/fixxo-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/fixxo-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/fixxo-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/fixxo-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/fixxo-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/fixxo-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/fixxo-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/fixxo-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/fixxo-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/fixxo-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/fixxo-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/fixxo-app/deployments",
+ "created_at": "2023-02-25T10:38:19Z",
+ "updated_at": "2023-03-21T07:57:39Z",
+ "pushed_at": "2023-07-03T23:57:58Z",
+ "git_url": "git://github.com/webceyhan/fixxo-app.git",
+ "ssh_url": "git@github.com:webceyhan/fixxo-app.git",
+ "clone_url": "https://github.com/webceyhan/fixxo-app.git",
+ "svn_url": "https://github.com/webceyhan/fixxo-app",
+ "homepage": "https://fixxo.app",
+ "size": 1013,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "PHP",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 5,
+ "license": null,
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "crm",
+ "inertiajs",
+ "laravel",
+ "mysql",
+ "nodejs",
+ "php",
+ "tailwindcss",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 5,
+ "watchers": 0,
+ "default_branch": "main"
+ },
+ {
+ "id": 602924869,
+ "node_id": "R_kgDOI-_nRQ",
+ "name": "bootstrap-breeze",
+ "full_name": "webceyhan/bootstrap-breeze",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/bootstrap-breeze",
+ "description": "Laravel 10 Breeze scaffolding with Vue 3, Inertia & Bootstrap 5",
+ "fork": true,
+ "url": "https://api.github.com/repos/webceyhan/bootstrap-breeze",
+ "forks_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/bootstrap-breeze/deployments",
+ "created_at": "2023-02-17T08:35:15Z",
+ "updated_at": "2023-02-17T18:49:16Z",
+ "pushed_at": "2023-02-17T21:00:06Z",
+ "git_url": "git://github.com/webceyhan/bootstrap-breeze.git",
+ "ssh_url": "git@github.com:webceyhan/bootstrap-breeze.git",
+ "clone_url": "https://github.com/webceyhan/bootstrap-breeze.git",
+ "svn_url": "https://github.com/webceyhan/bootstrap-breeze",
+ "homepage": "",
+ "size": 111,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "Vue",
+ "has_issues": false,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 0,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "breeze",
+ "inertiajs",
+ "laravel",
+ "php",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 0,
+ "watchers": 0,
+ "default_branch": "main"
+ },
+ {
+ "id": 485373089,
+ "node_id": "R_kgDOHO40oQ",
+ "name": "vite-baby-name-generator",
+ "full_name": "webceyhan/vite-baby-name-generator",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/vite-baby-name-generator",
+ "description": "Vite Baby Name Generator Application",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator",
+ "forks_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/vite-baby-name-generator/deployments",
+ "created_at": "2022-04-25T12:59:42Z",
+ "updated_at": "2022-10-10T19:29:58Z",
+ "pushed_at": "2023-02-27T21:37:35Z",
+ "git_url": "git://github.com/webceyhan/vite-baby-name-generator.git",
+ "ssh_url": "git@github.com:webceyhan/vite-baby-name-generator.git",
+ "clone_url": "https://github.com/webceyhan/vite-baby-name-generator.git",
+ "svn_url": "https://github.com/webceyhan/vite-baby-name-generator",
+ "homepage": "https://webceyhan.github.io/vite-baby-name-generator",
+ "size": 98,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "TypeScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": true,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 6,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "bootstrap",
+ "css",
+ "github-actions",
+ "github-pages",
+ "html",
+ "javascript",
+ "nodejs",
+ "typescript",
+ "vite",
+ "vue"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 6,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 487343513,
+ "node_id": "R_kgDOHQxFmQ",
+ "name": "react-tourism-app",
+ "full_name": "webceyhan/react-tourism-app",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/react-tourism-app",
+ "description": "Tourism App + Vite + React + Material UI",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/react-tourism-app",
+ "forks_url": "https://api.github.com/repos/webceyhan/react-tourism-app/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/react-tourism-app/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/react-tourism-app/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/react-tourism-app/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/react-tourism-app/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/react-tourism-app/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/react-tourism-app/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/react-tourism-app/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/react-tourism-app/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/react-tourism-app/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/react-tourism-app/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/react-tourism-app/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/react-tourism-app/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/react-tourism-app/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/react-tourism-app/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/react-tourism-app/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/react-tourism-app/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/react-tourism-app/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/react-tourism-app/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/react-tourism-app/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/react-tourism-app/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/react-tourism-app/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/react-tourism-app/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/react-tourism-app/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/react-tourism-app/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/react-tourism-app/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/react-tourism-app/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/react-tourism-app/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/react-tourism-app/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/react-tourism-app/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/react-tourism-app/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/react-tourism-app/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/react-tourism-app/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/react-tourism-app/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/react-tourism-app/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/react-tourism-app/deployments",
+ "created_at": "2022-04-30T17:45:02Z",
+ "updated_at": "2022-08-09T14:12:09Z",
+ "pushed_at": "2023-03-07T14:03:54Z",
+ "git_url": "git://github.com/webceyhan/react-tourism-app.git",
+ "ssh_url": "git@github.com:webceyhan/react-tourism-app.git",
+ "clone_url": "https://github.com/webceyhan/react-tourism-app.git",
+ "svn_url": "https://github.com/webceyhan/react-tourism-app",
+ "homepage": "https://webceyhan-react-tourism-app.netlify.app/",
+ "size": 158,
+ "stargazers_count": 1,
+ "watchers_count": 1,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 7,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "css",
+ "github-actions",
+ "html",
+ "javascript",
+ "material-ui",
+ "nodejs",
+ "react",
+ "vite"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 7,
+ "watchers": 1,
+ "default_branch": "main"
+ },
+ {
+ "id": 489445860,
+ "node_id": "R_kgDOHSxZ5A",
+ "name": "next-real-estate",
+ "full_name": "webceyhan/next-real-estate",
+ "private": false,
+ "owner": {
+ "login": "webceyhan",
+ "id": 3739981,
+ "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
+ "gravatar_id": "",
+ "url": "https://api.github.com/users/webceyhan",
+ "html_url": "https://github.com/webceyhan",
+ "followers_url": "https://api.github.com/users/webceyhan/followers",
+ "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
+ "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
+ "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
+ "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
+ "organizations_url": "https://api.github.com/users/webceyhan/orgs",
+ "repos_url": "https://api.github.com/users/webceyhan/repos",
+ "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
+ "received_events_url": "https://api.github.com/users/webceyhan/received_events",
+ "type": "User",
+ "site_admin": false
+ },
+ "html_url": "https://github.com/webceyhan/next-real-estate",
+ "description": "Real Estate App + NextJs + ChakraUI + RapidAPI",
+ "fork": false,
+ "url": "https://api.github.com/repos/webceyhan/next-real-estate",
+ "forks_url": "https://api.github.com/repos/webceyhan/next-real-estate/forks",
+ "keys_url": "https://api.github.com/repos/webceyhan/next-real-estate/keys{/key_id}",
+ "collaborators_url": "https://api.github.com/repos/webceyhan/next-real-estate/collaborators{/collaborator}",
+ "teams_url": "https://api.github.com/repos/webceyhan/next-real-estate/teams",
+ "hooks_url": "https://api.github.com/repos/webceyhan/next-real-estate/hooks",
+ "issue_events_url": "https://api.github.com/repos/webceyhan/next-real-estate/issues/events{/number}",
+ "events_url": "https://api.github.com/repos/webceyhan/next-real-estate/events",
+ "assignees_url": "https://api.github.com/repos/webceyhan/next-real-estate/assignees{/user}",
+ "branches_url": "https://api.github.com/repos/webceyhan/next-real-estate/branches{/branch}",
+ "tags_url": "https://api.github.com/repos/webceyhan/next-real-estate/tags",
+ "blobs_url": "https://api.github.com/repos/webceyhan/next-real-estate/git/blobs{/sha}",
+ "git_tags_url": "https://api.github.com/repos/webceyhan/next-real-estate/git/tags{/sha}",
+ "git_refs_url": "https://api.github.com/repos/webceyhan/next-real-estate/git/refs{/sha}",
+ "trees_url": "https://api.github.com/repos/webceyhan/next-real-estate/git/trees{/sha}",
+ "statuses_url": "https://api.github.com/repos/webceyhan/next-real-estate/statuses/{sha}",
+ "languages_url": "https://api.github.com/repos/webceyhan/next-real-estate/languages",
+ "stargazers_url": "https://api.github.com/repos/webceyhan/next-real-estate/stargazers",
+ "contributors_url": "https://api.github.com/repos/webceyhan/next-real-estate/contributors",
+ "subscribers_url": "https://api.github.com/repos/webceyhan/next-real-estate/subscribers",
+ "subscription_url": "https://api.github.com/repos/webceyhan/next-real-estate/subscription",
+ "commits_url": "https://api.github.com/repos/webceyhan/next-real-estate/commits{/sha}",
+ "git_commits_url": "https://api.github.com/repos/webceyhan/next-real-estate/git/commits{/sha}",
+ "comments_url": "https://api.github.com/repos/webceyhan/next-real-estate/comments{/number}",
+ "issue_comment_url": "https://api.github.com/repos/webceyhan/next-real-estate/issues/comments{/number}",
+ "contents_url": "https://api.github.com/repos/webceyhan/next-real-estate/contents/{+path}",
+ "compare_url": "https://api.github.com/repos/webceyhan/next-real-estate/compare/{base}...{head}",
+ "merges_url": "https://api.github.com/repos/webceyhan/next-real-estate/merges",
+ "archive_url": "https://api.github.com/repos/webceyhan/next-real-estate/{archive_format}{/ref}",
+ "downloads_url": "https://api.github.com/repos/webceyhan/next-real-estate/downloads",
+ "issues_url": "https://api.github.com/repos/webceyhan/next-real-estate/issues{/number}",
+ "pulls_url": "https://api.github.com/repos/webceyhan/next-real-estate/pulls{/number}",
+ "milestones_url": "https://api.github.com/repos/webceyhan/next-real-estate/milestones{/number}",
+ "notifications_url": "https://api.github.com/repos/webceyhan/next-real-estate/notifications{?since,all,participating}",
+ "labels_url": "https://api.github.com/repos/webceyhan/next-real-estate/labels{/name}",
+ "releases_url": "https://api.github.com/repos/webceyhan/next-real-estate/releases{/id}",
+ "deployments_url": "https://api.github.com/repos/webceyhan/next-real-estate/deployments",
+ "created_at": "2022-05-06T17:49:46Z",
+ "updated_at": "2022-05-06T18:29:38Z",
+ "pushed_at": "2023-03-03T22:15:32Z",
+ "git_url": "git://github.com/webceyhan/next-real-estate.git",
+ "ssh_url": "git@github.com:webceyhan/next-real-estate.git",
+ "clone_url": "https://github.com/webceyhan/next-real-estate.git",
+ "svn_url": "https://github.com/webceyhan/next-real-estate",
+ "homepage": "https://next-real-estate-kappa.vercel.app/",
+ "size": 718,
+ "stargazers_count": 0,
+ "watchers_count": 0,
+ "language": "JavaScript",
+ "has_issues": true,
+ "has_projects": true,
+ "has_downloads": true,
+ "has_wiki": true,
+ "has_pages": false,
+ "has_discussions": false,
+ "forks_count": 0,
+ "mirror_url": null,
+ "archived": false,
+ "disabled": false,
+ "open_issues_count": 7,
+ "license": {
+ "key": "mit",
+ "name": "MIT License",
+ "spdx_id": "MIT",
+ "url": "https://api.github.com/licenses/mit",
+ "node_id": "MDc6TGljZW5zZTEz"
+ },
+ "allow_forking": true,
+ "is_template": false,
+ "web_commit_signoff_required": false,
+ "topics": [
+ "chakra-ui",
+ "css",
+ "html",
+ "javascript",
+ "nextjs",
+ "nodejs",
+ "rapidapi",
+ "react",
+ "vercel"
+ ],
+ "visibility": "public",
+ "forks": 0,
+ "open_issues": 7,
+ "watchers": 0,
+ "default_branch": "main"
+ }
+]
\ No newline at end of file
diff --git a/src/api/mocks/the-patch-dr-languages.json b/src/api/mocks/the-patch-dr-languages.json
new file mode 100644
index 0000000..3403e53
--- /dev/null
+++ b/src/api/mocks/the-patch-dr-languages.json
@@ -0,0 +1,5 @@
+{
+ "HTML": 54460,
+ "CSS": 47226,
+ "JavaScript": 5795
+}
\ No newline at end of file
diff --git a/src/api/mocks/ts-boilerplate-languages.json b/src/api/mocks/ts-boilerplate-languages.json
new file mode 100644
index 0000000..16b1f2a
--- /dev/null
+++ b/src/api/mocks/ts-boilerplate-languages.json
@@ -0,0 +1,4 @@
+{
+ "JavaScript": 6963,
+ "TypeScript": 222
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-baby-name-generator-languages.json b/src/api/mocks/vite-baby-name-generator-languages.json
new file mode 100644
index 0000000..4e9acfe
--- /dev/null
+++ b/src/api/mocks/vite-baby-name-generator-languages.json
@@ -0,0 +1,5 @@
+{
+ "TypeScript": 6310,
+ "Vue": 2372,
+ "HTML": 377
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-bmi-app-languages.json b/src/api/mocks/vite-bmi-app-languages.json
new file mode 100644
index 0000000..0dfead6
--- /dev/null
+++ b/src/api/mocks/vite-bmi-app-languages.json
@@ -0,0 +1,5 @@
+{
+ "Vue": 4215,
+ "HTML": 385,
+ "JavaScript": 334
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-chain-languages.json b/src/api/mocks/vite-chain-languages.json
new file mode 100644
index 0000000..9ecf9ed
--- /dev/null
+++ b/src/api/mocks/vite-chain-languages.json
@@ -0,0 +1,6 @@
+{
+ "TypeScript": 88877,
+ "Vue": 33632,
+ "HTML": 403,
+ "JavaScript": 171
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-chat-app-languages.json b/src/api/mocks/vite-chat-app-languages.json
new file mode 100644
index 0000000..27f4245
--- /dev/null
+++ b/src/api/mocks/vite-chat-app-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 5422,
+ "Vue": 4173,
+ "HTML": 476
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-crypto-ticker-app-languages.json b/src/api/mocks/vite-crypto-ticker-app-languages.json
new file mode 100644
index 0000000..8674236
--- /dev/null
+++ b/src/api/mocks/vite-crypto-ticker-app-languages.json
@@ -0,0 +1,5 @@
+{
+ "JavaScript": 4713,
+ "Vue": 1186,
+ "HTML": 364
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-finance-portfolio-languages.json b/src/api/mocks/vite-finance-portfolio-languages.json
new file mode 100644
index 0000000..676d0c0
--- /dev/null
+++ b/src/api/mocks/vite-finance-portfolio-languages.json
@@ -0,0 +1,5 @@
+{
+ "Vue": 18326,
+ "TypeScript": 12589,
+ "HTML": 382
+}
\ No newline at end of file
diff --git a/src/api/mocks/vite-rps-game-languages.json b/src/api/mocks/vite-rps-game-languages.json
new file mode 100644
index 0000000..5193af7
--- /dev/null
+++ b/src/api/mocks/vite-rps-game-languages.json
@@ -0,0 +1,5 @@
+{
+ "TypeScript": 6044,
+ "Vue": 5655,
+ "HTML": 380
+}
\ No newline at end of file
diff --git a/src/api/mocks/vue-splendid-food-languages.json b/src/api/mocks/vue-splendid-food-languages.json
new file mode 100644
index 0000000..8f05d2b
--- /dev/null
+++ b/src/api/mocks/vue-splendid-food-languages.json
@@ -0,0 +1,6 @@
+{
+ "SCSS": 13482,
+ "Vue": 10714,
+ "JavaScript": 5237,
+ "HTML": 2421
+}
\ No newline at end of file
diff --git a/src/api/mocks/webceyhan.github.io-languages.json b/src/api/mocks/webceyhan.github.io-languages.json
new file mode 100644
index 0000000..8985298
--- /dev/null
+++ b/src/api/mocks/webceyhan.github.io-languages.json
@@ -0,0 +1,6 @@
+{
+ "Vue": 17334,
+ "JavaScript": 10381,
+ "HTML": 375,
+ "CSS": 107
+}
\ No newline at end of file
diff --git a/src/api/profile.json b/src/api/profile.json
deleted file mode 100644
index 7f18ed8..0000000
--- a/src/api/profile.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false,
- "name": "Evren Ceyhan",
- "company": "CEYHAN I/O",
- "blog": "http://ceyhan.io",
- "location": "Brussels",
- "email": null,
- "hireable": true,
- "bio": "Full Stack Web Developer",
- "twitter_username": "webceyhan",
- "public_repos": 16,
- "public_gists": 0,
- "followers": 0,
- "following": 1,
- "created_at": "2013-03-01T16:12:23Z",
- "updated_at": "2022-02-01T21:56:45Z"
- }
\ No newline at end of file
diff --git a/src/api/repos.json b/src/api/repos.json
deleted file mode 100644
index 925a4d4..0000000
--- a/src/api/repos.json
+++ /dev/null
@@ -1,1799 +0,0 @@
-[
- {
- "id": 453815424,
- "node_id": "R_kgDOGwysgA",
- "name": "vite-chat-app",
- "full_name": "webceyhan/vite-chat-app",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/vite-chat-app",
- "description": "Demo Chat Application built on Vite + Vue + Websockets",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/vite-chat-app",
- "forks_url": "https://api.github.com/repos/webceyhan/vite-chat-app/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/vite-chat-app/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/vite-chat-app/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/vite-chat-app/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/vite-chat-app/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/vite-chat-app/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/vite-chat-app/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/vite-chat-app/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/vite-chat-app/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/vite-chat-app/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/vite-chat-app/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/vite-chat-app/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/vite-chat-app/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/vite-chat-app/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/vite-chat-app/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/vite-chat-app/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/vite-chat-app/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/vite-chat-app/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/vite-chat-app/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/vite-chat-app/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/vite-chat-app/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/vite-chat-app/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/vite-chat-app/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/vite-chat-app/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/vite-chat-app/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/vite-chat-app/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/vite-chat-app/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/vite-chat-app/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/vite-chat-app/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/vite-chat-app/deployments",
- "created_at": "2022-01-30T22:13:49Z",
- "updated_at": "2022-01-30T22:35:20Z",
- "pushed_at": "2022-01-31T13:03:02Z",
- "git_url": "git://github.com/webceyhan/vite-chat-app.git",
- "ssh_url": "git@github.com:webceyhan/vite-chat-app.git",
- "clone_url": "https://github.com/webceyhan/vite-chat-app.git",
- "svn_url": "https://github.com/webceyhan/vite-chat-app",
- "homepage": "https://webceyhan-chat-app.herokuapp.com/",
- "size": 53,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "JavaScript",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "bootstrap",
- "css",
- "express",
- "heroku",
- "html",
- "javascript",
- "vite",
- "vue",
- "websocket"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "JavaScript": 5208,
- "Vue": 4067,
- "HTML": 474
- }
- },
- {
- "id": 450259481,
- "node_id": "R_kgDOGtZqGQ",
- "name": "ng-weather-app",
- "full_name": "webceyhan/ng-weather-app",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/ng-weather-app",
- "description": "Demo Angular Weather Application",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/ng-weather-app",
- "forks_url": "https://api.github.com/repos/webceyhan/ng-weather-app/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/ng-weather-app/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/ng-weather-app/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/ng-weather-app/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/ng-weather-app/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/ng-weather-app/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/ng-weather-app/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/ng-weather-app/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/ng-weather-app/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/ng-weather-app/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/ng-weather-app/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/ng-weather-app/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/ng-weather-app/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/ng-weather-app/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/ng-weather-app/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/ng-weather-app/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/ng-weather-app/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/ng-weather-app/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/ng-weather-app/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/ng-weather-app/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/ng-weather-app/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/ng-weather-app/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/ng-weather-app/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/ng-weather-app/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/ng-weather-app/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/ng-weather-app/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/ng-weather-app/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/ng-weather-app/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/ng-weather-app/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/ng-weather-app/deployments",
- "created_at": "2022-01-20T21:12:46Z",
- "updated_at": "2022-01-30T22:19:22Z",
- "pushed_at": "2022-01-21T12:13:33Z",
- "git_url": "git://github.com/webceyhan/ng-weather-app.git",
- "ssh_url": "git@github.com:webceyhan/ng-weather-app.git",
- "clone_url": "https://github.com/webceyhan/ng-weather-app.git",
- "svn_url": "https://github.com/webceyhan/ng-weather-app",
- "homepage": "https://webceyhan-ng-weather-app.herokuapp.com",
- "size": 1442,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "HTML",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "angular",
- "bootstrap",
- "css",
- "express",
- "github-actions",
- "heroku",
- "html",
- "javascript",
- "rest",
- "typescript"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "HTML": 29042,
- "TypeScript": 18698,
- "JavaScript": 3714,
- "CSS": 1096
- }
- },
- {
- "id": 452275370,
- "node_id": "R_kgDOGvUsqg",
- "name": "rock-paper-scissors-game",
- "full_name": "webceyhan/rock-paper-scissors-game",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/rock-paper-scissors-game",
- "description": "Rock Paper Scissors Game built on Vite + Vue + TypeScript",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game",
- "forks_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/rock-paper-scissors-game/deployments",
- "created_at": "2022-01-26T12:56:17Z",
- "updated_at": "2022-01-26T16:37:56Z",
- "pushed_at": "2022-01-26T17:22:30Z",
- "git_url": "git://github.com/webceyhan/rock-paper-scissors-game.git",
- "ssh_url": "git@github.com:webceyhan/rock-paper-scissors-game.git",
- "clone_url": "https://github.com/webceyhan/rock-paper-scissors-game.git",
- "svn_url": "https://github.com/webceyhan/rock-paper-scissors-game",
- "homepage": "https://webceyhan.github.io/rock-paper-scissors-game",
- "size": 557,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "TypeScript",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "bootstrap",
- "css",
- "game",
- "github-actions",
- "github-pages",
- "html",
- "javascript",
- "nodejs",
- "typescript",
- "vite",
- "vue"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "TypeScript": 6044,
- "Vue": 5655,
- "HTML": 380
- }
- },
- {
- "id": 450597864,
- "node_id": "R_kgDOGtuT6A",
- "name": "ts-boilerplate",
- "full_name": "webceyhan/ts-boilerplate",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/ts-boilerplate",
- "description": "Typescript Boilerplate project that can be used as starter-template",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/ts-boilerplate",
- "forks_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/ts-boilerplate/deployments",
- "created_at": "2022-01-21T18:23:13Z",
- "updated_at": "2022-01-22T21:05:08Z",
- "pushed_at": "2022-01-22T21:22:11Z",
- "git_url": "git://github.com/webceyhan/ts-boilerplate.git",
- "ssh_url": "git@github.com:webceyhan/ts-boilerplate.git",
- "clone_url": "https://github.com/webceyhan/ts-boilerplate.git",
- "svn_url": "https://github.com/webceyhan/ts-boilerplate",
- "homepage": "",
- "size": 125,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "JavaScript",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "boilerplate",
- "eslint",
- "github-actions",
- "javascript",
- "jest",
- "nodejs",
- "typescript"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "main",
- "languages": {
- "JavaScript": 6963,
- "TypeScript": 222
- }
- },
- {
- "id": 450577031,
- "node_id": "R_kgDOGttChw",
- "name": "simple-blockchain",
- "full_name": "webceyhan/simple-blockchain",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/simple-blockchain",
- "description": "Very simple Blockchain application to demonstrate how it works ",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/simple-blockchain",
- "forks_url": "https://api.github.com/repos/webceyhan/simple-blockchain/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/simple-blockchain/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/simple-blockchain/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/simple-blockchain/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/simple-blockchain/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/simple-blockchain/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/simple-blockchain/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/simple-blockchain/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/simple-blockchain/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/simple-blockchain/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/simple-blockchain/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/simple-blockchain/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/simple-blockchain/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/simple-blockchain/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/simple-blockchain/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/simple-blockchain/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/simple-blockchain/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/simple-blockchain/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/simple-blockchain/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/simple-blockchain/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/simple-blockchain/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/simple-blockchain/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/simple-blockchain/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/simple-blockchain/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/simple-blockchain/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/simple-blockchain/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/simple-blockchain/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/simple-blockchain/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/simple-blockchain/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/simple-blockchain/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/simple-blockchain/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/simple-blockchain/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/simple-blockchain/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/simple-blockchain/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/simple-blockchain/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/simple-blockchain/deployments",
- "created_at": "2022-01-21T17:15:04Z",
- "updated_at": "2022-01-21T17:15:04Z",
- "pushed_at": "2022-01-21T17:15:05Z",
- "git_url": "git://github.com/webceyhan/simple-blockchain.git",
- "ssh_url": "git@github.com:webceyhan/simple-blockchain.git",
- "clone_url": "https://github.com/webceyhan/simple-blockchain.git",
- "svn_url": "https://github.com/webceyhan/simple-blockchain",
- "homepage": null,
- "size": 2,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": null,
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "main",
- "languages": {}
- },
- {
- "id": 450461948,
- "node_id": "R_kgDOGtmA_A",
- "name": "ng-heroes",
- "full_name": "webceyhan/ng-heroes",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/ng-heroes",
- "description": "Demo Angular Tour of Heroes Application",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/ng-heroes",
- "forks_url": "https://api.github.com/repos/webceyhan/ng-heroes/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/ng-heroes/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/ng-heroes/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/ng-heroes/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/ng-heroes/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/ng-heroes/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/ng-heroes/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/ng-heroes/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/ng-heroes/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/ng-heroes/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/ng-heroes/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/ng-heroes/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/ng-heroes/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/ng-heroes/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/ng-heroes/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/ng-heroes/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/ng-heroes/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/ng-heroes/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/ng-heroes/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/ng-heroes/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/ng-heroes/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/ng-heroes/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/ng-heroes/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/ng-heroes/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/ng-heroes/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/ng-heroes/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/ng-heroes/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/ng-heroes/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/ng-heroes/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/ng-heroes/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/ng-heroes/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/ng-heroes/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/ng-heroes/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/ng-heroes/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/ng-heroes/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/ng-heroes/deployments",
- "created_at": "2022-01-21T11:16:16Z",
- "updated_at": "2022-01-21T12:38:45Z",
- "pushed_at": "2022-01-21T12:35:33Z",
- "git_url": "git://github.com/webceyhan/ng-heroes.git",
- "ssh_url": "git@github.com:webceyhan/ng-heroes.git",
- "clone_url": "https://github.com/webceyhan/ng-heroes.git",
- "svn_url": "https://github.com/webceyhan/ng-heroes",
- "homepage": "https://webceyhan-ng-heroes.herokuapp.com",
- "size": 1409,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "TypeScript",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "angular",
- "bootstrap",
- "css",
- "github-actions",
- "heroku",
- "html",
- "javascript",
- "nodejs",
- "rest",
- "typescript"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "TypeScript": 21436,
- "HTML": 5580,
- "JavaScript": 2224,
- "CSS": 322
- }
- },
- {
- "id": 92673588,
- "node_id": "MDEwOlJlcG9zaXRvcnk5MjY3MzU4OA==",
- "name": "webceyhan.github.io",
- "full_name": "webceyhan/webceyhan.github.io",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/webceyhan.github.io",
- "description": "CeyhanIO Landing Page",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/webceyhan.github.io",
- "forks_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/webceyhan.github.io/deployments",
- "created_at": "2017-05-28T16:38:39Z",
- "updated_at": "2022-01-21T02:16:01Z",
- "pushed_at": "2022-01-17T17:12:37Z",
- "git_url": "git://github.com/webceyhan/webceyhan.github.io.git",
- "ssh_url": "git@github.com:webceyhan/webceyhan.github.io.git",
- "clone_url": "https://github.com/webceyhan/webceyhan.github.io.git",
- "svn_url": "https://github.com/webceyhan/webceyhan.github.io",
- "homepage": "http://www.ceyhan.io",
- "size": 17472,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "HTML",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "bootstrap",
- "css",
- "github-actions",
- "github-api",
- "html",
- "javascript",
- "rest",
- "vue"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "Vue": 6832,
- "JavaScript": 4175,
- "HTML": 375,
- "CSS": 173,
- "Shell": 173
- }
- },
- {
- "id": 447553022,
- "node_id": "R_kgDOGq0d_g",
- "name": "vue-splendid-food",
- "full_name": "webceyhan/vue-splendid-food",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/vue-splendid-food",
- "description": "Splendid Food Website - Vue",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/vue-splendid-food",
- "forks_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/vue-splendid-food/deployments",
- "created_at": "2022-01-13T10:16:21Z",
- "updated_at": "2022-01-18T19:39:40Z",
- "pushed_at": "2022-01-18T19:36:30Z",
- "git_url": "git://github.com/webceyhan/vue-splendid-food.git",
- "ssh_url": "git@github.com:webceyhan/vue-splendid-food.git",
- "clone_url": "https://github.com/webceyhan/vue-splendid-food.git",
- "svn_url": "https://github.com/webceyhan/vue-splendid-food",
- "homepage": "https://vue-splendid-food.web.app/",
- "size": 579,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "SCSS",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "css",
- "firebase",
- "github-actions",
- "html",
- "javascript",
- "nodejs",
- "sass",
- "vue",
- "vuex"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "SCSS": 13482,
- "Vue": 10714,
- "JavaScript": 5237,
- "HTML": 2421
- }
- },
- {
- "id": 449339128,
- "node_id": "R_kgDOGshe-A",
- "name": "amazon-scraper-api",
- "full_name": "webceyhan/amazon-scraper-api",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/amazon-scraper-api",
- "description": "Demo Amazon Products API using ScraperApi hosted on Heroku",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/amazon-scraper-api",
- "forks_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/amazon-scraper-api/deployments",
- "created_at": "2022-01-18T15:26:32Z",
- "updated_at": "2022-01-18T19:39:24Z",
- "pushed_at": "2022-01-18T19:30:52Z",
- "git_url": "git://github.com/webceyhan/amazon-scraper-api.git",
- "ssh_url": "git@github.com:webceyhan/amazon-scraper-api.git",
- "clone_url": "https://github.com/webceyhan/amazon-scraper-api.git",
- "svn_url": "https://github.com/webceyhan/amazon-scraper-api",
- "homepage": "https://webceyhan-amazon-scraper-api.herokuapp.com",
- "size": 54,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "JavaScript",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "api",
- "expressjs",
- "github-actions",
- "heroku",
- "javascript",
- "nodejs",
- "rapidapi",
- "rest",
- "scraperapi"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "JavaScript": 3106
- }
- },
- {
- "id": 271290714,
- "node_id": "MDEwOlJlcG9zaXRvcnkyNzEyOTA3MTQ=",
- "name": "the-patch-dr",
- "full_name": "webceyhan/the-patch-dr",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/the-patch-dr",
- "description": "Business website of Dallas",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/the-patch-dr",
- "forks_url": "https://api.github.com/repos/webceyhan/the-patch-dr/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/the-patch-dr/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/the-patch-dr/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/the-patch-dr/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/the-patch-dr/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/the-patch-dr/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/the-patch-dr/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/the-patch-dr/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/the-patch-dr/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/the-patch-dr/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/the-patch-dr/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/the-patch-dr/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/the-patch-dr/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/the-patch-dr/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/the-patch-dr/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/the-patch-dr/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/the-patch-dr/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/the-patch-dr/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/the-patch-dr/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/the-patch-dr/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/the-patch-dr/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/the-patch-dr/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/the-patch-dr/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/the-patch-dr/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/the-patch-dr/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/the-patch-dr/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/the-patch-dr/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/the-patch-dr/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/the-patch-dr/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/the-patch-dr/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/the-patch-dr/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/the-patch-dr/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/the-patch-dr/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/the-patch-dr/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/the-patch-dr/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/the-patch-dr/deployments",
- "created_at": "2020-06-10T13:54:36Z",
- "updated_at": "2022-01-17T17:24:43Z",
- "pushed_at": "2022-01-17T17:50:14Z",
- "git_url": "git://github.com/webceyhan/the-patch-dr.git",
- "ssh_url": "git@github.com:webceyhan/the-patch-dr.git",
- "clone_url": "https://github.com/webceyhan/the-patch-dr.git",
- "svn_url": "https://github.com/webceyhan/the-patch-dr",
- "homepage": "https://webceyhan.github.io/the-patch-dr",
- "size": 27349,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "HTML",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 1,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "css",
- "html",
- "javascript",
- "nodejs"
- ],
- "visibility": "public",
- "forks": 1,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "HTML": 54460,
- "CSS": 47226,
- "JavaScript": 5795
- }
- },
- {
- "id": 448089506,
- "node_id": "R_kgDOGrVNog",
- "name": "bs-bootcamp-website",
- "full_name": "webceyhan/bs-bootcamp-website",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/bs-bootcamp-website",
- "description": "Frontend Bootcamp Website",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website",
- "forks_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/bs-bootcamp-website/deployments",
- "created_at": "2022-01-14T19:49:07Z",
- "updated_at": "2022-01-17T17:21:38Z",
- "pushed_at": "2022-01-14T20:02:56Z",
- "git_url": "git://github.com/webceyhan/bs-bootcamp-website.git",
- "ssh_url": "git@github.com:webceyhan/bs-bootcamp-website.git",
- "clone_url": "https://github.com/webceyhan/bs-bootcamp-website.git",
- "svn_url": "https://github.com/webceyhan/bs-bootcamp-website",
- "homepage": "https://webceyhan.github.io/bs-bootcamp-website",
- "size": 45,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "HTML",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "bootstrap",
- "css",
- "html",
- "javascript",
- "mapbox"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "HTML": 32616,
- "CSS": 177
- }
- },
- {
- "id": 446071781,
- "node_id": "R_kgDOGpaD5Q",
- "name": "bs-splendid-food",
- "full_name": "webceyhan/bs-splendid-food",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/bs-splendid-food",
- "description": "Splendid Food Website - Bootstrap v5",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/bs-splendid-food",
- "forks_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/bs-splendid-food/deployments",
- "created_at": "2022-01-09T11:42:28Z",
- "updated_at": "2022-01-17T17:20:35Z",
- "pushed_at": "2022-01-16T11:06:28Z",
- "git_url": "git://github.com/webceyhan/bs-splendid-food.git",
- "ssh_url": "git@github.com:webceyhan/bs-splendid-food.git",
- "clone_url": "https://github.com/webceyhan/bs-splendid-food.git",
- "svn_url": "https://github.com/webceyhan/bs-splendid-food",
- "homepage": "https://webceyhan.github.io/bs-splendid-food",
- "size": 508,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "SCSS",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "bootstrap",
- "css",
- "html",
- "javascript",
- "nodejs",
- "sass"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "main",
- "languages": {
- "SCSS": 13989
- }
- },
- {
- "id": 446051710,
- "node_id": "R_kgDOGpY1fg",
- "name": "webceyhan",
- "full_name": "webceyhan/webceyhan",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/webceyhan",
- "description": "Config files for my GitHub profile.",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/webceyhan",
- "forks_url": "https://api.github.com/repos/webceyhan/webceyhan/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/webceyhan/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/webceyhan/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/webceyhan/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/webceyhan/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/webceyhan/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/webceyhan/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/webceyhan/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/webceyhan/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/webceyhan/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/webceyhan/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/webceyhan/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/webceyhan/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/webceyhan/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/webceyhan/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/webceyhan/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/webceyhan/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/webceyhan/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/webceyhan/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/webceyhan/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/webceyhan/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/webceyhan/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/webceyhan/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/webceyhan/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/webceyhan/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/webceyhan/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/webceyhan/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/webceyhan/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/webceyhan/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/webceyhan/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/webceyhan/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/webceyhan/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/webceyhan/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/webceyhan/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/webceyhan/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/webceyhan/deployments",
- "created_at": "2022-01-09T10:05:24Z",
- "updated_at": "2022-01-09T10:14:14Z",
- "pushed_at": "2022-01-09T10:14:11Z",
- "git_url": "git://github.com/webceyhan/webceyhan.git",
- "ssh_url": "git@github.com:webceyhan/webceyhan.git",
- "clone_url": "https://github.com/webceyhan/webceyhan.git",
- "svn_url": "https://github.com/webceyhan/webceyhan",
- "homepage": "https://github.com/webceyhan",
- "size": 0,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": null,
- "has_issues": false,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "config",
- "github-config"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "main",
- "languages": {}
- },
- {
- "id": 171116256,
- "node_id": "MDEwOlJlcG9zaXRvcnkxNzExMTYyNTY=",
- "name": "devbox-lemp",
- "full_name": "webceyhan/devbox-lemp",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/devbox-lemp",
- "description": "Vagrant Development Box",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/devbox-lemp",
- "forks_url": "https://api.github.com/repos/webceyhan/devbox-lemp/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/devbox-lemp/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/devbox-lemp/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/devbox-lemp/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/devbox-lemp/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/devbox-lemp/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/devbox-lemp/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/devbox-lemp/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/devbox-lemp/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/devbox-lemp/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/devbox-lemp/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/devbox-lemp/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/devbox-lemp/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/devbox-lemp/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/devbox-lemp/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/devbox-lemp/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/devbox-lemp/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/devbox-lemp/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/devbox-lemp/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/devbox-lemp/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/devbox-lemp/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/devbox-lemp/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/devbox-lemp/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/devbox-lemp/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/devbox-lemp/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/devbox-lemp/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/devbox-lemp/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/devbox-lemp/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/devbox-lemp/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/devbox-lemp/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/devbox-lemp/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/devbox-lemp/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/devbox-lemp/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/devbox-lemp/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/devbox-lemp/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/devbox-lemp/deployments",
- "created_at": "2019-02-17T11:53:17Z",
- "updated_at": "2021-05-01T19:12:49Z",
- "pushed_at": "2019-02-18T21:35:34Z",
- "git_url": "git://github.com/webceyhan/devbox-lemp.git",
- "ssh_url": "git@github.com:webceyhan/devbox-lemp.git",
- "clone_url": "https://github.com/webceyhan/devbox-lemp.git",
- "svn_url": "https://github.com/webceyhan/devbox-lemp",
- "homepage": "",
- "size": 14,
- "stargazers_count": 1,
- "watchers_count": 1,
- "language": "Shell",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "lemp",
- "lemp-stack",
- "vagrant",
- "vagrantbox"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 1,
- "default_branch": "master",
- "languages": {
- "Shell": 10343,
- "PHP": 16
- }
- },
- {
- "id": 284540485,
- "node_id": "MDEwOlJlcG9zaXRvcnkyODQ1NDA0ODU=",
- "name": "laragym",
- "full_name": "webceyhan/laragym",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/laragym",
- "description": " A laravel gym management system",
- "fork": true,
- "url": "https://api.github.com/repos/webceyhan/laragym",
- "forks_url": "https://api.github.com/repos/webceyhan/laragym/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/laragym/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/laragym/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/laragym/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/laragym/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/laragym/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/laragym/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/laragym/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/laragym/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/laragym/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/laragym/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/laragym/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/laragym/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/laragym/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/laragym/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/laragym/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/laragym/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/laragym/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/laragym/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/laragym/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/laragym/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/laragym/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/laragym/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/laragym/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/laragym/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/laragym/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/laragym/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/laragym/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/laragym/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/laragym/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/laragym/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/laragym/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/laragym/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/laragym/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/laragym/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/laragym/deployments",
- "created_at": "2020-08-02T20:58:06Z",
- "updated_at": "2020-08-02T20:58:08Z",
- "pushed_at": "2020-07-30T20:49:39Z",
- "git_url": "git://github.com/webceyhan/laragym.git",
- "ssh_url": "git@github.com:webceyhan/laragym.git",
- "clone_url": "https://github.com/webceyhan/laragym.git",
- "svn_url": "https://github.com/webceyhan/laragym",
- "homepage": "",
- "size": 3360,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": null,
- "has_issues": false,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 0,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [],
- "visibility": "public",
- "forks": 0,
- "open_issues": 0,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "JavaScript": 230840,
- "PHP": 209779,
- "HTML": 5629,
- "Dockerfile": 848,
- "Shell": 322
- }
- },
- {
- "id": 283568098,
- "node_id": "MDEwOlJlcG9zaXRvcnkyODM1NjgwOTg=",
- "name": "gym-crm",
- "full_name": "webceyhan/gym-crm",
- "private": false,
- "owner": {
- "login": "webceyhan",
- "id": 3739981,
- "node_id": "MDQ6VXNlcjM3Mzk5ODE=",
- "avatar_url": "https://avatars.githubusercontent.com/u/3739981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/webceyhan",
- "html_url": "https://github.com/webceyhan",
- "followers_url": "https://api.github.com/users/webceyhan/followers",
- "following_url": "https://api.github.com/users/webceyhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/webceyhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/webceyhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/webceyhan/subscriptions",
- "organizations_url": "https://api.github.com/users/webceyhan/orgs",
- "repos_url": "https://api.github.com/users/webceyhan/repos",
- "events_url": "https://api.github.com/users/webceyhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/webceyhan/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/webceyhan/gym-crm",
- "description": "Gym Club CRM System",
- "fork": false,
- "url": "https://api.github.com/repos/webceyhan/gym-crm",
- "forks_url": "https://api.github.com/repos/webceyhan/gym-crm/forks",
- "keys_url": "https://api.github.com/repos/webceyhan/gym-crm/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/webceyhan/gym-crm/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/webceyhan/gym-crm/teams",
- "hooks_url": "https://api.github.com/repos/webceyhan/gym-crm/hooks",
- "issue_events_url": "https://api.github.com/repos/webceyhan/gym-crm/issues/events{/number}",
- "events_url": "https://api.github.com/repos/webceyhan/gym-crm/events",
- "assignees_url": "https://api.github.com/repos/webceyhan/gym-crm/assignees{/user}",
- "branches_url": "https://api.github.com/repos/webceyhan/gym-crm/branches{/branch}",
- "tags_url": "https://api.github.com/repos/webceyhan/gym-crm/tags",
- "blobs_url": "https://api.github.com/repos/webceyhan/gym-crm/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/webceyhan/gym-crm/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/webceyhan/gym-crm/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/webceyhan/gym-crm/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/webceyhan/gym-crm/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/webceyhan/gym-crm/languages",
- "stargazers_url": "https://api.github.com/repos/webceyhan/gym-crm/stargazers",
- "contributors_url": "https://api.github.com/repos/webceyhan/gym-crm/contributors",
- "subscribers_url": "https://api.github.com/repos/webceyhan/gym-crm/subscribers",
- "subscription_url": "https://api.github.com/repos/webceyhan/gym-crm/subscription",
- "commits_url": "https://api.github.com/repos/webceyhan/gym-crm/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/webceyhan/gym-crm/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/webceyhan/gym-crm/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/webceyhan/gym-crm/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/webceyhan/gym-crm/contents/{+path}",
- "compare_url": "https://api.github.com/repos/webceyhan/gym-crm/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/webceyhan/gym-crm/merges",
- "archive_url": "https://api.github.com/repos/webceyhan/gym-crm/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/webceyhan/gym-crm/downloads",
- "issues_url": "https://api.github.com/repos/webceyhan/gym-crm/issues{/number}",
- "pulls_url": "https://api.github.com/repos/webceyhan/gym-crm/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/webceyhan/gym-crm/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/webceyhan/gym-crm/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/webceyhan/gym-crm/labels{/name}",
- "releases_url": "https://api.github.com/repos/webceyhan/gym-crm/releases{/id}",
- "deployments_url": "https://api.github.com/repos/webceyhan/gym-crm/deployments",
- "created_at": "2020-07-29T18:01:28Z",
- "updated_at": "2020-07-30T22:37:25Z",
- "pushed_at": "2021-06-29T15:31:54Z",
- "git_url": "git://github.com/webceyhan/gym-crm.git",
- "ssh_url": "git@github.com:webceyhan/gym-crm.git",
- "clone_url": "https://github.com/webceyhan/gym-crm.git",
- "svn_url": "https://github.com/webceyhan/gym-crm",
- "homepage": "",
- "size": 3031,
- "stargazers_count": 0,
- "watchers_count": 0,
- "language": "PHP",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 0,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 2,
- "license": null,
- "allow_forking": true,
- "is_template": false,
- "topics": [
- "crm",
- "frontend",
- "laravel",
- "mysql",
- "php",
- "restful",
- "vagrant",
- "vue"
- ],
- "visibility": "public",
- "forks": 0,
- "open_issues": 2,
- "watchers": 0,
- "default_branch": "master",
- "languages": {
- "PHP": 79585,
- "HTML": 2953
- }
- }
-]
\ No newline at end of file
diff --git a/src/components/Stat.vue b/src/components/Stat.vue
new file mode 100644
index 0000000..6089c20
--- /dev/null
+++ b/src/components/Stat.vue
@@ -0,0 +1,32 @@
+
+
+
+
-
-
+
+
- {{ profile.company }}
-
+ {{ profile.company }}
+
+ {{ repo.description }}
+{{ repo.description }}