From 94df6c74957aa754f39cad8d618a748103e8dedd Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:30 +0530 Subject: [PATCH 1/9] Update generateCALeaderboard.js --- functions/generateCALeaderboard.js | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/functions/generateCALeaderboard.js b/functions/generateCALeaderboard.js index 6556e16..80dab49 100644 --- a/functions/generateCALeaderboard.js +++ b/functions/generateCALeaderboard.js @@ -1,10 +1,20 @@ var fs = require("fs"); var axios = require('axios'); +const path = require("path"); +const { writeJsonAtomic, getCacheFilePath } = require("../utils/cacheHelper"); require('dotenv').config(); let leaderboard = {}; +let isGenerating = false; + async function generateCALeaderboard() { + if (isGenerating) { + console.log("CA Leaderboard generation is already in progress. Skipping..."); + return; + } + isGenerating = true; + try { const [caDataRes, contributorDataRes, mentorDataRes, paDataRes] = await Promise.all([ axios.get(`https://opensheet.elk.sh/1v7G6EICAMtZtf1B4KuzJI_VNQE2YmKjNusu_wPPOw6g/1`), @@ -62,13 +72,13 @@ async function generateCALeaderboard() { updatedTimestring: new Date().toLocaleString() }; - await fs.promises.truncate('caLeaderboard.json'); - console.log('CALeaderboard file truncated'); - - await fs.promises.writeFile('caLeaderboard.json', JSON.stringify(json), 'utf8'); - console.log('caLeaderboard.json was updated'); + const filePath = getCacheFilePath("caLeaderboard.json"); + await writeJsonAtomic(filePath, json); + console.log('caLeaderboard.json was updated atomically'); } catch (error) { console.error('Error generating leaderboard:', error); + } finally { + isGenerating = false; } } From d33536be47f25a3a2f613b481541039b115b87f8 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:32 +0530 Subject: [PATCH 2/9] Update generateLeaderboard.js --- functions/generateLeaderboard.js | 561 ++++++++++++++++++++----------- 1 file changed, 359 insertions(+), 202 deletions(-) diff --git a/functions/generateLeaderboard.js b/functions/generateLeaderboard.js index ea36707..6e35f7a 100644 --- a/functions/generateLeaderboard.js +++ b/functions/generateLeaderboard.js @@ -1,16 +1,68 @@ var fs = require("fs"); var axios = require("axios"); +const path = require("path"); +const { writeJsonAtomic, getCacheFilePath } = require("../utils/cacheHelper"); require("dotenv").config(); + const timer = (ms) => new Promise((res) => setTimeout(res, ms)); -let leaderboard = {}; -const getGraphQLQuery = (repoOwner, repoName, start, end, cursor = null) => { +// Excluded users/bots from the leaderboard rankings +const EXCLUDED_USERS = [ + "sanjay-kv", + "allcontributors", + "allcontributors[bot]", + "dependabot[bot]", + "copilot", + "copilot[bot]", + "github-actions[bot]", + "renovate[bot]", + "dependabot-preview[bot]", + "recodehive" +]; + +/** + * Checks if a user is excluded from the leaderboard rankings. + */ +const isExcludedUser = (username) => { + if (!username) return true; + return EXCLUDED_USERS.some( + (excluded) => excluded.toLowerCase() === username.toLowerCase() + ); +}; + +/** + * Constructs a GraphQL query to fetch the organization's repositories and basic statistics. + */ +const getOrgReposQuery = (cursor = null) => { + return ` + query { + organization(login: "recodehive") { + repositories(first: 100, privacy: PUBLIC, isFork: false, after: ${cursor ? `"${cursor}"` : "null"}) { + pageInfo { + endCursor + hasNextPage + } + nodes { + name + isArchived + stargazerCount + forkCount + } + } + } + } + `; +}; + +/** + * Constructs a GraphQL query to fetch merged pull requests containing the "recode" label. + */ +const getGraphQLQuery = (repoOwner, repoName, cursor = null) => { return ` query { - search(query: "repo:${repoOwner}/${repoName} is:pr is:merged label:gssoc-ext merged:${start}..${end}", type: ISSUE, first: 100, after: ${ + search(query: "repo:${repoOwner}/${repoName} is:pr is:merged label:recode", type: ISSUE, first: 100, after: ${ cursor ? `"${cursor}"` : "null" }) { - issueCount pageInfo { endCursor hasNextPage @@ -20,13 +72,14 @@ const getGraphQLQuery = (repoOwner, repoName, start, end, cursor = null) => { ... on PullRequest { title url - createdAt + mergedAt + number author { login avatarUrl url } - labels(first: 10) { + labels(first: 20) { edges { node { name @@ -41,232 +94,336 @@ const getGraphQLQuery = (repoOwner, repoName, start, end, cursor = null) => { `; }; -const leaderboardData = async (response, leaderboard, labels) => { - if ( - response.data.data.search.edges && - response.data.data.search.edges.length > 0 - ) { - let prs = response.data.data.search.edges; - for (let i = 0; i < prs.length; i++) { - let pr = prs[i].node; - let userId = pr.author?.login; - if (userId) { - // Initialize user in leaderboard if not already present - if (!leaderboard[userId]) { - leaderboard[userId] = { - avatar_url: pr.author.avatarUrl, - login: pr.author?.login, - url: pr.author.url, - score: 0, - postManTag: false, - web3hack: false, - pr_urls: [], - pr_dates: [], // Store PR dates here - streak: 0, - }; +/** + * Constructs a GraphQL query to get the total discussions count for a repository. + */ +const getDiscussionsCountQuery = (repoName) => { + return ` + query { + repository(owner: "recodehive", name: "${repoName}") { + discussions { + totalCount } + } + } + `; +}; - // Track PR labels for scoring - let prLabels = pr.labels.edges.map((labelEdge) => labelEdge.node.name); - prLabels.forEach((label) => { - let labelObj = labels.find( - (o) => o.label.toLowerCase() === label.toLowerCase() +/** + * Wrapper for GraphQL POST requests with retry and rate-limit wait handling. + */ +const fetchWithRetry = async (query, variables = {}, retries = 3) => { + for (let i = 0; i < retries; i++) { + try { + const response = await axios.post( + "https://api.github.com/graphql", + { query, variables }, + { + headers: { + Authorization: "Bearer " + process.env.GIT_TOKEN, + }, + } + ); + if (response.data.errors && response.data.errors.length > 0) { + throw new Error("GraphQL Error: " + JSON.stringify(response.data.errors)); + } + return response; + } catch (err) { + if ( + err.response && + err.response.status === 403 && + err.response.headers["x-ratelimit-reset"] + ) { + const resetTime = new Date( + err.response.headers["x-ratelimit-reset"] * 1000 + ); + const waitTime = resetTime - new Date(); + if (waitTime > 0) { + console.warn( + `Rate limit exceeded. Waiting for ${ + waitTime / 1000 / 60 + } minutes.` ); - if (labelObj) { - leaderboard[userId].score += labelObj.points; - } - }); - - // Track PR URLs to avoid duplicates - if (!leaderboard[userId].pr_urls.includes(pr.url)) { - leaderboard[userId].pr_urls.push(pr.url); + await timer(waitTime); + // Reset retries index to retry the current query + i--; + continue; } + } + if (i === retries - 1) throw err; + console.warn(`Request failed (attempt ${i + 1}/${retries}): ${err.message}. Retrying...`); + await timer(1500 * (i + 1)); + } + } +}; - // Extra score for postman label - if (!leaderboard[userId].postManTag && prLabels.includes("postman")) { - //console.log("Postman tag found for " + leaderboard[userId].score,leaderboard[userId].login,leaderboard[userId].postManTag); - leaderboard[userId].postManTag = true; - leaderboard[userId].score += 500; - } +/** + * Fetches all public repositories and metrics for the organization. + */ +const fetchAllRepositories = async () => { + let repos = []; + let hasNextPage = true; + let cursor = null; - if (!leaderboard[userId].web3hack && prLabels.includes("hack-web3")) { - leaderboard[userId].web3hack = true; - leaderboard[userId].score += 500; - } + while (hasNextPage) { + const query = getOrgReposQuery(cursor); + const response = await fetchWithRetry(query); - // Collect PR submission dates - let createdAt = new Date(pr.createdAt).toISOString().split("T")[0]; // Store only the date part - if (!leaderboard[userId].pr_dates.includes(createdAt)) { - leaderboard[userId].pr_dates.push(createdAt); - } + const reposData = response.data.data?.organization?.repositories; + if (!reposData) break; + + repos.push(...(reposData.nodes || [])); + hasNextPage = reposData.pageInfo.hasNextPage; + cursor = reposData.pageInfo.endCursor; + } + return repos; +}; + +/** + * Fetches total discussions count, falling back gracefully if target repository fails. + */ +const fetchDiscussionsCount = async () => { + try { + const response = await fetchWithRetry(getDiscussionsCountQuery("Support")); + const repo = response.data.data?.repository; + if (!repo) { + throw new Error("Support repository repository node is null"); + } + return repo.discussions?.totalCount || 0; + } catch (err) { + console.warn("Could not fetch discussions for Support, trying recode-website...", err.message); + try { + const response = await fetchWithRetry(getDiscussionsCountQuery("recode-website")); + const repo = response.data.data?.repository; + if (!repo) { + throw new Error("recode-website repository repository node is null"); } + return repo.discussions?.totalCount || 0; + } catch (err2) { + console.error("Could not fetch discussions count:", err2.message); + return 0; } + } +}; + +/** + * Calculates Recode leaderboard points based on PR level labels. + * Requires "recode" label to exist. + */ +const calculatePointsForPR = (labels) => { + const labelNames = labels.map((l) => l.toLowerCase()); + + if (!labelNames.includes("recode")) { + return 0; + } - // Calculate streak for each user - Object.keys(leaderboard).forEach((userId) => { - let user = leaderboard[userId]; + if (labelNames.includes("level 1") || labelNames.includes("level1") || labelNames.includes("level-1")) { + return 10; + } + if (labelNames.includes("level 2") || labelNames.includes("level2") || labelNames.includes("level-2")) { + return 30; + } + if (labelNames.includes("level 3") || labelNames.includes("level3") || labelNames.includes("level-3")) { + return 50; + } - // Sort PR dates in ascending order - let sortedDates = user.pr_dates.sort((a, b) => new Date(a) - new Date(b)); + return 0; +}; - // Reset streak - user.streak = 1; +/** + * Parses page PRs, checks validity, and aggregates data. + */ +const processPRData = (response, leaderboard, repoName) => { + const edges = response.data.data?.search?.edges || []; + for (const edge of edges) { + const pr = edge.node; + const author = pr.author; + if (!author || !author.login) continue; - for (let j = 1; j < sortedDates.length; j++) { - let prevDate = new Date(sortedDates[j - 1]); - let currDate = new Date(sortedDates[j]); + const username = author.login; + if (isExcludedUser(username)) continue; - // Calculate the difference in days - let diffInDays = (currDate - prevDate) / (1000 * 60 * 60 * 24); + const labels = (pr.labels?.edges || []).map((e) => e.node.name); + const prPoints = calculatePointsForPR(labels); - // Increment streak if PRs are submitted on consecutive days - if (diffInDays === 1) { - user.streak += 1; - } else if (diffInDays > 1) { - // Reset the streak if there's a gap of more than 1 day - user.streak = 1; - } + if (prPoints > 0) { + if (!leaderboard[username]) { + leaderboard[username] = { + username, + avatar: author.avatarUrl, + profile: author.url, + points: 0, + prs: 0, + prDetails: [], + streak: 0, + _prDates: [] + }; } - }); + + const contributor = leaderboard[username]; + contributor.points += prPoints; + contributor.prs += 1; + contributor.prDetails.push({ + title: pr.title, + url: pr.url, + mergedAt: pr.mergedAt, + repoName, + number: pr.number, + points: prPoints + }); + + const datePart = pr.mergedAt.split("T")[0]; + if (!contributor._prDates.includes(datePart)) { + contributor._prDates.push(datePart); + } + } } }; -const analyeseData = async (from, to, repoOwner, repoName, leaderboard) => { - let labels = [ - { label: "level1", points: 10 }, - { label: "level2", points: 25 }, - { label: "level3", points: 45 }, - { label: "level 1", points: 10 }, - { label: "level 2", points: 25 }, - { label: "level 3", points: 45 }, - { label: "level-1", points: 10 }, - { label: "level-2", points: 25 }, - { label: "level-3", points: 45 }, - ]; +/** + * Calculates consecutive daily contribution streaks based on PR merge dates. + */ +const calculateStreak = (prDates) => { + if (prDates.length === 0) return 0; - let hasNextPage = true; - let cursor = null; + const sortedDates = prDates.sort((a, b) => new Date(a) - new Date(b)); + + // Verify if the streak is currently active (last contribution was today or yesterday UTC) + const todayDatePart = new Date().toISOString().split("T")[0]; + const todayUTC = new Date(todayDatePart); + const lastDateUTC = new Date(sortedDates[sortedDates.length - 1]); + const diffFromToday = (todayUTC - lastDateUTC) / (1000 * 60 * 60 * 24); + + if (diffFromToday > 1) { + return 0; // Streak has expired + } - while (hasNextPage) { - let query = getGraphQLQuery(repoOwner, repoName, from, to, cursor); + let streak = 1; - await axios - .post( - "https://api.github.com/graphql", - { query }, - { - headers: { - Authorization: "Bearer " + process.env.GIT_TOKEN, - }, - } - ) - .then(async function (response) { - await leaderboardData(response, leaderboard, labels); - - hasNextPage = response.data.data.search.pageInfo.hasNextPage; - cursor = response.data.data.search.pageInfo.endCursor; - }) - .catch(async function (err) { - if ( - err.response && - err.response.status === 403 && - err.response.headers["x-ratelimit-reset"] - ) { - const resetTime = new Date( - err.response.headers["x-ratelimit-reset"] * 1000 - ); - const waitTime = resetTime - new Date(); - if (waitTime > 0) { - console.log( - `Rate limit exceeded. Waiting for ${ - waitTime / 1000 / 60 - } minutes.` - ); - await timer(waitTime); - } - } - console.log( - "Not found for this project link ", - `${repoOwner}/${repoName}` - ); - hasNextPage = false; - }); + for (let j = 1; j < sortedDates.length; j++) { + const prevDate = new Date(sortedDates[j - 1]); + const currDate = new Date(sortedDates[j]); + + const diffInDays = (currDate - prevDate) / (1000 * 60 * 60 * 24); + + if (diffInDays === 1) { + streak += 1; + } else if (diffInDays > 1) { + streak = 1; + } } + return streak; }; +let isGenerating = false; + +/** + * Main execution function to scrape repositories, score PRs, and generate JSON caches. + */ async function generateLeaderboard() { - let projects = await axios.get( - "https://opensheet.elk.sh/1dM4gAty0kvjxXjT_UPQZQ6sy8ixcwut8asDM2IDVEss/1" - ); - leaderboard = {}; - projects = projects.data; - - for (let m = 0; m < projects.length; m++) { - let projectLink = projects[m].project_link; - let [repoOwner, repoName] = projectLink.split("/").slice(-2); - console.log(`${repoOwner}/${repoName}`); - if ("GSSoC24/Postman-Challenge" == `${repoOwner}/${repoName}`) { - await analyeseData( - "2024-10-01", - "2024-11-01", - repoOwner, - repoName, - leaderboard - ); + if (isGenerating) { + console.log("OS Leaderboard generation is already in progress. Skipping..."); + return; + } + isGenerating = true; - await analyeseData( - "2024-11-02", - "2024-11-10T18:59:59Z", - repoOwner, - repoName, - leaderboard - ); - } else { - await analyeseData( - "2024-10-01", - "2024-11-10T18:59:59Z", - repoOwner, - repoName, - leaderboard - ); - } + try { + console.log("Starting Recode OS leaderboard generation..."); + + // 1. Fetch public organization repositories + const repos = await fetchAllRepositories(); + console.log(`Discovered ${repos.length} repositories under recodehive organization.`); - console.log("Completed " + (m + 1) + " of " + projects.length); - await timer(2000); - } + const activeRepos = repos.filter((r) => !r.isArchived); + console.log(`Active repositories to scrape: ${activeRepos.length}`); - let leaderboardArray = Object.keys(leaderboard).map( - (key) => leaderboard[key] - ); - leaderboardArray.sort((a, b) => b.score - a.score); - - let json = { - leaderboard: leaderboardArray, - success: true, - updatedAt: +new Date(), - generated: true, - updatedTimestring: - new Date().toLocaleString() + - " No New PRs merged after 10th November 7:00p.m are counted", - streakData: leaderboardArray.map((user) => ({ - login: user?.login, - streak: user.streak, - })), - }; - - fs.truncate("leaderboard.json", 0, function () { - console.log("done"); - }); - - fs.writeFile( - "leaderboard.json", - JSON.stringify(json), - "utf8", - function (err) { - if (err) throw err; - console.log("leaderboard.json was updated"); + // Sum stargazers and forks + let totalStars = 0; + let totalForks = 0; + activeRepos.forEach((repo) => { + totalStars += repo.stargazerCount || 0; + totalForks += repo.forkCount || 0; + }); + + const leaderboard = {}; + + // 2. Fetch merged PRs for each active repository + for (let m = 0; m < activeRepos.length; m++) { + const repo = activeRepos[m]; + console.log(`Scraping repo [${m + 1}/${activeRepos.length}]: ${repo.name}...`); + + let hasNextPage = true; + let cursor = null; + let pageCount = 0; + const MAX_PAGES_PER_REPO = 20; + + while (hasNextPage && pageCount < MAX_PAGES_PER_REPO) { + const query = getGraphQLQuery("recodehive", repo.name, cursor); + const response = await fetchWithRetry(query); + + processPRData(response, leaderboard, repo.name); + + const searchData = response.data.data?.search; + if (!searchData) break; + + hasNextPage = searchData.pageInfo.hasNextPage; + cursor = searchData.pageInfo.endCursor; + pageCount++; + } + + await timer(2000); } - ); + + // 3. Post-process contributors (calculate streaks, sort details) + const contributorsArray = Object.keys(leaderboard).map((username) => { + const c = leaderboard[username]; + c.streak = calculateStreak(c._prDates); + delete c._prDates; + + c.prDetails.sort((a, b) => new Date(b.mergedAt) - new Date(a.mergedAt)); + return c; + }); + + // Sort by points descending, resolving ties with total merged PRs descending + contributorsArray.sort((a, b) => b.points - a.points || b.prs - a.prs); + + // 4. Save OS leaderboard cache file + const leaderboardPayload = { + success: true, + updatedAt: Date.now(), + lastUpdated: Date.now(), + generated: true, + contributors: contributorsArray, + leaderboard: contributorsArray // Legacy GSSoC compatibility alias + }; + + const OSFilePath = getCacheFilePath("leaderboard.json"); + await writeJsonAtomic(OSFilePath, leaderboardPayload); + console.log(`OS Leaderboard cache written atomically to ${OSFilePath}`); + + // 5. Fetch discussions count and save stats cache file + const discussionsCount = await fetchDiscussionsCount(); + const statsPayload = { + success: true, + updatedAt: Date.now(), + lastUpdated: Date.now(), + totalStars, + totalForks, + totalContributors: contributorsArray.length, + totalRepositories: repos.length, + publicRepositories: activeRepos.length, + discussionsCount + }; + + const statsFilePath = getCacheFilePath("stats.json"); + await writeJsonAtomic(statsFilePath, statsPayload); + console.log(`Stats cache written atomically to ${statsFilePath}`); + + } catch (err) { + console.error("Critical error in generateLeaderboard:", err); + } finally { + isGenerating = false; + } } module.exports.generateLeaderboard = generateLeaderboard; From 2ee45fd8cc95515af8b4772e6fb953b577d48e4b Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:39 +0530 Subject: [PATCH 3/9] Update package-lock.json --- package-lock.json | 205 ---------------------------------------------- 1 file changed, 205 deletions(-) diff --git a/package-lock.json b/package-lock.json index a0b1aa3..1b974dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,47 +13,9 @@ "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.19.2", - "graphql-request": "^7.1.0", "node-schedule": "^2.1.1" } }, - "node_modules/@graphql-typed-document-node/core": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", - "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", - "license": "MIT", - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@molt/command": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@molt/command/-/command-0.9.0.tgz", - "integrity": "sha512-1JI8dAlpqlZoXyKWVQggX7geFNPxBpocHIXQCsnxDjKy+3WX4SGyZVJXuLlqRRrX7FmQCuuMAfx642ovXmPA9g==", - "license": "MIT", - "dependencies": { - "@molt/types": "0.2.0", - "alge": "0.8.1", - "chalk": "^5.3.0", - "lodash.camelcase": "^4.3.0", - "lodash.snakecase": "^4.1.1", - "readline-sync": "^1.4.10", - "string-length": "^6.0.0", - "strip-ansi": "^7.1.0", - "ts-toolbelt": "^9.6.0", - "type-fest": "^4.3.1", - "zod": "^3.22.2" - } - }, - "node_modules/@molt/types": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@molt/types/-/types-0.2.0.tgz", - "integrity": "sha512-p6ChnEZDGjg9PYPec9BK6Yp5/DdSrYQvXTBAtgrnqX6N36cZy37ql1c8Tc5LclfIYBNG7EZp8NBcRTYJwyi84g==", - "license": "MIT", - "dependencies": { - "ts-toolbelt": "^9.6.0" - } - }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", @@ -66,30 +28,6 @@ "node": ">= 0.6" } }, - "node_modules/alge": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/alge/-/alge-0.8.1.tgz", - "integrity": "sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==", - "license": "MIT", - "dependencies": { - "lodash.ismatch": "^4.4.0", - "remeda": "^1.0.0", - "ts-toolbelt": "^9.6.0", - "zod": "^3.17.3" - } - }, - "node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", @@ -159,18 +97,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -485,47 +411,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graphql": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", - "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" - } - }, - "node_modules/graphql-request": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-7.1.0.tgz", - "integrity": "sha512-Ouu/lYVFhARS1aXeZoVJWnGT6grFJXTLwXJuK4mUGGRo0EUk1JkyYp43mdGmRgUVezpRm6V5Sq3t8jBDQcajng==", - "license": "MIT", - "dependencies": { - "@graphql-typed-document-node/core": "^3.2.0", - "@molt/command": "^0.9.0", - "zod": "^3.23.8" - }, - "bin": { - "graffle": "build/cli/generate.js" - }, - "peerDependencies": { - "@dprint/formatter": "^0.3.0", - "@dprint/typescript": "^0.91.1", - "dprint": "^0.46.2", - "graphql": "14 - 16" - }, - "peerDependenciesMeta": { - "@dprint/formatter": { - "optional": true - }, - "@dprint/typescript": { - "optional": true - }, - "dprint": { - "optional": true - } - } - }, "node_modules/has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", @@ -609,24 +494,6 @@ "node": ">= 0.10" } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "license": "MIT" - }, - "node_modules/lodash.ismatch": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", - "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", - "license": "MIT" - }, - "node_modules/lodash.snakecase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", - "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", - "license": "MIT" - }, "node_modules/long-timeout": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz", @@ -810,21 +677,6 @@ "node": ">= 0.8" } }, - "node_modules/readline-sync": { - "version": "1.4.10", - "resolved": "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz", - "integrity": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==", - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/remeda": { - "version": "1.61.0", - "resolved": "https://registry.npmjs.org/remeda/-/remeda-1.61.0.tgz", - "integrity": "sha512-caKfSz9rDeSKBQQnlJnVW3mbVdFgxgGWQKq1XlFokqjf+hQD5gxutLGTTY2A/x24UxVyJe9gH5fAkFI63ULw4A==", - "license": "MIT" - }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -942,36 +794,6 @@ "node": ">= 0.8" } }, - "node_modules/string-length": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-6.0.0.tgz", - "integrity": "sha512-1U361pxZHEQ+FeSjzqRpV+cu2vTzYeWeafXFLykiFlv4Vc0n3njgU8HrMbyik5uwm77naWMuVG8fhEF+Ovb1Kg==", - "license": "MIT", - "dependencies": { - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -980,24 +802,6 @@ "node": ">=0.6" } }, - "node_modules/ts-toolbelt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz", - "integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==", - "license": "Apache-2.0" - }, - "node_modules/type-fest": { - "version": "4.26.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.26.1.tgz", - "integrity": "sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -1033,15 +837,6 @@ "engines": { "node": ">= 0.8" } - }, - "node_modules/zod": { - "version": "3.23.8", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", - "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } } } } From d500ca17a64b096904e3e33b24b95799c6bf6008 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:44 +0530 Subject: [PATCH 4/9] Update server.js --- server.js | 99 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 42 deletions(-) diff --git a/server.js b/server.js index a243d74..f8789cc 100644 --- a/server.js +++ b/server.js @@ -12,56 +12,71 @@ const port = process.env.PORT || 5000; app.use(express.json()); app.use(cors()); -generateLeaderboard(); -// updateLeaderboardJob(); -// generateCALeaderboard(); -// updateCALeaderboardJob(); -let default_json = { - leaderboard: [], - success: true, - updatedAt: null, - generated: false, -}; -fs.writeFile( - "leaderboard.json", - JSON.stringify(default_json), - "utf8", - function (err) { - if (err) throw err; - console.log("leaderboard.json was reset"); - } -); -// fs.writeFile( -// "caLeaderboard.json", -// JSON.stringify(default_json), -// "utf8", -// function (err) { -// if (err) throw err; -// console.log("caLeaderboard.json was reset"); -// } -// ); +// Import cache helper and path utilities +const { + getCacheFilePath, + ensureCacheFiles, + readJsonFile, + DEFAULT_LEADERBOARD, + DEFAULT_STATS, + DEFAULT_CA_LEADERBOARD +} = require("./utils/cacheHelper"); +const path = require("path"); + +// Ensure cache files exist on startup +ensureCacheFiles() + .then(() => { + // Trigger initial background leaderboard generation + generateLeaderboard(); + updateLeaderboardJob(); + generateCALeaderboard(); + updateCALeaderboardJob(); + }) + .catch((err) => { + console.error("Failed to initialize cache files on startup:", err); + }); app.get("/", (req, res) => { res.send("Hello World"); }); +// Helper function to safely serve JSON cache files with fallback/error handling +async function serveCacheFile(res, fileName, defaultData) { + const filePath = getCacheFilePath(fileName); + try { + const data = await readJsonFile(filePath); + res.status(200).json(data); + } catch (err) { + console.error(`Error serving ${fileName}:`, err); + // Return standard error response matching the expected JSON structure + res.status(500).json({ + ...defaultData, + success: false, + error: "Internal cache file error: " + err.message + }); + } +} + +// API Routes +app.get("/api/leaderboard", (req, res) => { + serveCacheFile(res, "leaderboard.json", DEFAULT_LEADERBOARD); +}); + +app.get("/api/stats", (req, res) => { + serveCacheFile(res, "stats.json", DEFAULT_STATS); +}); + +app.get("/api/ca-leaderboard", (req, res) => { + serveCacheFile(res, "caLeaderboard.json", DEFAULT_CA_LEADERBOARD); +}); + +// Legacy backward compatibility routes app.get("/OSLeaderboard", (req, res) => { - console.log("got the request"); - fs.readFile("leaderboard.json", "utf8", function (err, data) { - if (err) throw err; - console.log("sending response"); - let obj = JSON.parse(data); - res.send(obj); - }); + serveCacheFile(res, "leaderboard.json", DEFAULT_LEADERBOARD); }); + app.get("/CALeaderboard", (req, res) => { - console.log("got the request"); - fs.readFile("caLeaderboard.json", "utf8", function (err, data) { - if (err) throw err; - console.log("sending response"); - let obj = JSON.parse(data); - res.send(obj); - }); + serveCacheFile(res, "caLeaderboard.json", DEFAULT_CA_LEADERBOARD); }); app.listen(port, "0.0.0.0", () => { From 69064e40c51d27ddfafe6220da9c40db4d15de07 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:49 +0530 Subject: [PATCH 5/9] Update leaderboard.json --- leaderboard.json | 56959 +-------------------------------------------- 1 file changed, 54 insertions(+), 56905 deletions(-) diff --git a/leaderboard.json b/leaderboard.json index 0505c9b..e9c654e 100644 --- a/leaderboard.json +++ b/leaderboard.json @@ -1,56913 +1,62 @@ { - "leaderboard": [ - { - "avatar_url": "https://avatars.githubusercontent.com/u/105449260?u=26edb664e2d440c23535794750e63939c2b0b311&v=4", - "login": "shubhagarwal1", - "url": "https://github.com/shubhagarwal1", - "score": 4960, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/12", - "https://github.com/ajay-dhangar/algo/pull/55", - "https://github.com/ajaynegi45/LibraryMan-API/pull/50", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/300", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/299", - "https://github.com/VesperAkshay/qr-code-generator/pull/155", - "https://github.com/VesperAkshay/qr-code-generator/pull/52", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/79", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/25", - "https://github.com/ankit071105/Ticket-Booking/pull/526", - "https://github.com/anuragverma108/SwapReads/pull/3809", - "https://github.com/vishanurag/Canvas-Editor/pull/353", - "https://github.com/arjunatapadkar/codeteria/pull/221", - "https://github.com/ayush-that/FinVeda/pull/2577", - "https://github.com/ayush-that/FinVeda/pull/1476", - "https://github.com/Devamani11D/salt-app-kickstart/pull/61", - "https://github.com/GarimaSingh0109/WasteManagment/pull/403", - "https://github.com/GarimaSingh0109/WasteManagment/pull/402", - "https://github.com/Harshdev098/Research-Nexas/pull/179", - "https://github.com/Harshdev098/Research-Nexas/pull/25", - "https://github.com/Bitbox-Connect/Bitbox/pull/247", - "https://github.com/Bitbox-Connect/Bitbox/pull/246", - "https://github.com/jahnvisahni31/DesignDeck/pull/13", - "https://github.com/jahnvisahni31/DesignDeck/pull/8", - "https://github.com/Open-Code-Crafters/FitFlex/pull/407", - "https://github.com/kom-senapati/bot-verse/pull/192", - "https://github.com/kartikayasijaa/talk-trove/pull/135", - "https://github.com/kartikayasijaa/talk-trove/pull/122", - "https://github.com/kartikayasijaa/talk-trove/pull/117", - "https://github.com/kartikayasijaa/talk-trove/pull/106", - "https://github.com/kartikayasijaa/talk-trove/pull/105", - "https://github.com/kartikayasijaa/talk-trove/pull/103", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/481", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/524", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/383", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/382", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/381", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/380", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/379", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/327", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/290", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/269", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/238", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/218", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/201", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/189", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/188", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/187", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/151", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/137", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/124", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/115", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/114", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/113", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/107", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/92", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/90", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/89", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/87", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/79", - "https://github.com/Megh2005/Med-o-Next/pull/173", - "https://github.com/c0sm0void/ReVot/pull/42", - "https://github.com/MitulSonagara/truth-tunnel/pull/241", - "https://github.com/MitulSonagara/truth-tunnel/pull/240", - "https://github.com/MitulSonagara/truth-tunnel/pull/191", - "https://github.com/MitulSonagara/truth-tunnel/pull/174", - "https://github.com/MitulSonagara/truth-tunnel/pull/173", - "https://github.com/MitulSonagara/truth-tunnel/pull/172", - "https://github.com/MitulSonagara/truth-tunnel/pull/117", - "https://github.com/MitulSonagara/truth-tunnel/pull/116", - "https://github.com/MitulSonagara/truth-tunnel/pull/115", - "https://github.com/MitulSonagara/truth-tunnel/pull/114", - "https://github.com/MitulSonagara/truth-tunnel/pull/113", - "https://github.com/TherkuTech/tturl/pull/104", - "https://github.com/ombhojane/explainableai/pull/29", - "https://github.com/AlgoGenesis/C/pull/566", - "https://github.com/AlgoGenesis/C/pull/565", - "https://github.com/AlgoGenesis/C/pull/157", - "https://github.com/rahulsainlll/git-trace/pull/126", - "https://github.com/gupta-ritik/ExpenseTracker/pull/60", - "https://github.com/Git21221/form-snippet/pull/29", - "https://github.com/Git21221/form-snippet/pull/28", - "https://github.com/Git21221/form-snippet/pull/27", - "https://github.com/Git21221/form-snippet/pull/26", - "https://github.com/Git21221/form-snippet/pull/15", - "https://github.com/Git21221/form-snippet/pull/10", - "https://github.com/recodehive/awesome-github-profiles/pull/1094", - "https://github.com/recodehive/awesome-github-profiles/pull/1052", - "https://github.com/recodehive/awesome-github-profiles/pull/1030", - "https://github.com/recodehive/awesome-github-profiles/pull/991", - "https://github.com/recodehive/Scrape-ML/pull/286", - "https://github.com/recodehive/Scrape-ML/pull/277", - "https://github.com/recodehive/Scrape-ML/pull/274", - "https://github.com/recodehive/Scrape-ML/pull/273", - "https://github.com/recodehive/Scrape-ML/pull/270", - "https://github.com/recodehive/Scrape-ML/pull/266", - "https://github.com/recodehive/Scrape-ML/pull/263", - "https://github.com/recodehive/Scrape-ML/pull/256", - "https://github.com/recodehive/Scrape-ML/pull/255", - "https://github.com/recodehive/Scrape-ML/pull/251", - "https://github.com/SaranshBangar/Daneizo/pull/74", - "https://github.com/daccotta-org/daccotta/pull/252", - "https://github.com/daccotta-org/daccotta/pull/247", - "https://github.com/daccotta-org/daccotta/pull/246", - "https://github.com/daccotta-org/daccotta/pull/224", - "https://github.com/daccotta-org/daccotta/pull/219", - "https://github.com/daccotta-org/daccotta/pull/210", - "https://github.com/daccotta-org/daccotta/pull/193", - "https://github.com/daccotta-org/daccotta/pull/181", - "https://github.com/daccotta-org/daccotta/pull/180", - "https://github.com/daccotta-org/daccotta/pull/179", - "https://github.com/daccotta-org/daccotta/pull/171", - "https://github.com/daccotta-org/daccotta/pull/158", - "https://github.com/daccotta-org/daccotta/pull/157", - "https://github.com/daccotta-org/daccotta/pull/155", - "https://github.com/daccotta-org/daccotta/pull/154", - "https://github.com/daccotta-org/daccotta/pull/151", - "https://github.com/daccotta-org/daccotta/pull/147", - "https://github.com/daccotta-org/daccotta/pull/145", - "https://github.com/daccotta-org/daccotta/pull/144", - "https://github.com/daccotta-org/daccotta/pull/130", - "https://github.com/daccotta-org/daccotta/pull/117", - "https://github.com/daccotta-org/daccotta/pull/116", - "https://github.com/daccotta-org/daccotta/pull/114", - "https://github.com/daccotta-org/daccotta/pull/106", - "https://github.com/daccotta-org/daccotta/pull/100", - "https://github.com/daccotta-org/daccotta/pull/98", - "https://github.com/daccotta-org/daccotta/pull/83", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/11", - "https://github.com/soham0005/ElectroKart/pull/181", - "https://github.com/swarooppatilx/scruter/pull/233", - "https://github.com/tanishaness/SPROCTOR/pull/63", - "https://github.com/TejasNasre/nexmeet/pull/219", - "https://github.com/TejasNasre/nexmeet/pull/201", - "https://github.com/TejasNasre/nexmeet/pull/196", - "https://github.com/TejasNasre/nexmeet/pull/176", - "https://github.com/TejasNasre/nexmeet/pull/152", - "https://github.com/VigneshDevHub/CampX/pull/95", - "https://github.com/VigneshDevHub/CampX/pull/86", - "https://github.com/VigneshDevHub/CampX/pull/67", - "https://github.com/Vin205/Enyanjyoti/pull/246", - "https://github.com/Vin205/Enyanjyoti/pull/245", - "https://github.com/Vin205/Enyanjyoti/pull/244", - "https://github.com/Vin205/Enyanjyoti/pull/222", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1027", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/993", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/939", - "https://github.com/yagnik2411/Quiz-Genius/pull/67", - "https://github.com/Yashgabani845/hiring-portal/pull/240", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/99", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/98", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/333", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/332", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/330", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/328", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/326", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/325", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/277", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/276", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/263", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/262", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/260", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/257", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/256", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/255", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/251", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/214", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/211", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/210", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/208", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/204", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/203", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/201", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/191", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/162", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/160", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/159", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/130", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/129", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/128", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/127", - "https://github.com/4darsh-Dev/DecenTrade/pull/107", - "https://github.com/4darsh-Dev/DecenTrade/pull/106", - "https://github.com/UTSAVS26/PyVerse/pull/608", - "https://github.com/GSSoC24/Postman-Challenge/pull/1829" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109452033?u=a96c6c227487e2ec7889081819ac71113ed88909&v=4", - "login": "Shariq2003", - "url": "https://github.com/Shariq2003", - "score": 4215, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/363", - "https://github.com/ajay-dhangar/algo/pull/360", - "https://github.com/ajay-dhangar/algo/pull/194", - "https://github.com/ajay-dhangar/algo/pull/188", - "https://github.com/ajay-dhangar/algo/pull/175", - "https://github.com/ajay-dhangar/algo/pull/172", - "https://github.com/ajay-dhangar/algo/pull/165", - "https://github.com/ajay-dhangar/algo/pull/138", - "https://github.com/ajay-dhangar/algo/pull/126", - "https://github.com/ajay-dhangar/algo/pull/118", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/232", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/134", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/101", - "https://github.com/yatulearn/yatulearn/pull/245", - "https://github.com/yatulearn/yatulearn/pull/242", - "https://github.com/yatulearn/yatulearn/pull/240", - "https://github.com/yatulearn/yatulearn/pull/169", - "https://github.com/yatulearn/yatulearn/pull/120", - "https://github.com/yatulearn/yatulearn/pull/79", - "https://github.com/yatulearn/yatulearn/pull/69", - "https://github.com/anmode/grabtern-frontend/pull/873", - "https://github.com/ANSHIKA-26/WordWise/pull/407", - "https://github.com/Ramsey99/Admin_Dashboard/pull/18", - "https://github.com/codeaashu/DevDisplay/pull/251", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/943", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/942", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/880", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/28", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/420", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/56", - "https://github.com/dohinaf/basic-icecream-website/pull/286", - "https://github.com/Bitbox-Connect/Bitbox/pull/164", - "https://github.com/Bitbox-Connect/Bitbox/pull/163", - "https://github.com/Bitbox-Connect/Bitbox/pull/144", - "https://github.com/Bitbox-Connect/Bitbox/pull/142", - "https://github.com/Bitbox-Connect/Bitbox/pull/133", - "https://github.com/jahnvisahni31/DesignDeck/pull/143", - "https://github.com/jahnvisahni31/DesignDeck/pull/141", - "https://github.com/jahnvisahni31/DesignDeck/pull/140", - "https://github.com/Open-Code-Crafters/FitFlex/pull/368", - "https://github.com/Open-Code-Crafters/FitFlex/pull/329", - "https://github.com/Open-Code-Crafters/FitFlex/pull/232", - "https://github.com/Open-Code-Crafters/FitFlex/pull/177", - "https://github.com/Open-Code-Crafters/FitFlex/pull/176", - "https://github.com/Open-Code-Crafters/FitFlex/pull/173", - "https://github.com/Open-Code-Crafters/FitFlex/pull/169", - "https://github.com/Open-Code-Crafters/FitFlex/pull/164", - "https://github.com/Open-Code-Crafters/FitFlex/pull/30", - "https://github.com/Open-Code-Crafters/FitFlex/pull/29", - "https://github.com/Open-Code-Crafters/FitFlex/pull/20", - "https://github.com/kartikayasijaa/talk-trove/pull/20", - "https://github.com/Kritika30032002/Top_Secrets/pull/223", - "https://github.com/Luson045/medi-connect/pull/192", - "https://github.com/mansiruhil13/Bobble-AI/pull/806", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/528", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/477", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/476", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/340", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/339", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/338", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/158", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/157", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/156", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/113", - "https://github.com/c0sm0void/ReVot/pull/28", - "https://github.com/MitulSonagara/truth-tunnel/pull/25", - "https://github.com/AlgoGenesis/C/pull/355", - "https://github.com/AlgoGenesis/C/pull/353", - "https://github.com/AlgoGenesis/C/pull/183", - "https://github.com/AlgoGenesis/C/pull/133", - "https://github.com/AlgoGenesis/C/pull/101", - "https://github.com/AlgoGenesis/C/pull/12", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/12", - "https://github.com/prrockzed/nvimDev/pull/7", - "https://github.com/iamrahulmahato/master-web-development/pull/1024", - "https://github.com/iamrahulmahato/master-web-development/pull/1020", - "https://github.com/iamrahulmahato/master-web-development/pull/1019", - "https://github.com/iamrahulmahato/master-web-development/pull/1017", - "https://github.com/Rakshit-gen/Slanine/pull/64", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/23", - "https://github.com/samyakmaitre/eventmint/pull/77", - "https://github.com/recodehive/awesome-github-profiles/pull/950", - "https://github.com/recodehive/awesome-github-profiles/pull/898", - "https://github.com/recodehive/awesome-github-profiles/pull/893", - "https://github.com/recodehive/awesome-github-profiles/pull/848", - "https://github.com/recodehive/awesome-github-profiles/pull/842", - "https://github.com/recodehive/awesome-github-profiles/pull/841", - "https://github.com/recodehive/awesome-github-profiles/pull/832", - "https://github.com/recodehive/awesome-github-profiles/pull/809", - "https://github.com/recodehive/awesome-github-profiles/pull/784", - "https://github.com/recodehive/awesome-github-profiles/pull/776", - "https://github.com/recodehive/awesome-github-profiles/pull/774", - "https://github.com/recodehive/machine-learning-repos/pull/1478", - "https://github.com/recodehive/machine-learning-repos/pull/1364", - "https://github.com/recodehive/machine-learning-repos/pull/1363", - "https://github.com/recodehive/machine-learning-repos/pull/1362", - "https://github.com/recodehive/machine-learning-repos/pull/1361", - "https://github.com/SaranshBangar/Daneizo/pull/108", - "https://github.com/SaranshBangar/Daneizo/pull/29", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/16", - "https://github.com/subhadeeproy3902/trailgo/pull/108", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/72", - "https://github.com/swarooppatilx/scruter/pull/338", - "https://github.com/swarooppatilx/scruter/pull/337", - "https://github.com/swarooppatilx/scruter/pull/336", - "https://github.com/swarooppatilx/scruter/pull/334", - "https://github.com/swarooppatilx/scruter/pull/332", - "https://github.com/TejasNasre/nexmeet/pull/224", - "https://github.com/UTSAVS26/PySnippets/pull/106", - "https://github.com/UTSAVS26/PySnippets/pull/104", - "https://github.com/UTSAVS26/PySnippets/pull/103", - "https://github.com/UTSAVS26/PySnippets/pull/27", - "https://github.com/sharmavikas4/MERN_BLOG/pull/22", - "https://github.com/Vimall03/Alimento/pull/45", - "https://github.com/Vin205/Enyanjyoti/pull/60", - "https://github.com/yagnik2411/Quiz-Genius/pull/44", - "https://github.com/Scribbie-Notes/notes-app/pull/110", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/57", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/37", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/353", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/349", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/348", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/342", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/334", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/295", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/294", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/293", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/278", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/275", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/266", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/259", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/258", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/241", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/238", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/209", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/205", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/202", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/184", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/181", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/113", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/110", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/108", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/91", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/89", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/88", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/73", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/71", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/70", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/69", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/68", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/64", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/63", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/52", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/35", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/60", - "https://github.com/apu52/METAVERSE/pull/1289", - "https://github.com/UTSAVS26/PyVerse/pull/402", - "https://github.com/UTSAVS26/PyVerse/pull/346", - "https://github.com/UTSAVS26/PyVerse/pull/343", - "https://github.com/UTSAVS26/PyVerse/pull/243", - "https://github.com/UTSAVS26/PyVerse/pull/239", - "https://github.com/UTSAVS26/PyVerse/pull/220", - "https://github.com/UTSAVS26/PyVerse/pull/219", - "https://github.com/vanshchauhan21/CryptoTracker/pull/34", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1160", - "https://github.com/GSSoC24/Postman-Challenge/pull/2174" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 32 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127668005?u=4c0e9f77552fbd4bce6132d9869644f3f6c81cce&v=4", - "login": "inkerton", - "url": "https://github.com/inkerton", - "score": 4170, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1338", - "https://github.com/ajay-dhangar/algo/pull/1337", - "https://github.com/ajay-dhangar/algo/pull/1233", - "https://github.com/ajay-dhangar/algo/pull/1232", - "https://github.com/ajay-dhangar/algo/pull/1228", - "https://github.com/ajay-dhangar/algo/pull/1226", - "https://github.com/ajay-dhangar/algo/pull/1143", - "https://github.com/ajay-dhangar/algo/pull/1142", - "https://github.com/ajay-dhangar/algo/pull/1140", - "https://github.com/ajay-dhangar/algo/pull/1139", - "https://github.com/ajay-dhangar/algo/pull/1138", - "https://github.com/ajay-dhangar/algo/pull/1137", - "https://github.com/ajay-dhangar/algo/pull/1136", - "https://github.com/ajay-dhangar/algo/pull/1110", - "https://github.com/ajay-dhangar/algo/pull/1109", - "https://github.com/ajay-dhangar/algo/pull/1108", - "https://github.com/ajay-dhangar/algo/pull/819", - "https://github.com/ajay-dhangar/algo/pull/817", - "https://github.com/ajay-dhangar/algo/pull/815", - "https://github.com/ajay-dhangar/algo/pull/677", - "https://github.com/anuj123upadhyay/MegaBlog/pull/336", - "https://github.com/anuj123upadhyay/MegaBlog/pull/334", - "https://github.com/anuj123upadhyay/MegaBlog/pull/271", - "https://github.com/anuj123upadhyay/MegaBlog/pull/269", - "https://github.com/anuj123upadhyay/MegaBlog/pull/267", - "https://github.com/anuj123upadhyay/MegaBlog/pull/265", - "https://github.com/anuj123upadhyay/MegaBlog/pull/240", - "https://github.com/anuj123upadhyay/MegaBlog/pull/239", - "https://github.com/anuj123upadhyay/MegaBlog/pull/238", - "https://github.com/anuj123upadhyay/MegaBlog/pull/210", - "https://github.com/anuj123upadhyay/MegaBlog/pull/209", - "https://github.com/anuj123upadhyay/MegaBlog/pull/207", - "https://github.com/anuj123upadhyay/MegaBlog/pull/205", - "https://github.com/anuj123upadhyay/MegaBlog/pull/203", - "https://github.com/anuj123upadhyay/MegaBlog/pull/200", - "https://github.com/anuj123upadhyay/MegaBlog/pull/186", - "https://github.com/anuj123upadhyay/MegaBlog/pull/184", - "https://github.com/anuj123upadhyay/MegaBlog/pull/181", - "https://github.com/anuj123upadhyay/MegaBlog/pull/180", - "https://github.com/anuj123upadhyay/MegaBlog/pull/177", - "https://github.com/anuj123upadhyay/MegaBlog/pull/175", - "https://github.com/anuj123upadhyay/MegaBlog/pull/171", - "https://github.com/anuj123upadhyay/MegaBlog/pull/147", - "https://github.com/anuj123upadhyay/MegaBlog/pull/145", - "https://github.com/anuj123upadhyay/MegaBlog/pull/139", - "https://github.com/anuj123upadhyay/MegaBlog/pull/138", - "https://github.com/anuj123upadhyay/MegaBlog/pull/127", - "https://github.com/anuj123upadhyay/MegaBlog/pull/124", - "https://github.com/anuj123upadhyay/MegaBlog/pull/112", - "https://github.com/anuj123upadhyay/MegaBlog/pull/111", - "https://github.com/anuj123upadhyay/MegaBlog/pull/109", - "https://github.com/anuj123upadhyay/MegaBlog/pull/108", - "https://github.com/anuj123upadhyay/MegaBlog/pull/91", - "https://github.com/anuj123upadhyay/MegaBlog/pull/56", - "https://github.com/anuj123upadhyay/MegaBlog/pull/54", - "https://github.com/anuj123upadhyay/MegaBlog/pull/29", - "https://github.com/anuj123upadhyay/MegaBlog/pull/13", - "https://github.com/arpittiwari24/YourNextSaas.online/pull/16", - "https://github.com/arpittiwari24/YourNextSaas.online/pull/10", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/34", - "https://github.com/TejasNasre/nexmeet/pull/120", - "https://github.com/TenzDelek/DearDiary/pull/203", - "https://github.com/TenzDelek/DearDiary/pull/167", - "https://github.com/TenzDelek/DearDiary/pull/153", - "https://github.com/TenzDelek/DearDiary/pull/97", - "https://github.com/TenzDelek/DearDiary/pull/93", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1122", - "https://github.com/notsoocool/codecache/pull/107", - "https://github.com/notsoocool/codecache/pull/77", - "https://github.com/notsoocool/codecache/pull/72", - "https://github.com/notsoocool/codecache/pull/71", - "https://github.com/notsoocool/codecache/pull/31", - "https://github.com/Yashgabani845/hiring-portal/pull/271", - "https://github.com/Yashgabani845/hiring-portal/pull/270", - "https://github.com/Yashgabani845/hiring-portal/pull/262", - "https://github.com/Yashgabani845/hiring-portal/pull/180", - "https://github.com/Yashgabani845/hiring-portal/pull/163", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/331", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/327", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/324", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/308", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/307", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/306", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/289", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/249", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/240", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/239", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/227", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/225", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/168", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/145", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/144", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/142", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/139", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/106", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/105", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/104", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/100", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/99", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/98", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/76", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/60", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/54", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/51", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/30", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/29", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/19", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/16", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/14", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/12", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/11", - "https://github.com/UTSAVS26/PyVerse/pull/577", - "https://github.com/UTSAVS26/PyVerse/pull/398", - "https://github.com/UTSAVS26/PyVerse/pull/396", - "https://github.com/UTSAVS26/PyVerse/pull/395", - "https://github.com/GSSoC24/Postman-Challenge/pull/2481" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 11 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112249407?u=90ea6060ab3c088671bbd0e77e19b3cc330e0640&v=4", - "login": "ShivanshPlays", - "url": "https://github.com/ShivanshPlays", - "score": 4150, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/331", - "https://github.com/anuj123upadhyay/MegaBlog/pull/326", - "https://github.com/mdazfar2/Ezyshop/pull/1036", - "https://github.com/mdazfar2/Ezyshop/pull/1033", - "https://github.com/mdazfar2/Ezyshop/pull/1027", - "https://github.com/mdazfar2/Ezyshop/pull/1013", - "https://github.com/mdazfar2/Ezyshop/pull/1007", - "https://github.com/mdazfar2/Ezyshop/pull/994", - "https://github.com/mdazfar2/Ezyshop/pull/992", - "https://github.com/mdazfar2/Ezyshop/pull/985", - "https://github.com/mdazfar2/Ezyshop/pull/982", - "https://github.com/mdazfar2/Ezyshop/pull/974", - "https://github.com/mdazfar2/Ezyshop/pull/969", - "https://github.com/mdazfar2/Ezyshop/pull/968", - "https://github.com/mdazfar2/Ezyshop/pull/965", - "https://github.com/mdazfar2/Ezyshop/pull/954", - "https://github.com/mdazfar2/Ezyshop/pull/943", - "https://github.com/mdazfar2/Ezyshop/pull/935", - "https://github.com/mdazfar2/Ezyshop/pull/925", - "https://github.com/mdazfar2/Ezyshop/pull/924", - "https://github.com/mdazfar2/Ezyshop/pull/923", - "https://github.com/mdazfar2/Ezyshop/pull/919", - "https://github.com/mdazfar2/Ezyshop/pull/898", - "https://github.com/mdazfar2/Ezyshop/pull/886", - "https://github.com/mdazfar2/Ezyshop/pull/862", - "https://github.com/mdazfar2/Ezyshop/pull/861", - "https://github.com/mdazfar2/Ezyshop/pull/856", - "https://github.com/mdazfar2/Ezyshop/pull/850", - "https://github.com/mdazfar2/Ezyshop/pull/845", - "https://github.com/mdazfar2/Ezyshop/pull/844", - "https://github.com/mdazfar2/Ezyshop/pull/843", - "https://github.com/mdazfar2/Ezyshop/pull/842", - "https://github.com/mdazfar2/Ezyshop/pull/833", - "https://github.com/mdazfar2/Ezyshop/pull/832", - "https://github.com/mdazfar2/Ezyshop/pull/802", - "https://github.com/mdazfar2/Ezyshop/pull/801", - "https://github.com/mdazfar2/Ezyshop/pull/800", - "https://github.com/mdazfar2/Ezyshop/pull/799", - "https://github.com/mdazfar2/Ezyshop/pull/798", - "https://github.com/mdazfar2/Ezyshop/pull/789", - "https://github.com/mdazfar2/Ezyshop/pull/772", - "https://github.com/mdazfar2/Ezyshop/pull/771", - "https://github.com/mdazfar2/Ezyshop/pull/770", - "https://github.com/mdazfar2/Ezyshop/pull/749", - "https://github.com/mdazfar2/Ezyshop/pull/748", - "https://github.com/mdazfar2/Ezyshop/pull/747", - "https://github.com/mdazfar2/Ezyshop/pull/736", - "https://github.com/mdazfar2/Ezyshop/pull/727", - "https://github.com/mdazfar2/Ezyshop/pull/717", - "https://github.com/mdazfar2/Ezyshop/pull/713", - "https://github.com/mdazfar2/Ezyshop/pull/708", - "https://github.com/mdazfar2/Ezyshop/pull/703", - "https://github.com/mdazfar2/Ezyshop/pull/702", - "https://github.com/mdazfar2/Ezyshop/pull/690", - "https://github.com/mdazfar2/Ezyshop/pull/662", - "https://github.com/mdazfar2/Ezyshop/pull/658", - "https://github.com/mdazfar2/Ezyshop/pull/641", - "https://github.com/mdazfar2/Ezyshop/pull/639", - "https://github.com/mdazfar2/Ezyshop/pull/625", - "https://github.com/mdazfar2/Ezyshop/pull/609", - "https://github.com/mdazfar2/Ezyshop/pull/592", - "https://github.com/mdazfar2/Ezyshop/pull/591", - "https://github.com/mdazfar2/Ezyshop/pull/583", - "https://github.com/mdazfar2/Ezyshop/pull/574", - "https://github.com/mdazfar2/Ezyshop/pull/532", - "https://github.com/mdazfar2/Ezyshop/pull/523", - "https://github.com/mdazfar2/Ezyshop/pull/517", - "https://github.com/mdazfar2/Ezyshop/pull/515", - "https://github.com/mdazfar2/Ezyshop/pull/480", - "https://github.com/mdazfar2/Ezyshop/pull/478", - "https://github.com/mdazfar2/Ezyshop/pull/477", - "https://github.com/mdazfar2/Ezyshop/pull/475", - "https://github.com/mdazfar2/Ezyshop/pull/468", - "https://github.com/mdazfar2/Ezyshop/pull/441", - "https://github.com/mdazfar2/Ezyshop/pull/439", - "https://github.com/mdazfar2/Ezyshop/pull/435", - "https://github.com/mdazfar2/Ezyshop/pull/415", - "https://github.com/mdazfar2/Ezyshop/pull/390", - "https://github.com/mdazfar2/Ezyshop/pull/352", - "https://github.com/mdazfar2/Ezyshop/pull/349", - "https://github.com/mdazfar2/HelpOps-Hub/pull/1378", - "https://github.com/Bitbox-Connect/Bitbox/pull/225", - "https://github.com/Bitbox-Connect/Bitbox/pull/207", - "https://github.com/himeshparashar/Social-Morph/pull/64", - "https://github.com/Open-Code-Crafters/FitFlex/pull/386", - "https://github.com/Open-Code-Crafters/FitFlex/pull/385", - "https://github.com/Open-Code-Crafters/FitFlex/pull/348", - "https://github.com/Open-Code-Crafters/FitFlex/pull/343", - "https://github.com/MitulSonagara/truth-tunnel/pull/259", - "https://github.com/TherkuTech/tturl/pull/30", - "https://github.com/TherkuTech/tturl/pull/12", - "https://github.com/Puskar-Roy/create-my-api/pull/37", - "https://github.com/rahulsainlll/git-trace/pull/134", - "https://github.com/rahulsainlll/git-trace/pull/133", - "https://github.com/rahulsainlll/git-trace/pull/97", - "https://github.com/rahulsainlll/git-trace/pull/54", - "https://github.com/rahulsainlll/git-trace/pull/26", - "https://github.com/Git21221/form-snippet/pull/7", - "https://github.com/recodehive/awesome-github-profiles/pull/1091", - "https://github.com/SaranshBangar/Daneizo/pull/155", - "https://github.com/SaranshBangar/Daneizo/pull/64", - "https://github.com/swarooppatilx/scruter/pull/375", - "https://github.com/swarooppatilx/scruter/pull/372", - "https://github.com/swarooppatilx/scruter/pull/348", - "https://github.com/swarooppatilx/scruter/pull/346", - "https://github.com/swarooppatilx/scruter/pull/333", - "https://github.com/swarooppatilx/scruter/pull/307", - "https://github.com/GSSoC24/Postman-Challenge/pull/2200" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 26 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76002919?u=f31f46f13a759b3f7bd1c32406fe91806ade3e0f&v=4", - "login": "IkkiOcean", - "url": "https://github.com/IkkiOcean", - "score": 4045, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/222", - "https://github.com/abhisheks008/DL-Simplified/pull/936", - "https://github.com/abhisheks008/DL-Simplified/pull/899", - "https://github.com/ajay-dhangar/algo/pull/1488", - "https://github.com/ajay-dhangar/algo/pull/1185", - "https://github.com/ajay-dhangar/algo/pull/1166", - "https://github.com/ajay-dhangar/algo/pull/685", - "https://github.com/ajay-dhangar/algo/pull/631", - "https://github.com/ajay-dhangar/algo/pull/462", - "https://github.com/ajay-dhangar/algo/pull/410", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/232", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/225", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/194", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/352", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/201", - "https://github.com/anuj123upadhyay/MegaBlog/pull/342", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/254", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/184", - "https://github.com/codeaashu/DevDisplay/pull/241", - "https://github.com/ayush-that/FinVeda/pull/2067", - "https://github.com/dhairyagothi/StationGuide/pull/443", - "https://github.com/divyansh-2005/FinNews/pull/171", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/339", - "https://github.com/Open-Code-Crafters/FitFlex/pull/332", - "https://github.com/Open-Code-Crafters/FitFlex/pull/121", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/510", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/486", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/414", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/310", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/303", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/225", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/155", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/115", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/83", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/81", - "https://github.com/Kushal997-das/Project-Guidance/pull/1499", - "https://github.com/Luson045/medi-connect/pull/318", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/737", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/727", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/725", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/719", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/715", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/706", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/702", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/644", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/630", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/609", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/603", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/593", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/580", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/569", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/568", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/566", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/556", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/546", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/539", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/532", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/498", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/484", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/439", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/413", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/328", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/323", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/319", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/262", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/221", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/214", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/179", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/148", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/128", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/367", - "https://github.com/GlobeHoppin/globe-hoppin-backend/pull/39", - "https://github.com/AlgoGenesis/C/pull/1528", - "https://github.com/AlgoGenesis/C/pull/1146", - "https://github.com/AlgoGenesis/C/pull/953", - "https://github.com/param-code/counter-app/pull/212", - "https://github.com/param-code/counter-app/pull/187", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/424", - "https://github.com/Ratnesh-Team/Rehabify/pull/113", - "https://github.com/Ratnesh-Team/Rehabify/pull/85", - "https://github.com/recodehive/machine-learning-repos/pull/1381", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/96", - "https://github.com/SaranshBangar/Daneizo/pull/144", - "https://github.com/daccotta-org/daccotta/pull/164", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/178", - "https://github.com/swarooppatilx/scruter/pull/239", - "https://github.com/Trisha-tech/OnlineBookSales/pull/404", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1026", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1011", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1001", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/959", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/913", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/741", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/685", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/670", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/645", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/592", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/516", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/185", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/179", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/172", - "https://github.com/4darsh-Dev/DecenTrade/pull/120", - "https://github.com/4darsh-Dev/DecenTrade/pull/109", - "https://github.com/UTSAVS26/PyVerse/pull/681", - "https://github.com/UTSAVS26/PyVerse/pull/460", - "https://github.com/UTSAVS26/PyVerse/pull/310", - "https://github.com/UTSAVS26/PyVerse/pull/172", - "https://github.com/UTSAVS26/PyVerse/pull/80", - "https://github.com/GSSoC24/Postman-Challenge/pull/2070" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 29 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138680328?u=7fee631b1e6962aa2852281bae91c0344a2ec476&v=4", - "login": "Sawan-Kushwah", - "url": "https://github.com/Sawan-Kushwah", - "score": 3790, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/86", - "https://github.com/jinx-vi-0/passop/pull/60", - "https://github.com/RCCTechzClub/TechzRevamp/pull/23", - "https://github.com/RCCTechzClub/TechzRevamp/pull/17", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/291", - "https://github.com/ankit071105/Ticket-Booking/pull/671", - "https://github.com/ankit071105/Ticket-Booking/pull/646", - "https://github.com/ANSHIKA-26/WordWise/pull/1608", - "https://github.com/ANSHIKA-26/WordWise/pull/1601", - "https://github.com/ANSHIKA-26/WordWise/pull/1593", - "https://github.com/ANSHIKA-26/WordWise/pull/1582", - "https://github.com/ANSHIKA-26/WordWise/pull/1557", - "https://github.com/ANSHIKA-26/WordWise/pull/1553", - "https://github.com/ANSHIKA-26/WordWise/pull/1551", - "https://github.com/ANSHIKA-26/WordWise/pull/1547", - "https://github.com/anuj123upadhyay/MegaBlog/pull/220", - "https://github.com/anuj123upadhyay/MegaBlog/pull/198", - "https://github.com/anuj123upadhyay/MegaBlog/pull/144", - "https://github.com/anuj123upadhyay/MegaBlog/pull/126", - "https://github.com/anuj123upadhyay/MegaBlog/pull/87", - "https://github.com/anuj123upadhyay/MegaBlog/pull/76", - "https://github.com/anuj123upadhyay/MegaBlog/pull/75", - "https://github.com/anuj123upadhyay/MegaBlog/pull/68", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1015", - "https://github.com/divyansh-2005/FinNews/pull/184", - "https://github.com/divyansh-2005/FinNews/pull/166", - "https://github.com/divyansh-2005/FinNews/pull/165", - "https://github.com/divyansh-2005/FinNews/pull/160", - "https://github.com/divyansh-2005/FinNews/pull/88", - "https://github.com/divyansh-2005/FinNews/pull/75", - "https://github.com/divyansh-2005/FinNews/pull/73", - "https://github.com/smilewithkhushi/BasicNative/pull/123", - "https://github.com/Bitbox-Connect/Bitbox/pull/320", - "https://github.com/Bitbox-Connect/Bitbox/pull/318", - "https://github.com/Bitbox-Connect/Bitbox/pull/314", - "https://github.com/Bitbox-Connect/Bitbox/pull/308", - "https://github.com/Bitbox-Connect/Bitbox/pull/307", - "https://github.com/Bitbox-Connect/Bitbox/pull/304", - "https://github.com/Bitbox-Connect/Bitbox/pull/303", - "https://github.com/Bitbox-Connect/Bitbox/pull/285", - "https://github.com/Bitbox-Connect/Bitbox/pull/276", - "https://github.com/Bitbox-Connect/Bitbox/pull/272", - "https://github.com/Bitbox-Connect/Bitbox/pull/261", - "https://github.com/Bitbox-Connect/Bitbox/pull/258", - "https://github.com/Bitbox-Connect/Bitbox/pull/254", - "https://github.com/Bitbox-Connect/Bitbox/pull/252", - "https://github.com/Bitbox-Connect/Bitbox/pull/249", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/326", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/302", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/294", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/264", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/254", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/248", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/245", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/238", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/168", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/155", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/154", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/141", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/100", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/99", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/98", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/73", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/65", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/63", - "https://github.com/Open-Code-Crafters/FitFlex/pull/383", - "https://github.com/Open-Code-Crafters/FitFlex/pull/372", - "https://github.com/Open-Code-Crafters/FitFlex/pull/371", - "https://github.com/Open-Code-Crafters/FitFlex/pull/320", - "https://github.com/Open-Code-Crafters/FitFlex/pull/313", - "https://github.com/Open-Code-Crafters/FitFlex/pull/299", - "https://github.com/Manishkr1007/WordWeaver/pull/109", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/324", - "https://github.com/MitulSonagara/truth-tunnel/pull/293", - "https://github.com/MitulSonagara/truth-tunnel/pull/271", - "https://github.com/rahulsainlll/git-trace/pull/150", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/351", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/334", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/153", - "https://github.com/samyakmaitre/eventmint/pull/242", - "https://github.com/samyakmaitre/eventmint/pull/169", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/126", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/105", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/91", - "https://github.com/SaranshBangar/Daneizo/pull/138", - "https://github.com/SaranshBangar/Daneizo/pull/120", - "https://github.com/SaranshBangar/Daneizo/pull/104", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/871", - "https://github.com/Yashgabani845/hiring-portal/pull/266", - "https://github.com/Yashgabani845/hiring-portal/pull/258", - "https://github.com/Yashgabani845/hiring-portal/pull/242", - "https://github.com/Yashgabani845/hiring-portal/pull/215", - "https://github.com/Yashgabani845/hiring-portal/pull/207", - "https://github.com/Yashgabani845/hiring-portal/pull/195", - "https://github.com/Yashgabani845/hiring-portal/pull/183", - "https://github.com/Yashgabani845/hiring-portal/pull/177", - "https://github.com/Yashgabani845/hiring-portal/pull/140", - "https://github.com/Yashgabani845/hiring-portal/pull/139", - "https://github.com/Yashgabani845/hiring-portal/pull/125", - "https://github.com/Yashgabani845/hiring-portal/pull/121", - "https://github.com/Yashgabani845/hiring-portal/pull/120", - "https://github.com/Yashgabani845/hiring-portal/pull/119", - "https://github.com/Yashgabani845/hiring-portal/pull/90", - "https://github.com/Yashgabani845/hiring-portal/pull/89", - "https://github.com/Yashgabani845/hiring-portal/pull/75", - "https://github.com/Yashgabani845/hiring-portal/pull/42", - "https://github.com/Yashgabani845/hiring-portal/pull/33", - "https://github.com/Yashgabani845/hiring-portal/pull/25", - "https://github.com/GSSoC24/Postman-Challenge/pull/2341" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 8 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162921603?u=dd998200c1bd46fa97ebed7b307809f9f5552bd0&v=4", - "login": "Subhajit-2023-44", - "url": "https://github.com/Subhajit-2023-44", - "score": 3655, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1086", - "https://github.com/aditya-bhaumik/Pathsphere/pull/953", - "https://github.com/aditya-bhaumik/Pathsphere/pull/682", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/578", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/546", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/493", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/488", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/451", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/386", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/241", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/213", - "https://github.com/ankit071105/Ticket-Booking/pull/811", - "https://github.com/ankit071105/Ticket-Booking/pull/597", - "https://github.com/ankit071105/Ticket-Booking/pull/382", - "https://github.com/ANSHIKA-26/WordWise/pull/1330", - "https://github.com/ANSHIKA-26/WordWise/pull/1184", - "https://github.com/ANSHIKA-26/WordWise/pull/1155", - "https://github.com/ANSHIKA-26/WordWise/pull/1141", - "https://github.com/ANSHIKA-26/WordWise/pull/1108", - "https://github.com/ANSHIKA-26/WordWise/pull/1106", - "https://github.com/ANSHIKA-26/WordWise/pull/1083", - "https://github.com/ANSHIKA-26/WordWise/pull/1068", - "https://github.com/ANSHIKA-26/WordWise/pull/811", - "https://github.com/ANSHIKA-26/WordWise/pull/759", - "https://github.com/anuragverma108/SwapReads/pull/4433", - "https://github.com/anuragverma108/SwapReads/pull/4411", - "https://github.com/anuragverma108/SwapReads/pull/4349", - "https://github.com/anuragverma108/SwapReads/pull/4295", - "https://github.com/anuragverma108/SwapReads/pull/4280", - "https://github.com/anuragverma108/SwapReads/pull/4273", - "https://github.com/anuragverma108/SwapReads/pull/4235", - "https://github.com/anuragverma108/SwapReads/pull/4218", - "https://github.com/anuragverma108/SwapReads/pull/4166", - "https://github.com/anuragverma108/SwapReads/pull/4092", - "https://github.com/anuragverma108/SwapReads/pull/4024", - "https://github.com/anuragverma108/SwapReads/pull/3961", - "https://github.com/anuragverma108/SwapReads/pull/3918", - "https://github.com/anuragverma108/SwapReads/pull/3850", - "https://github.com/anuragverma108/SwapReads/pull/3677", - "https://github.com/anuragverma108/SwapReads/pull/3671", - "https://github.com/anuragverma108/SwapReads/pull/3649", - "https://github.com/anuragverma108/SwapReads/pull/3634", - "https://github.com/anuragverma108/SwapReads/pull/3602", - "https://github.com/anuragverma108/SwapReads/pull/3501", - "https://github.com/anuragverma108/SwapReads/pull/3415", - "https://github.com/anuragverma108/SwapReads/pull/3334", - "https://github.com/anuragverma108/SwapReads/pull/3305", - "https://github.com/anuragverma108/SwapReads/pull/3280", - "https://github.com/anuragverma108/SwapReads/pull/3251", - "https://github.com/anuragverma108/SwapReads/pull/3247", - "https://github.com/anuragverma108/SwapReads/pull/3178", - "https://github.com/anuragverma108/SwapReads/pull/3155", - "https://github.com/vishanurag/Canvas-Editor/pull/1070", - "https://github.com/vishanurag/Canvas-Editor/pull/1011", - "https://github.com/vishanurag/Canvas-Editor/pull/986", - "https://github.com/vishanurag/Canvas-Editor/pull/865", - "https://github.com/vishanurag/Canvas-Editor/pull/829", - "https://github.com/vishanurag/Canvas-Editor/pull/795", - "https://github.com/Code-Social/official-website/pull/243", - "https://github.com/Code-Social/official-website/pull/221", - "https://github.com/ayush-that/FinVeda/pull/2590", - "https://github.com/ayush-that/FinVeda/pull/2573", - "https://github.com/ayush-that/FinVeda/pull/2534", - "https://github.com/ayush-that/FinVeda/pull/2508", - "https://github.com/ayush-that/FinVeda/pull/2496", - "https://github.com/ayush-that/FinVeda/pull/2486", - "https://github.com/ayush-that/FinVeda/pull/2448", - "https://github.com/ayush-that/FinVeda/pull/2442", - "https://github.com/ayush-that/FinVeda/pull/2436", - "https://github.com/ayush-that/FinVeda/pull/2378", - "https://github.com/ayush-that/FinVeda/pull/2309", - "https://github.com/ayush-that/FinVeda/pull/2299", - "https://github.com/ayush-that/FinVeda/pull/2087", - "https://github.com/ayush-that/FinVeda/pull/2064", - "https://github.com/ayush-that/FinVeda/pull/2052", - "https://github.com/ayush-that/FinVeda/pull/2034", - "https://github.com/ayush-that/FinVeda/pull/2003", - "https://github.com/ayush-that/FinVeda/pull/1873", - "https://github.com/ayush-that/FinVeda/pull/1807", - "https://github.com/ayush-that/FinVeda/pull/1760", - "https://github.com/ayush-that/FinVeda/pull/1664", - "https://github.com/ayush-that/FinVeda/pull/1616", - "https://github.com/ayush-that/FinVeda/pull/1577", - "https://github.com/ayush-that/FinVeda/pull/1274", - "https://github.com/ayush-that/FinVeda/pull/1211", - "https://github.com/ayush-that/FinVeda/pull/1162", - "https://github.com/Harshdev098/Research-Nexas/pull/339", - "https://github.com/Harshdev098/Research-Nexas/pull/326", - "https://github.com/Harshdev098/Research-Nexas/pull/302", - "https://github.com/Bitbox-Connect/Bitbox/pull/306", - "https://github.com/Bitbox-Connect/Bitbox/pull/266", - "https://github.com/Bitbox-Connect/Bitbox/pull/244", - "https://github.com/mansiruhil13/Bobble-AI/pull/899", - "https://github.com/mansiruhil13/Bobble-AI/pull/869", - "https://github.com/mansiruhil13/Bobble-AI/pull/840", - "https://github.com/mansiruhil13/Bobble-AI/pull/831", - "https://github.com/mansiruhil13/Bobble-AI/pull/752", - "https://github.com/mansiruhil13/Bobble-AI/pull/555", - "https://github.com/mansiruhil13/Bobble-AI/pull/515", - "https://github.com/mansiruhil13/Bobble-AI/pull/458", - "https://github.com/mansiruhil13/Bobble-AI/pull/385", - "https://github.com/Anjaliavv51/Retro/pull/500", - "https://github.com/Anjaliavv51/Retro/pull/382", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1731", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1365", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1177", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1101", - "https://github.com/PriyaGhosal/BuddyTrail/pull/984", - "https://github.com/iamrahulmahato/master-web-development/pull/1953", - "https://github.com/iamrahulmahato/master-web-development/pull/1911", - "https://github.com/iamrahulmahato/master-web-development/pull/1842", - "https://github.com/iamrahulmahato/master-web-development/pull/1786", - "https://github.com/iamrahulmahato/master-web-development/pull/1568", - "https://github.com/iamrahulmahato/master-web-development/pull/1501", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/694", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/689", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/437", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/413", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/308", - "https://github.com/swarooppatilx/scruter/pull/217", - "https://github.com/swarooppatilx/scruter/pull/124", - "https://github.com/tushargupta1504/Medical-Website/pull/572", - "https://github.com/GVishnudhasan/NoDueProject/pull/91", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/965", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/53", - "https://github.com/Akshat111111/NexTrade/pull/67", - "https://github.com/GSSoC24/Postman-Challenge/pull/2281" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 26 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145869907?u=4a5c497771a9c8677055e067e1e9c973d29b2f18&v=4", - "login": "ananyag309", - "url": "https://github.com/ananyag309", - "score": 3540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/821", - "https://github.com/aditya-bhaumik/Pathsphere/pull/621", - "https://github.com/ajay-dhangar/algo/pull/1527", - "https://github.com/ajay-dhangar/algo/pull/1380", - "https://github.com/ajay-dhangar/algo/pull/1367", - "https://github.com/ajay-dhangar/algo/pull/1281", - "https://github.com/ajay-dhangar/algo/pull/1177", - "https://github.com/ajay-dhangar/algo/pull/665", - "https://github.com/ajay-dhangar/algo/pull/632", - "https://github.com/ajay-dhangar/algo/pull/540", - "https://github.com/ajay-dhangar/algo/pull/348", - "https://github.com/ajay-dhangar/algo/pull/204", - "https://github.com/ajay-dhangar/algo/pull/95", - "https://github.com/ajay-dhangar/algo/pull/94", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/523", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/414", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/412", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/337", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/306", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/245", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/216", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/148", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/350", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/339", - "https://github.com/yatulearn/yatulearn/pull/320", - "https://github.com/ANSHIKA-26/WordWise/pull/1065", - "https://github.com/ANSHIKA-26/WordWise/pull/890", - "https://github.com/ANSHIKA-26/WordWise/pull/363", - "https://github.com/anuragverma108/SwapReads/pull/3299", - "https://github.com/anuragverma108/SwapReads/pull/3298", - "https://github.com/vishanurag/Canvas-Editor/pull/271", - "https://github.com/vishanurag/Canvas-Editor/pull/107", - "https://github.com/vishanurag/Canvas-Editor/pull/71", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/127", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/69", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/847", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/805", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/791", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/778", - "https://github.com/ayush-that/FinVeda/pull/1445", - "https://github.com/ayush-that/FinVeda/pull/1444", - "https://github.com/ayush-that/FinVeda/pull/1372", - "https://github.com/ayush-that/FinVeda/pull/1281", - "https://github.com/mdazfar2/Ezyshop/pull/597", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/43", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/76", - "https://github.com/divyansh-2005/FinNews/pull/170", - "https://github.com/Devamani11D/salt-app-kickstart/pull/51", - "https://github.com/Devamani11D/salt-app-kickstart/pull/44", - "https://github.com/Devamani11D/salt-app-kickstart/pull/42", - "https://github.com/Devamani11D/salt-app-kickstart/pull/40", - "https://github.com/prajapatihet/donorconnect/pull/38", - "https://github.com/prajapatihet/donorconnect/pull/35", - "https://github.com/Open-Code-Crafters/FitFlex/pull/137", - "https://github.com/Open-Code-Crafters/FitFlex/pull/75", - "https://github.com/kom-senapati/bot-verse/pull/51", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/629", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/616", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/594", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/589", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/565", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/66", - "https://github.com/Kushal997-das/Project-Guidance/pull/1548", - "https://github.com/Kushal997-das/Project-Guidance/pull/1427", - "https://github.com/Luson045/medi-connect/pull/174", - "https://github.com/mansiruhil13/Bobble-AI/pull/698", - "https://github.com/mansiruhil13/Bobble-AI/pull/644", - "https://github.com/mansiruhil13/Bobble-AI/pull/499", - "https://github.com/mansiruhil13/Bobble-AI/pull/496", - "https://github.com/mansiruhil13/Bobble-AI/pull/420", - "https://github.com/mansiruhil13/Bobble-AI/pull/417", - "https://github.com/mansiruhil13/Bobble-AI/pull/251", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/484", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/457", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/456", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/455", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/422", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/420", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/390", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/389", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/374", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/373", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/372", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/337", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/335", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/333", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/192", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/167", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/163", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/147", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/142", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/54", - "https://github.com/c0sm0void/ReVot/pull/86", - "https://github.com/TherkuTech/tturl/pull/78", - "https://github.com/AlgoGenesis/C/pull/840", - "https://github.com/AlgoGenesis/C/pull/533", - "https://github.com/AlgoGenesis/C/pull/378", - "https://github.com/AlgoGenesis/C/pull/185", - "https://github.com/PriyaGhosal/BuddyTrail/pull/208", - "https://github.com/iamrahulmahato/master-web-development/pull/672", - "https://github.com/iamrahulmahato/master-web-development/pull/144", - "https://github.com/iamrahulmahato/master-web-development/pull/124", - "https://github.com/iamrahulmahato/master-web-development/pull/64", - "https://github.com/iamrahulmahato/master-web-development/pull/46", - "https://github.com/recodehive/awesome-github-profiles/pull/1162", - "https://github.com/recodehive/awesome-github-profiles/pull/1142", - "https://github.com/recodehive/awesome-github-profiles/pull/1136", - "https://github.com/recodehive/awesome-github-profiles/pull/1004", - "https://github.com/recodehive/machine-learning-repos/pull/1297", - "https://github.com/recodehive/machine-learning-repos/pull/1291", - "https://github.com/recodehive/machine-learning-repos/pull/1262", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/32", - "https://github.com/soham0005/ElectroKart/pull/194", - "https://github.com/soham0005/ElectroKart/pull/189", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/77", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/323", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/123", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/102", - "https://github.com/swarooppatilx/scruter/pull/230", - "https://github.com/swarooppatilx/scruter/pull/229", - "https://github.com/multiverseweb/CodeIt/pull/77", - "https://github.com/TejasNasre/nexmeet/pull/215", - "https://github.com/tushargupta1504/Medical-Website/pull/35", - "https://github.com/UTSAVS26/PySnippets/pull/284", - "https://github.com/UTSAVS26/PySnippets/pull/283", - "https://github.com/UTSAVS26/PySnippets/pull/188", - "https://github.com/UTSAVS26/PySnippets/pull/156", - "https://github.com/UTSAVS26/PySnippets/pull/136", - "https://github.com/vansh-codes/ChaosWeb/pull/164", - "https://github.com/Vimall03/Alimento/pull/47", - "https://github.com/Vin205/Enyanjyoti/pull/400", - "https://github.com/Vin205/Enyanjyoti/pull/399", - "https://github.com/Vin205/Enyanjyoti/pull/398", - "https://github.com/Vin205/Enyanjyoti/pull/111", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/327", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/116", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1100", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/730", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/578", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/278", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/222", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/158", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/46", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/282", - "https://github.com/UTSAVS26/PyVerse/pull/938", - "https://github.com/UTSAVS26/PyVerse/pull/566", - "https://github.com/UTSAVS26/PyVerse/pull/216", - "https://github.com/UTSAVS26/PyVerse/pull/109", - "https://github.com/UTSAVS26/PyVerse/pull/46", - "https://github.com/UTSAVS26/PyVerse/pull/23", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1185", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1169", - "https://github.com/GSSoC24/Postman-Challenge/pull/1967" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 30 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98593517?u=4f9b42f5001b1f535b6bfda7bfac2fd585cc1923&v=4", - "login": "J-B-Mugundh", - "url": "https://github.com/J-B-Mugundh", - "score": 3495, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/10", - "https://github.com/ajay-dhangar/algo/pull/856", - "https://github.com/ajay-dhangar/algo/pull/699", - "https://github.com/ajay-dhangar/algo/pull/455", - "https://github.com/ajay-dhangar/algo/pull/279", - "https://github.com/ajay-dhangar/algo/pull/272", - "https://github.com/ajay-dhangar/algo/pull/130", - "https://github.com/ajay-dhangar/algo/pull/128", - "https://github.com/BhattAnsh/Quiz-Quest/pull/95", - "https://github.com/anuj123upadhyay/MegaBlog/pull/303", - "https://github.com/anuragverma108/SwapReads/pull/3837", - "https://github.com/vishanurag/Canvas-Editor/pull/764", - "https://github.com/arjunatapadkar/codeteria/pull/113", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/916", - "https://github.com/OpenTekHub/blockchain/pull/39", - "https://github.com/OpenTekHub/blockchain/pull/33", - "https://github.com/Harshdev098/Research-Nexas/pull/248", - "https://github.com/prajapatihet/donorconnect/pull/101", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/379", - "https://github.com/Open-Code-Crafters/FitFlex/pull/274", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/32", - "https://github.com/Luson045/medi-connect/pull/324", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/723", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/722", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/683", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/681", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/641", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/639", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/623", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/621", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/620", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/588", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/587", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/581", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/578", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/562", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/557", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/548", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/526", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/511", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/508", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/488", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/487", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/485", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/471", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/435", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/434", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/411", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/353", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/346", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/313", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/311", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/310", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/296", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/266", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/215", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/189", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/186", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/126", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/106", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/91", - "https://github.com/Megh2005/Med-o-Next/pull/25", - "https://github.com/iamrahulmahato/master-web-development/pull/926", - "https://github.com/iamrahulmahato/master-web-development/pull/605", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/65", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/162", - "https://github.com/recodehive/machine-learning-repos/pull/1314", - "https://github.com/recodehive/machine-learning-repos/pull/1272", - "https://github.com/recodehive/machine-learning-repos/pull/1265", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/379", - "https://github.com/tanishaness/SPROCTOR/pull/61", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1045", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/955", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/890", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/865", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/817", - "https://github.com/Yashgabani845/hiring-portal/pull/273", - "https://github.com/yashasvini121/predictive-calc/pull/98", - "https://github.com/yashasvini121/predictive-calc/pull/29", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/130", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/134", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/131", - "https://github.com/apu52/METAVERSE/pull/1317", - "https://github.com/UTSAVS26/PyVerse/pull/434", - "https://github.com/UTSAVS26/PyVerse/pull/432", - "https://github.com/UTSAVS26/PyVerse/pull/339", - "https://github.com/UTSAVS26/PyVerse/pull/253", - "https://github.com/UTSAVS26/PyVerse/pull/194", - "https://github.com/UTSAVS26/PyVerse/pull/168", - "https://github.com/GSSoC24/Postman-Challenge/pull/2380" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-10-30" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/7879392?u=2239d4197d7d57265ba9320eb2771850e41c8b42&v=4", - "login": "mehul-m-prajapati", - "url": "https://github.com/mehul-m-prajapati", - "score": 3435, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/751", - "https://github.com/ajay-dhangar/algo/pull/662", - "https://github.com/ajay-dhangar/algo/pull/458", - "https://github.com/ajay-dhangar/algo/pull/457", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/392", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/391", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/388", - "https://github.com/ANSHIKA-26/WordWise/pull/678", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/153", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/909", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/816", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/247", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/198", - "https://github.com/Bitbox-Connect/Bitbox/pull/100", - "https://github.com/prajapatihet/donorconnect/pull/42", - "https://github.com/kom-senapati/bot-verse/pull/240", - "https://github.com/kom-senapati/bot-verse/pull/234", - "https://github.com/kom-senapati/bot-verse/pull/228", - "https://github.com/kom-senapati/bot-verse/pull/211", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/355", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/354", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/319", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/318", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/494", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/493", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/490", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/473", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/323", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/291", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/288", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/270", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/248", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/247", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/246", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/245", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/243", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/134", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/133", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/111", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/99", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/97", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/76", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/74", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/51", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/48", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/47", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/45", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/37", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/35", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/28", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/25", - "https://github.com/MitulSonagara/truth-tunnel/pull/243", - "https://github.com/MitulSonagara/truth-tunnel/pull/216", - "https://github.com/MitulSonagara/truth-tunnel/pull/211", - "https://github.com/MitulSonagara/truth-tunnel/pull/209", - "https://github.com/MitulSonagara/truth-tunnel/pull/196", - "https://github.com/MitulSonagara/truth-tunnel/pull/136", - "https://github.com/MitulSonagara/truth-tunnel/pull/135", - "https://github.com/MitulSonagara/truth-tunnel/pull/134", - "https://github.com/TherkuTech/tturl/pull/102", - "https://github.com/TherkuTech/tturl/pull/92", - "https://github.com/TherkuTech/tturl/pull/91", - "https://github.com/AlgoGenesis/C/pull/204", - "https://github.com/AlgoGenesis/C/pull/199", - "https://github.com/AlgoGenesis/C/pull/195", - "https://github.com/AlgoGenesis/C/pull/60", - "https://github.com/AlgoGenesis/C/pull/51", - "https://github.com/rahulsainlll/git-trace/pull/144", - "https://github.com/recodehive/machine-learning-repos/pull/1402", - "https://github.com/recodehive/machine-learning-repos/pull/1366", - "https://github.com/daccotta-org/daccotta/pull/285", - "https://github.com/daccotta-org/daccotta/pull/279", - "https://github.com/daccotta-org/daccotta/pull/255", - "https://github.com/daccotta-org/daccotta/pull/249", - "https://github.com/daccotta-org/daccotta/pull/241", - "https://github.com/daccotta-org/daccotta/pull/235", - "https://github.com/daccotta-org/daccotta/pull/233", - "https://github.com/daccotta-org/daccotta/pull/211", - "https://github.com/daccotta-org/daccotta/pull/197", - "https://github.com/daccotta-org/daccotta/pull/172", - "https://github.com/daccotta-org/daccotta/pull/160", - "https://github.com/daccotta-org/daccotta/pull/143", - "https://github.com/daccotta-org/daccotta/pull/142", - "https://github.com/daccotta-org/daccotta/pull/131", - "https://github.com/daccotta-org/daccotta/pull/122", - "https://github.com/daccotta-org/daccotta/pull/121", - "https://github.com/daccotta-org/daccotta/pull/107", - "https://github.com/daccotta-org/daccotta/pull/96", - "https://github.com/daccotta-org/daccotta/pull/95", - "https://github.com/daccotta-org/daccotta/pull/94", - "https://github.com/multiverseweb/CodeIt/pull/154", - "https://github.com/TejasNasre/nexmeet/pull/235", - "https://github.com/TejasNasre/nexmeet/pull/233", - "https://github.com/TejasNasre/nexmeet/pull/232", - "https://github.com/TejasNasre/nexmeet/pull/223", - "https://github.com/TejasNasre/nexmeet/pull/203", - "https://github.com/TejasNasre/nexmeet/pull/191", - "https://github.com/TejasNasre/nexmeet/pull/185", - "https://github.com/TejasNasre/nexmeet/pull/165", - "https://github.com/TejasNasre/nexmeet/pull/164", - "https://github.com/TejasNasre/nexmeet/pull/134", - "https://github.com/TejasNasre/nexmeet/pull/117", - "https://github.com/TejasNasre/nexmeet/pull/92", - "https://github.com/TejasNasre/nexmeet/pull/91", - "https://github.com/UTSAVS26/PySnippets/pull/177", - "https://github.com/UTSAVS26/PySnippets/pull/82", - "https://github.com/UTSAVS26/PySnippets/pull/81", - "https://github.com/Scribbie-Notes/notes-app/pull/365", - "https://github.com/Scribbie-Notes/notes-app/pull/364", - "https://github.com/Scribbie-Notes/notes-app/pull/363", - "https://github.com/Scribbie-Notes/notes-app/pull/355", - "https://github.com/Scribbie-Notes/notes-app/pull/353", - "https://github.com/Scribbie-Notes/notes-app/pull/326", - "https://github.com/Scribbie-Notes/notes-app/pull/323", - "https://github.com/Scribbie-Notes/notes-app/pull/321", - "https://github.com/Scribbie-Notes/notes-app/pull/320", - "https://github.com/Scribbie-Notes/notes-app/pull/293", - "https://github.com/Scribbie-Notes/notes-app/pull/292", - "https://github.com/Scribbie-Notes/notes-app/pull/287", - "https://github.com/Scribbie-Notes/notes-app/pull/279", - "https://github.com/Scribbie-Notes/notes-app/pull/241", - "https://github.com/Scribbie-Notes/notes-app/pull/240", - "https://github.com/Scribbie-Notes/notes-app/pull/238", - "https://github.com/Scribbie-Notes/notes-app/pull/236", - "https://github.com/UTSAVS26/PyVerse/pull/389", - "https://github.com/UTSAVS26/PyVerse/pull/248", - "https://github.com/UTSAVS26/PyVerse/pull/246", - "https://github.com/UTSAVS26/PyVerse/pull/238", - "https://github.com/vanshchauhan21/CryptoTracker/pull/355", - "https://github.com/vanshchauhan21/CryptoTracker/pull/353", - "https://github.com/GSSoC24/Postman-Challenge/pull/2056" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 32 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112266318?u=88887b19b09052a3939e3c822fdee664a8493e78&v=4", - "login": "priyanshuverma-dev", - "url": "https://github.com/priyanshuverma-dev", - "score": 3280, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/47", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/106", - "https://github.com/mdazfar2/Ezyshop/pull/1051", - "https://github.com/jahnvisahni31/DesignDeck/pull/34", - "https://github.com/kom-senapati/bot-verse/pull/237", - "https://github.com/kom-senapati/bot-verse/pull/232", - "https://github.com/kom-senapati/bot-verse/pull/231", - "https://github.com/kom-senapati/bot-verse/pull/221", - "https://github.com/kom-senapati/bot-verse/pull/217", - "https://github.com/kom-senapati/bot-verse/pull/216", - "https://github.com/kom-senapati/bot-verse/pull/214", - "https://github.com/kom-senapati/bot-verse/pull/210", - "https://github.com/kom-senapati/bot-verse/pull/208", - "https://github.com/kom-senapati/bot-verse/pull/205", - "https://github.com/kom-senapati/bot-verse/pull/204", - "https://github.com/kom-senapati/bot-verse/pull/200", - "https://github.com/kom-senapati/bot-verse/pull/199", - "https://github.com/kom-senapati/bot-verse/pull/198", - "https://github.com/kom-senapati/bot-verse/pull/197", - "https://github.com/kom-senapati/bot-verse/pull/187", - "https://github.com/kom-senapati/bot-verse/pull/186", - "https://github.com/kom-senapati/bot-verse/pull/183", - "https://github.com/kom-senapati/bot-verse/pull/182", - "https://github.com/kom-senapati/bot-verse/pull/180", - "https://github.com/kom-senapati/bot-verse/pull/177", - "https://github.com/kom-senapati/bot-verse/pull/175", - "https://github.com/kom-senapati/bot-verse/pull/170", - "https://github.com/kom-senapati/bot-verse/pull/168", - "https://github.com/kom-senapati/bot-verse/pull/167", - "https://github.com/kom-senapati/bot-verse/pull/164", - "https://github.com/kom-senapati/bot-verse/pull/158", - "https://github.com/kom-senapati/bot-verse/pull/153", - "https://github.com/kom-senapati/bot-verse/pull/151", - "https://github.com/kom-senapati/bot-verse/pull/143", - "https://github.com/kom-senapati/bot-verse/pull/142", - "https://github.com/kom-senapati/bot-verse/pull/130", - "https://github.com/kom-senapati/bot-verse/pull/129", - "https://github.com/kom-senapati/bot-verse/pull/128", - "https://github.com/kom-senapati/bot-verse/pull/109", - "https://github.com/kom-senapati/bot-verse/pull/100", - "https://github.com/kom-senapati/bot-verse/pull/87", - "https://github.com/kom-senapati/bot-verse/pull/86", - "https://github.com/kom-senapati/bot-verse/pull/85", - "https://github.com/kom-senapati/bot-verse/pull/82", - "https://github.com/kom-senapati/bot-verse/pull/81", - "https://github.com/kom-senapati/bot-verse/pull/79", - "https://github.com/kom-senapati/bot-verse/pull/69", - "https://github.com/kom-senapati/bot-verse/pull/67", - "https://github.com/kom-senapati/bot-verse/pull/62", - "https://github.com/kom-senapati/bot-verse/pull/61", - "https://github.com/kom-senapati/bot-verse/pull/56", - "https://github.com/kom-senapati/bot-verse/pull/49", - "https://github.com/kom-senapati/bot-verse/pull/34", - "https://github.com/kom-senapati/bot-verse/pull/32", - "https://github.com/kom-senapati/bot-verse/pull/21", - "https://github.com/kom-senapati/bot-verse/pull/16", - "https://github.com/kom-senapati/bot-verse/pull/11", - "https://github.com/kartikayasijaa/talk-trove/pull/29", - "https://github.com/Megh2005/Med-o-Next/pull/112", - "https://github.com/MitulSonagara/truth-tunnel/pull/233", - "https://github.com/MitulSonagara/truth-tunnel/pull/184", - "https://github.com/MitulSonagara/truth-tunnel/pull/183", - "https://github.com/MitulSonagara/truth-tunnel/pull/165", - "https://github.com/MitulSonagara/truth-tunnel/pull/150", - "https://github.com/MitulSonagara/truth-tunnel/pull/143", - "https://github.com/MitulSonagara/truth-tunnel/pull/142", - "https://github.com/MitulSonagara/truth-tunnel/pull/130", - "https://github.com/MitulSonagara/truth-tunnel/pull/110", - "https://github.com/MitulSonagara/truth-tunnel/pull/97", - "https://github.com/MitulSonagara/truth-tunnel/pull/96", - "https://github.com/MitulSonagara/truth-tunnel/pull/91", - "https://github.com/MitulSonagara/truth-tunnel/pull/77", - "https://github.com/MitulSonagara/truth-tunnel/pull/72", - "https://github.com/MitulSonagara/truth-tunnel/pull/70", - "https://github.com/MitulSonagara/truth-tunnel/pull/49", - "https://github.com/MitulSonagara/truth-tunnel/pull/40", - "https://github.com/MitulSonagara/truth-tunnel/pull/24", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/38", - "https://github.com/notsoocool/codecache/pull/50", - "https://github.com/notsoocool/codecache/pull/29", - "https://github.com/GSSoC24/Postman-Challenge/pull/1786" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 29 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147314463?u=7b8dec518c421be44251d89fdf555bdeada83219&v=4", - "login": "haseebzaki-07", - "url": "https://github.com/haseebzaki-07", - "score": 3150, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1600", - "https://github.com/ajay-dhangar/algo/pull/1569", - "https://github.com/ajay-dhangar/algo/pull/1541", - "https://github.com/ajay-dhangar/algo/pull/1066", - "https://github.com/ajay-dhangar/algo/pull/955", - "https://github.com/ajay-dhangar/algo/pull/954", - "https://github.com/ajay-dhangar/algo/pull/952", - "https://github.com/ajay-dhangar/algo/pull/793", - "https://github.com/ajay-dhangar/algo/pull/703", - "https://github.com/ajay-dhangar/algo/pull/620", - "https://github.com/ajay-dhangar/algo/pull/593", - "https://github.com/ajay-dhangar/algo/pull/498", - "https://github.com/ajay-dhangar/algo/pull/452", - "https://github.com/ajay-dhangar/algo/pull/426", - "https://github.com/ajay-dhangar/algo/pull/411", - "https://github.com/ajay-dhangar/algo/pull/344", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/395", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/394", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/380", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/349", - "https://github.com/anuragverma108/SwapReads/pull/4231", - "https://github.com/anuragverma108/SwapReads/pull/4216", - "https://github.com/anuragverma108/SwapReads/pull/4204", - "https://github.com/anuragverma108/SwapReads/pull/4202", - "https://github.com/anuragverma108/SwapReads/pull/4196", - "https://github.com/anuragverma108/SwapReads/pull/4105", - "https://github.com/anuragverma108/SwapReads/pull/4104", - "https://github.com/anuragverma108/SwapReads/pull/3914", - "https://github.com/anuragverma108/SwapReads/pull/3836", - "https://github.com/anuragverma108/SwapReads/pull/3835", - "https://github.com/anuragverma108/SwapReads/pull/3720", - "https://github.com/anuragverma108/SwapReads/pull/3643", - "https://github.com/anuragverma108/SwapReads/pull/3641", - "https://github.com/anuragverma108/SwapReads/pull/3535", - "https://github.com/anuragverma108/SwapReads/pull/3459", - "https://github.com/anuragverma108/SwapReads/pull/3456", - "https://github.com/codeaashu/DevDisplay/pull/221", - "https://github.com/aswathcm29/JournalForge/pull/92", - "https://github.com/dhairyagothi/StationGuide/pull/392", - "https://github.com/dhairyagothi/StationGuide/pull/336", - "https://github.com/dhairyagothi/StationGuide/pull/317", - "https://github.com/dhairyagothi/StationGuide/pull/312", - "https://github.com/dhairyagothi/StationGuide/pull/243", - "https://github.com/dhairyagothi/StationGuide/pull/228", - "https://github.com/dhairyagothi/StationGuide/pull/174", - "https://github.com/dhairyagothi/StationGuide/pull/131", - "https://github.com/dhairyagothi/StationGuide/pull/107", - "https://github.com/divyansh-2005/my-calendar-app/pull/77", - "https://github.com/himeshparashar/Social-Morph/pull/130", - "https://github.com/jahnvisahni31/DesignDeck/pull/81", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/219", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/145", - "https://github.com/Open-Code-Crafters/FitFlex/pull/321", - "https://github.com/Open-Code-Crafters/FitFlex/pull/307", - "https://github.com/Open-Code-Crafters/FitFlex/pull/132", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/716", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/688", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/678", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/668", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/661", - "https://github.com/mansiruhil13/Bobble-AI/pull/876", - "https://github.com/MitulSonagara/truth-tunnel/pull/182", - "https://github.com/MitulSonagara/truth-tunnel/pull/33", - "https://github.com/GlobeHoppin/globe-hoppin-backend/pull/23", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/21", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1811", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1665", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1658", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1567", - "https://github.com/iamrahulmahato/master-web-development/pull/1661", - "https://github.com/iamrahulmahato/master-web-development/pull/1428", - "https://github.com/iamrahulmahato/master-web-development/pull/1296", - "https://github.com/Rakshit-gen/Slanine/pull/86", - "https://github.com/Rakshit-gen/Slanine/pull/77", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/440", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/437", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/433", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/427", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/409", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/405", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/390", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/378", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/156", - "https://github.com/gupta-ritik/ExpenseTracker/pull/37", - "https://github.com/gupta-ritik/ExpenseTracker/pull/30", - "https://github.com/soham0005/ElectroKart/pull/167", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/325", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/266", - "https://github.com/TejasNasre/nexmeet/pull/85", - "https://github.com/vansh-codes/ChaosWeb/pull/154", - "https://github.com/visheshrwl/Uber-like/pull/83", - "https://github.com/visheshrwl/Uber-like/pull/81", - "https://github.com/visheshrwl/Uber-like/pull/61", - "https://github.com/visheshrwl/Uber-like/pull/58", - "https://github.com/notsoocool/codecache/pull/181", - "https://github.com/Yashgabani845/hiring-portal/pull/289", - "https://github.com/Yashgabani845/hiring-portal/pull/283", - "https://github.com/Yashgabani845/hiring-portal/pull/278", - "https://github.com/Yashgabani845/hiring-portal/pull/267", - "https://github.com/Yashgabani845/hiring-portal/pull/249", - "https://github.com/Yashgabani845/hiring-portal/pull/246", - "https://github.com/Yashgabani845/hiring-portal/pull/228", - "https://github.com/Yashgabani845/hiring-portal/pull/201", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/165", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/163", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/64", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/58", - "https://github.com/apu52/METAVERSE/pull/1346", - "https://github.com/apu52/METAVERSE/pull/1337", - "https://github.com/UTSAVS26/PyVerse/pull/518", - "https://github.com/GSSoC24/Postman-Challenge/pull/2177" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 27 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167653990?u=42aed75a5add1731f01545da3bf5cd7dae8aedc2&v=4", - "login": "T-Rahul-prabhu-38", - "url": "https://github.com/T-Rahul-prabhu-38", - "score": 2660, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/822", - "https://github.com/aditya-bhaumik/Pathsphere/pull/501", - "https://github.com/ajay-dhangar/algo/pull/722", - "https://github.com/ajay-dhangar/algo/pull/627", - "https://github.com/ajay-dhangar/algo/pull/483", - "https://github.com/ajay-dhangar/algo/pull/459", - "https://github.com/ajay-dhangar/algo/pull/155", - "https://github.com/ajay-dhangar/algo/pull/145", - "https://github.com/ajay-dhangar/algo/pull/141", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/224", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/200", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/164", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/116", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/87", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/47", - "https://github.com/ankit071105/Ticket-Booking/pull/424", - "https://github.com/ankit071105/Ticket-Booking/pull/422", - "https://github.com/ANSHIKA-26/WordWise/pull/468", - "https://github.com/ANSHIKA-26/WordWise/pull/307", - "https://github.com/ANSHIKA-26/WordWise/pull/233", - "https://github.com/ANSHIKA-26/WordWise/pull/230", - "https://github.com/ANSHIKA-26/WordWise/pull/83", - "https://github.com/anuragverma108/SwapReads/pull/3531", - "https://github.com/anuragverma108/SwapReads/pull/3091", - "https://github.com/Code-Social/official-website/pull/274", - "https://github.com/ayush-that/FinVeda/pull/1333", - "https://github.com/ayush-that/FinVeda/pull/1222", - "https://github.com/ayush-that/FinVeda/pull/1129", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/540", - "https://github.com/dohinaf/basic-icecream-website/pull/543", - "https://github.com/dohinaf/basic-icecream-website/pull/423", - "https://github.com/dohinaf/basic-icecream-website/pull/407", - "https://github.com/dohinaf/basic-icecream-website/pull/404", - "https://github.com/dohinaf/basic-icecream-website/pull/162", - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/41", - "https://github.com/Devamani11D/salt-app-kickstart/pull/55", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/301", - "https://github.com/Harshdev098/Research-Nexas/pull/218", - "https://github.com/Harshdev098/Research-Nexas/pull/187", - "https://github.com/Harshdev098/Research-Nexas/pull/166", - "https://github.com/Bitbox-Connect/Bitbox/pull/9", - "https://github.com/mansiruhil13/Bobble-AI/pull/362", - "https://github.com/mansiruhil13/Bobble-AI/pull/301", - "https://github.com/mansiruhil13/Bobble-AI/pull/287", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/300", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/194", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/146", - "https://github.com/Mohit5Upadhyay/realTimeTrackingApplication/pull/40", - "https://github.com/Anjaliavv51/Retro/pull/471", - "https://github.com/Anjaliavv51/Retro/pull/247", - "https://github.com/Anjaliavv51/Retro/pull/59", - "https://github.com/param-code/counter-app/pull/128", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/312", - "https://github.com/andoriyaprashant/DevDocsHub/pull/112", - "https://github.com/andoriyaprashant/DevDocsHub/pull/81", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1164", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/352", - "https://github.com/samyakmaitre/eventmint/pull/379", - "https://github.com/samyakmaitre/eventmint/pull/200", - "https://github.com/SanchitGeez/Investra/pull/89", - "https://github.com/ayerhssb/Appointment-booking-app/pull/28", - "https://github.com/Shreyaa173/Code-Book/pull/253", - "https://github.com/Soujanya2004/wanderlust-2024/pull/130", - "https://github.com/SurajPratap10/Imagine_AI/pull/1293", - "https://github.com/SurajPratap10/Imagine_AI/pull/1285", - "https://github.com/SurajPratap10/Imagine_AI/pull/1231", - "https://github.com/SurajPratap10/Imagine_AI/pull/1202", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/19", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/602", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/407", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/395", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/192", - "https://github.com/swarooppatilx/scruter/pull/194", - "https://github.com/swarooppatilx/scruter/pull/144", - "https://github.com/tanishaness/SPROCTOR/pull/52", - "https://github.com/tanishaness/SPROCTOR/pull/47", - "https://github.com/multiverseweb/Dataverse/pull/73", - "https://github.com/multiverseweb/CodeIt/pull/169", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/395", - "https://github.com/Trisha-tech/OnlineBookSales/pull/425", - "https://github.com/Vimall03/Alimento/pull/125", - "https://github.com/Vimall03/Alimento/pull/120", - "https://github.com/Vimall03/Alimento/pull/66", - "https://github.com/Vimall03/Alimento/pull/58", - "https://github.com/Vimall03/Alimento/pull/57", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/724", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/715", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/686", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/683", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/628", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/625", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/470", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/225", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1163", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1162" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20" - ], - "streak": 19 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133676532?u=04faaaa94de7f3f9b223fedf66f8a2ab5303c078&v=4", - "login": "AyushSharma72", - "url": "https://github.com/AyushSharma72", - "score": 2540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/87", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/85", - "https://github.com/ankit071105/Ticket-Booking/pull/307", - "https://github.com/ANSHIKA-26/WordWise/pull/1537", - "https://github.com/ANSHIKA-26/WordWise/pull/1516", - "https://github.com/ANSHIKA-26/WordWise/pull/1411", - "https://github.com/ANSHIKA-26/WordWise/pull/1048", - "https://github.com/ANSHIKA-26/WordWise/pull/587", - "https://github.com/ANSHIKA-26/WordWise/pull/545", - "https://github.com/anuj123upadhyay/MegaBlog/pull/183", - "https://github.com/anuj123upadhyay/MegaBlog/pull/104", - "https://github.com/anuj123upadhyay/MegaBlog/pull/94", - "https://github.com/anuj123upadhyay/MegaBlog/pull/26", - "https://github.com/anuj123upadhyay/MegaBlog/pull/25", - "https://github.com/aswathcm29/JournalForge/pull/53", - "https://github.com/mdazfar2/Ezyshop/pull/273", - "https://github.com/dhairyagothi/StationGuide/pull/461", - "https://github.com/dhairyagothi/StationGuide/pull/165", - "https://github.com/dhairyagothi/StationGuide/pull/149", - "https://github.com/dhairyagothi/StationGuide/pull/148", - "https://github.com/divyansh-2005/FinNews/pull/157", - "https://github.com/Bitbox-Connect/Bitbox/pull/250", - "https://github.com/Bitbox-Connect/Bitbox/pull/248", - "https://github.com/Bitbox-Connect/Bitbox/pull/236", - "https://github.com/Bitbox-Connect/Bitbox/pull/217", - "https://github.com/Bitbox-Connect/Bitbox/pull/141", - "https://github.com/Bitbox-Connect/Bitbox/pull/128", - "https://github.com/Bitbox-Connect/Bitbox/pull/74", - "https://github.com/Bitbox-Connect/Bitbox/pull/67", - "https://github.com/Luson045/medi-connect/pull/569", - "https://github.com/Luson045/medi-connect/pull/537", - "https://github.com/Luson045/medi-connect/pull/457", - "https://github.com/Luson045/medi-connect/pull/454", - "https://github.com/Luson045/medi-connect/pull/453", - "https://github.com/Luson045/medi-connect/pull/261", - "https://github.com/Luson045/medi-connect/pull/257", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/48", - "https://github.com/TherkuTech/tturl/pull/75", - "https://github.com/TherkuTech/tturl/pull/73", - "https://github.com/TherkuTech/tturl/pull/58", - "https://github.com/TherkuTech/tturl/pull/52", - "https://github.com/GlobeHoppin/globe-hoppin-backend/pull/17", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1740", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1724", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1703", - "https://github.com/samyakmaitre/eventmint/pull/478", - "https://github.com/samyakmaitre/eventmint/pull/468", - "https://github.com/samyakmaitre/eventmint/pull/445", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/69", - "https://github.com/Shreyaa173/Code-Book/pull/447", - "https://github.com/Shreyaa173/Code-Book/pull/433", - "https://github.com/Shreyaa173/Code-Book/pull/228", - "https://github.com/soham0005/ElectroKart/pull/65", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/533", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/290", - "https://github.com/Vin205/Enyanjyoti/pull/127", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/384", - "https://github.com/Scribbie-Notes/notes-app/pull/304", - "https://github.com/Scribbie-Notes/notes-app/pull/295", - "https://github.com/Scribbie-Notes/notes-app/pull/294", - "https://github.com/Scribbie-Notes/notes-app/pull/210", - "https://github.com/Scribbie-Notes/notes-app/pull/123", - "https://github.com/Yashgabani845/hiring-portal/pull/243", - "https://github.com/Yashgabani845/hiring-portal/pull/236", - "https://github.com/Yashgabani845/hiring-portal/pull/234", - "https://github.com/Yashgabani845/hiring-portal/pull/171", - "https://github.com/Yashgabani845/hiring-portal/pull/162", - "https://github.com/Yashgabani845/hiring-portal/pull/161", - "https://github.com/Yashgabani845/hiring-portal/pull/152", - "https://github.com/Yashgabani845/hiring-portal/pull/149", - "https://github.com/Yashgabani845/hiring-portal/pull/143", - "https://github.com/Yashgabani845/hiring-portal/pull/138", - "https://github.com/Yashgabani845/hiring-portal/pull/61", - "https://github.com/Yashgabani845/hiring-portal/pull/60", - "https://github.com/Yashgabani845/hiring-portal/pull/44", - "https://github.com/Yashgabani845/hiring-portal/pull/43", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/11", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/243", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/236", - "https://github.com/4darsh-Dev/DecenTrade/pull/148", - "https://github.com/vanshchauhan21/CryptoTracker/pull/363", - "https://github.com/GSSoC24/Postman-Challenge/pull/1983" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137524681?u=3ba370753eb269b2f6c2b059c5e6affea541feb6&v=4", - "login": "Priyanshi0112", - "url": "https://github.com/Priyanshi0112", - "score": 2345, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1022", - "https://github.com/ankit071105/Ticket-Booking/pull/850", - "https://github.com/ankit071105/Ticket-Booking/pull/818", - "https://github.com/anuragverma108/SwapReads/pull/4169", - "https://github.com/anuragverma108/SwapReads/pull/4140", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/245", - "https://github.com/ayush-that/FinVeda/pull/2358", - "https://github.com/ayush-that/FinVeda/pull/2242", - "https://github.com/ayush-that/FinVeda/pull/2228", - "https://github.com/ayush-that/FinVeda/pull/2220", - "https://github.com/ayush-that/FinVeda/pull/1960", - "https://github.com/ayush-that/FinVeda/pull/1959", - "https://github.com/ayush-that/FinVeda/pull/1928", - "https://github.com/ayush-that/FinVeda/pull/1913", - "https://github.com/ayush-that/FinVeda/pull/1875", - "https://github.com/ayush-that/FinVeda/pull/1862", - "https://github.com/ayush-that/FinVeda/pull/1797", - "https://github.com/ayush-that/FinVeda/pull/1521", - "https://github.com/ayush-that/FinVeda/pull/1509", - "https://github.com/ayush-that/FinVeda/pull/1478", - "https://github.com/ayush-that/FinVeda/pull/1471", - "https://github.com/ayush-that/FinVeda/pull/1465", - "https://github.com/ayush-that/FinVeda/pull/1378", - "https://github.com/ayush-that/FinVeda/pull/1376", - "https://github.com/ayush-that/FinVeda/pull/1163", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/538", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/144", - "https://github.com/mansiruhil13/Bobble-AI/pull/640", - "https://github.com/mansiruhil13/Bobble-AI/pull/372", - "https://github.com/AlgoGenesis/C/pull/693", - "https://github.com/AlgoGenesis/C/pull/689", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/352", - "https://github.com/iamrahulmahato/master-web-development/pull/1437", - "https://github.com/iamrahulmahato/master-web-development/pull/1245", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/563", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/489", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/463", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/359", - "https://github.com/vanshchauhan21/CryptoTracker/pull/350", - "https://github.com/vanshchauhan21/CryptoTracker/pull/323", - "https://github.com/vanshchauhan21/CryptoTracker/pull/308", - "https://github.com/vanshchauhan21/CryptoTracker/pull/296", - "https://github.com/vanshchauhan21/CryptoTracker/pull/294", - "https://github.com/vanshchauhan21/CryptoTracker/pull/292", - "https://github.com/vanshchauhan21/CryptoTracker/pull/289", - "https://github.com/vanshchauhan21/CryptoTracker/pull/288", - "https://github.com/vanshchauhan21/CryptoTracker/pull/287", - "https://github.com/vanshchauhan21/CryptoTracker/pull/285", - "https://github.com/vanshchauhan21/CryptoTracker/pull/277", - "https://github.com/vanshchauhan21/CryptoTracker/pull/265", - "https://github.com/vanshchauhan21/CryptoTracker/pull/245", - "https://github.com/vanshchauhan21/CryptoTracker/pull/207", - "https://github.com/vanshchauhan21/CryptoTracker/pull/206", - "https://github.com/vanshchauhan21/CryptoTracker/pull/201", - "https://github.com/vanshchauhan21/CryptoTracker/pull/194", - "https://github.com/vanshchauhan21/CryptoTracker/pull/189", - "https://github.com/vanshchauhan21/CryptoTracker/pull/180", - "https://github.com/vanshchauhan21/CryptoTracker/pull/174", - "https://github.com/vanshchauhan21/CryptoTracker/pull/165", - "https://github.com/vanshchauhan21/CryptoTracker/pull/164", - "https://github.com/vanshchauhan21/CryptoTracker/pull/149", - "https://github.com/vanshchauhan21/CryptoTracker/pull/147", - "https://github.com/vanshchauhan21/CryptoTracker/pull/137", - "https://github.com/vanshchauhan21/CryptoTracker/pull/136", - "https://github.com/vanshchauhan21/CryptoTracker/pull/95", - "https://github.com/vanshchauhan21/CryptoTracker/pull/85", - "https://github.com/GSSoC24/Postman-Challenge/pull/2086" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 12 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158801564?u=7fa81b81c9b6e3a12fa7cd08100aae7cbb6dce55&v=4", - "login": "tarunkumar2005", - "url": "https://github.com/tarunkumar2005", - "score": 2295, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/511", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/304", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/106", - "https://github.com/yatulearn/yatulearn/pull/130", - "https://github.com/anki2003ta/Museum/pull/71", - "https://github.com/anmode/grabtern-frontend/pull/879", - "https://github.com/anuj123upadhyay/MegaBlog/pull/353", - "https://github.com/arjunatapadkar/codeteria/pull/277", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/834", - "https://github.com/ayush-that/FinVeda/pull/1069", - "https://github.com/dhairyagothi/StationGuide/pull/482", - "https://github.com/dhairyagothi/StationGuide/pull/206", - "https://github.com/dhairyagothi/StationGuide/pull/204", - "https://github.com/dhairyagothi/StationGuide/pull/179", - "https://github.com/dhairyagothi/StationGuide/pull/43", - "https://github.com/dhairyagothi/StationGuide/pull/24", - "https://github.com/divyansh-2005/FinNews/pull/189", - "https://github.com/divyansh-2005/FinNews/pull/155", - "https://github.com/himeshparashar/Social-Morph/pull/97", - "https://github.com/jahnvisahni31/DesignDeck/pull/230", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/96", - "https://github.com/Kota-Karthik/twinTrim/pull/122", - "https://github.com/Kota-Karthik/twinTrim/pull/44", - "https://github.com/Kota-Karthik/twinTrim/pull/35", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/200", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/196", - "https://github.com/Anjaliavv51/Retro/pull/410", - "https://github.com/Anjaliavv51/Retro/pull/342", - "https://github.com/Anjaliavv51/Retro/pull/338", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1119", - "https://github.com/PriyaGhosal/BuddyTrail/pull/942", - "https://github.com/PriyaGhosal/BuddyTrail/pull/777", - "https://github.com/PriyaGhosal/BuddyTrail/pull/397", - "https://github.com/PriyaGhosal/BuddyTrail/pull/221", - "https://github.com/iamrahulmahato/master-web-development/pull/1001", - "https://github.com/iamrahulmahato/master-web-development/pull/998", - "https://github.com/iamrahulmahato/master-web-development/pull/938", - "https://github.com/rahulsainlll/git-trace/pull/122", - "https://github.com/rahulsainlll/git-trace/pull/117", - "https://github.com/rahulsainlll/git-trace/pull/111", - "https://github.com/rahulsainlll/git-trace/pull/76", - "https://github.com/Rakshit-gen/Slanine/pull/41", - "https://github.com/Ratnesh-Team/Rehabify/pull/92", - "https://github.com/gupta-ritik/ExpenseTracker/pull/70", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/70", - "https://github.com/SaranshBangar/Daneizo/pull/96", - "https://github.com/SaranshBangar/Daneizo/pull/34", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/184", - "https://github.com/subhadipbhowmik/bio-branch/pull/207", - "https://github.com/Soujanya2004/wanderlust-2024/pull/68", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/317", - "https://github.com/swarooppatilx/scruter/pull/129", - "https://github.com/swarooppatilx/scruter/pull/58", - "https://github.com/multiverseweb/Dataverse/pull/143", - "https://github.com/multiverseweb/CodeIt/pull/162", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/577", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/576", - "https://github.com/TenzDelek/DearDiary/pull/135", - "https://github.com/TenzDelek/DearDiary/pull/134", - "https://github.com/Trisha-tech/OnlineBookSales/pull/265", - "https://github.com/VigneshDevHub/CampX/pull/194", - "https://github.com/VigneshDevHub/CampX/pull/175", - "https://github.com/Vin205/Enyanjyoti/pull/227", - "https://github.com/notsoocool/codecache/pull/99", - "https://github.com/notsoocool/codecache/pull/96", - "https://github.com/notsoocool/codecache/pull/52", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/44", - "https://github.com/apu52/METAVERSE/pull/1287", - "https://github.com/GSSoC24/Postman-Challenge/pull/2284" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-25", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140592148?v=4", - "login": "SrijaVuppala295", - "url": "https://github.com/SrijaVuppala295", - "score": 2290, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/844", - "https://github.com/aditya-bhaumik/Pathsphere/pull/714", - "https://github.com/ajay-dhangar/algo/pull/1224", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/538", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/537", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/531", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/517", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/487", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/484", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/482", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/476", - "https://github.com/anuragverma108/SwapReads/pull/4408", - "https://github.com/anuragverma108/SwapReads/pull/4405", - "https://github.com/anuragverma108/SwapReads/pull/4403", - "https://github.com/anuragverma108/SwapReads/pull/4400", - "https://github.com/anuragverma108/SwapReads/pull/4398", - "https://github.com/anuragverma108/SwapReads/pull/4396", - "https://github.com/anuragverma108/SwapReads/pull/4393", - "https://github.com/anuragverma108/SwapReads/pull/4391", - "https://github.com/anuragverma108/SwapReads/pull/4382", - "https://github.com/anuragverma108/SwapReads/pull/4378", - "https://github.com/anuragverma108/SwapReads/pull/4375", - "https://github.com/anuragverma108/SwapReads/pull/4374", - "https://github.com/anuragverma108/SwapReads/pull/4361", - "https://github.com/anuragverma108/SwapReads/pull/4344", - "https://github.com/anuragverma108/SwapReads/pull/4340", - "https://github.com/anuragverma108/SwapReads/pull/4003", - "https://github.com/anuragverma108/SwapReads/pull/3921", - "https://github.com/anuragverma108/SwapReads/pull/3920", - "https://github.com/anuragverma108/SwapReads/pull/3919", - "https://github.com/anuragverma108/SwapReads/pull/3904", - "https://github.com/anuragverma108/SwapReads/pull/3826", - "https://github.com/anuragverma108/SwapReads/pull/3823", - "https://github.com/anuragverma108/SwapReads/pull/3821", - "https://github.com/anuragverma108/SwapReads/pull/3820", - "https://github.com/anuragverma108/SwapReads/pull/3813", - "https://github.com/anuragverma108/SwapReads/pull/3800", - "https://github.com/anuragverma108/SwapReads/pull/3794", - "https://github.com/anuragverma108/SwapReads/pull/3793", - "https://github.com/anuragverma108/SwapReads/pull/3792", - "https://github.com/anuragverma108/SwapReads/pull/3791", - "https://github.com/anuragverma108/SwapReads/pull/3790", - "https://github.com/anuragverma108/SwapReads/pull/3787", - "https://github.com/anuragverma108/SwapReads/pull/3539", - "https://github.com/ayush-that/FinVeda/pull/2480", - "https://github.com/ayush-that/FinVeda/pull/2478", - "https://github.com/ayush-that/FinVeda/pull/2467", - "https://github.com/ayush-that/FinVeda/pull/2463", - "https://github.com/ayush-that/FinVeda/pull/2461", - "https://github.com/ayush-that/FinVeda/pull/2459", - "https://github.com/ayush-that/FinVeda/pull/2412", - "https://github.com/ayush-that/FinVeda/pull/2410", - "https://github.com/ayush-that/FinVeda/pull/2270", - "https://github.com/ayush-that/FinVeda/pull/2166", - "https://github.com/ayush-that/FinVeda/pull/2165", - "https://github.com/ayush-that/FinVeda/pull/2164", - "https://github.com/ayush-that/FinVeda/pull/2163", - "https://github.com/ayush-that/FinVeda/pull/2162", - "https://github.com/ayush-that/FinVeda/pull/2161", - "https://github.com/ayush-that/FinVeda/pull/2160", - "https://github.com/ayush-that/FinVeda/pull/2159", - "https://github.com/ayush-that/FinVeda/pull/2158", - "https://github.com/ayush-that/FinVeda/pull/2157", - "https://github.com/ayush-that/FinVeda/pull/2156", - "https://github.com/ayush-that/FinVeda/pull/2155", - "https://github.com/ayush-that/FinVeda/pull/2154", - "https://github.com/ayush-that/FinVeda/pull/2153", - "https://github.com/ayush-that/FinVeda/pull/2152", - "https://github.com/dhairyagothi/StationGuide/pull/417", - "https://github.com/dhairyagothi/StationGuide/pull/232", - "https://github.com/dhairyagothi/StationGuide/pull/231", - "https://github.com/dhairyagothi/StationGuide/pull/230", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/390", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/523", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/522", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/521", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/518", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/517", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/488", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/487", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/485", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/481", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/480", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/463", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/461", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/452", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/451", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/450", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/448", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/428", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/426", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/424", - "https://github.com/samyakmaitre/eventmint/pull/462", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1084", - "https://github.com/GSSoC24/Postman-Challenge/pull/2418" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78638404?u=68ebe6e6dc529e70523c4a4c0fedae7b6a3c3378&v=4", - "login": "Suvadip-sana", - "url": "https://github.com/Suvadip-sana", - "score": 2270, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1176", - "https://github.com/ajay-dhangar/algo/pull/1025", - "https://github.com/ajay-dhangar/algo/pull/750", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1019", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1016", - "https://github.com/mdazfar2/Ezyshop/pull/890", - "https://github.com/mdazfar2/Ezyshop/pull/68", - "https://github.com/mdazfar2/Ezyshop/pull/66", - "https://github.com/mdazfar2/Ezyshop/pull/64", - "https://github.com/dhairyagothi/StationGuide/pull/309", - "https://github.com/OpenTekHub/blockchain/pull/121", - "https://github.com/himeshparashar/Social-Morph/pull/141", - "https://github.com/Luson045/medi-connect/pull/367", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/89", - "https://github.com/param-code/counter-app/pull/41", - "https://github.com/recodehive/awesome-github-profiles/pull/865", - "https://github.com/recodehive/machine-learning-repos/pull/1528", - "https://github.com/recodehive/machine-learning-repos/pull/1501", - "https://github.com/soham0005/ElectroKart/pull/224", - "https://github.com/Soujanya2004/wanderlust-2024/pull/332", - "https://github.com/Soujanya2004/wanderlust-2024/pull/331", - "https://github.com/Soujanya2004/wanderlust-2024/pull/316", - "https://github.com/Soujanya2004/wanderlust-2024/pull/315", - "https://github.com/Soujanya2004/wanderlust-2024/pull/314", - "https://github.com/Soujanya2004/wanderlust-2024/pull/303", - "https://github.com/Soujanya2004/wanderlust-2024/pull/300", - "https://github.com/Soujanya2004/wanderlust-2024/pull/299", - "https://github.com/Soujanya2004/wanderlust-2024/pull/292", - "https://github.com/Soujanya2004/wanderlust-2024/pull/291", - "https://github.com/Soujanya2004/wanderlust-2024/pull/290", - "https://github.com/Soujanya2004/wanderlust-2024/pull/289", - "https://github.com/Soujanya2004/wanderlust-2024/pull/288", - "https://github.com/Soujanya2004/wanderlust-2024/pull/282", - "https://github.com/Soujanya2004/wanderlust-2024/pull/274", - "https://github.com/Soujanya2004/wanderlust-2024/pull/271", - "https://github.com/Soujanya2004/wanderlust-2024/pull/270", - "https://github.com/Soujanya2004/wanderlust-2024/pull/265", - "https://github.com/Soujanya2004/wanderlust-2024/pull/262", - "https://github.com/Soujanya2004/wanderlust-2024/pull/260", - "https://github.com/Soujanya2004/wanderlust-2024/pull/259", - "https://github.com/Soujanya2004/wanderlust-2024/pull/258", - "https://github.com/Soujanya2004/wanderlust-2024/pull/251", - "https://github.com/Soujanya2004/wanderlust-2024/pull/250", - "https://github.com/Soujanya2004/wanderlust-2024/pull/249", - "https://github.com/Soujanya2004/wanderlust-2024/pull/247", - "https://github.com/Soujanya2004/wanderlust-2024/pull/229", - "https://github.com/Soujanya2004/wanderlust-2024/pull/228", - "https://github.com/Soujanya2004/wanderlust-2024/pull/227", - "https://github.com/Soujanya2004/wanderlust-2024/pull/226", - "https://github.com/Soujanya2004/wanderlust-2024/pull/224", - "https://github.com/Soujanya2004/wanderlust-2024/pull/223", - "https://github.com/Soujanya2004/wanderlust-2024/pull/217", - "https://github.com/Soujanya2004/wanderlust-2024/pull/216", - "https://github.com/Soujanya2004/wanderlust-2024/pull/208", - "https://github.com/Soujanya2004/wanderlust-2024/pull/207", - "https://github.com/Soujanya2004/wanderlust-2024/pull/198", - "https://github.com/Soujanya2004/wanderlust-2024/pull/191", - "https://github.com/Soujanya2004/wanderlust-2024/pull/190", - "https://github.com/Soujanya2004/wanderlust-2024/pull/189", - "https://github.com/Soujanya2004/wanderlust-2024/pull/164", - "https://github.com/Soujanya2004/wanderlust-2024/pull/157", - "https://github.com/Soujanya2004/wanderlust-2024/pull/90", - "https://github.com/Soujanya2004/wanderlust-2024/pull/80", - "https://github.com/VigneshDevHub/CampX/pull/334", - "https://github.com/VigneshDevHub/CampX/pull/333", - "https://github.com/VigneshDevHub/CampX/pull/318", - "https://github.com/VigneshDevHub/CampX/pull/313", - "https://github.com/VigneshDevHub/CampX/pull/243", - "https://github.com/VigneshDevHub/CampX/pull/182", - "https://github.com/VigneshDevHub/CampX/pull/165", - "https://github.com/UTSAVS26/PyVerse/pull/667", - "https://github.com/GSSoC24/Postman-Challenge/pull/2338" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 11 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115717039?u=d86f6a86d63432afcd2df20f13677bd9486688d8&v=4", - "login": "yashksaini-coder", - "url": "https://github.com/yashksaini-coder", - "score": 2180, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1655", - "https://github.com/ajay-dhangar/algo/pull/1596", - "https://github.com/ajay-dhangar/algo/pull/1592", - "https://github.com/ajay-dhangar/algo/pull/1549", - "https://github.com/ajay-dhangar/algo/pull/1360", - "https://github.com/ajay-dhangar/algo/pull/1336", - "https://github.com/ajay-dhangar/algo/pull/1247", - "https://github.com/ajay-dhangar/algo/pull/102", - "https://github.com/vishanurag/Canvas-Editor/pull/519", - "https://github.com/vishanurag/Canvas-Editor/pull/443", - "https://github.com/vishanurag/Canvas-Editor/pull/321", - "https://github.com/vishanurag/Canvas-Editor/pull/216", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/156", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/44", - "https://github.com/dhairyagothi/StationGuide/pull/276", - "https://github.com/kom-senapati/bot-verse/pull/46", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/643", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/610", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/583", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/490", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/301", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/238", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/231", - "https://github.com/kartikayasijaa/talk-trove/pull/140", - "https://github.com/kartikayasijaa/talk-trove/pull/130", - "https://github.com/mansiruhil13/Bobble-AI/pull/829", - "https://github.com/mansiruhil13/Bobble-AI/pull/248", - "https://github.com/mansiruhil13/Bobble-AI/pull/143", - "https://github.com/mansiruhil13/Bobble-AI/pull/53", - "https://github.com/mansiruhil13/Bobble-AI/pull/37", - "https://github.com/AlgoGenesis/C/pull/1501", - "https://github.com/AlgoGenesis/C/pull/1376", - "https://github.com/AlgoGenesis/C/pull/1262", - "https://github.com/AlgoGenesis/C/pull/900", - "https://github.com/AlgoGenesis/C/pull/858", - "https://github.com/AlgoGenesis/C/pull/855", - "https://github.com/AlgoGenesis/C/pull/810", - "https://github.com/AlgoGenesis/C/pull/649", - "https://github.com/AlgoGenesis/C/pull/647", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1292", - "https://github.com/PriyaGhosal/BuddyTrail/pull/416", - "https://github.com/PriyaGhosal/BuddyTrail/pull/406", - "https://github.com/PriyaGhosal/BuddyTrail/pull/275", - "https://github.com/PriyaGhosal/BuddyTrail/pull/207", - "https://github.com/iamrahulmahato/master-web-development/pull/1979", - "https://github.com/iamrahulmahato/master-web-development/pull/827", - "https://github.com/recodehive/machine-learning-repos/pull/1605", - "https://github.com/Soujanya2004/wanderlust-2024/pull/330", - "https://github.com/Soujanya2004/wanderlust-2024/pull/325", - "https://github.com/UTSAVS26/PySnippets/pull/297", - "https://github.com/UTSAVS26/PySnippets/pull/282", - "https://github.com/UTSAVS26/PySnippets/pull/268", - "https://github.com/UTSAVS26/PySnippets/pull/253", - "https://github.com/UTSAVS26/PySnippets/pull/251", - "https://github.com/UTSAVS26/PySnippets/pull/198", - "https://github.com/UTSAVS26/PySnippets/pull/189", - "https://github.com/UTSAVS26/PySnippets/pull/175", - "https://github.com/UTSAVS26/PySnippets/pull/163", - "https://github.com/UTSAVS26/PySnippets/pull/152", - "https://github.com/UTSAVS26/PySnippets/pull/145", - "https://github.com/UTSAVS26/PySnippets/pull/123", - "https://github.com/vansh-codes/Gityzer/pull/14", - "https://github.com/notsoocool/codecache/pull/75", - "https://github.com/notsoocool/codecache/pull/55", - "https://github.com/Yashgabani845/hiring-portal/pull/116", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/29", - "https://github.com/yashasvini121/predictive-calc/pull/164", - "https://github.com/AmateursLeague/sneaky-package/pull/192", - "https://github.com/AmateursLeague/sneaky-package/pull/165", - "https://github.com/AmateursLeague/sneaky-package/pull/145", - "https://github.com/AmateursLeague/sneaky-package/pull/132", - "https://github.com/AmateursLeague/sneaky-package/pull/84", - "https://github.com/AmateursLeague/sneaky-package/pull/71", - "https://github.com/UTSAVS26/PyVerse/pull/978", - "https://github.com/UTSAVS26/PyVerse/pull/875", - "https://github.com/UTSAVS26/PyVerse/pull/836", - "https://github.com/UTSAVS26/PyVerse/pull/835", - "https://github.com/UTSAVS26/PyVerse/pull/834", - "https://github.com/UTSAVS26/PyVerse/pull/808", - "https://github.com/UTSAVS26/PyVerse/pull/792", - "https://github.com/UTSAVS26/PyVerse/pull/695", - "https://github.com/UTSAVS26/PyVerse/pull/655", - "https://github.com/UTSAVS26/PyVerse/pull/619", - "https://github.com/UTSAVS26/PyVerse/pull/384", - "https://github.com/UTSAVS26/PyVerse/pull/380", - "https://github.com/UTSAVS26/PyVerse/pull/350", - "https://github.com/UTSAVS26/PyVerse/pull/345", - "https://github.com/UTSAVS26/PyVerse/pull/107", - "https://github.com/GSSoC24/Postman-Challenge/pull/1797" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 18 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181578777?u=65230ace0e27604d5ae6af30391a9d82c2079871&v=4", - "login": "smog-root", - "url": "https://github.com/smog-root", - "score": 2100, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/242", - "https://github.com/jinx-vi-0/passop/pull/113", - "https://github.com/jinx-vi-0/BlogLog/pull/89", - "https://github.com/aditya-bhaumik/Pathsphere/pull/787", - "https://github.com/ajay-dhangar/algo/pull/1167", - "https://github.com/ajay-dhangar/algo/pull/943", - "https://github.com/ajaynegi45/LibraryMan-API/pull/78", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/471", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/437", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/355", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/133", - "https://github.com/ANSHIKA-26/WordWise/pull/1230", - "https://github.com/anuragverma108/SwapReads/pull/3426", - "https://github.com/vishanurag/Canvas-Editor/pull/821", - "https://github.com/ayush-that/FinVeda/pull/2347", - "https://github.com/ayush-that/FinVeda/pull/1716", - "https://github.com/ayush-that/FinVeda/pull/1634", - "https://github.com/ayush-that/FinVeda/pull/1596", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/344", - "https://github.com/Harshdev098/Research-Nexas/pull/313", - "https://github.com/Harshdev098/Research-Nexas/pull/275", - "https://github.com/Harshdev098/Research-Nexas/pull/180", - "https://github.com/Harshdev098/Research-Nexas/pull/161", - "https://github.com/Harshdev098/Research-Nexas/pull/145", - "https://github.com/Harshdev098/Research-Nexas/pull/142", - "https://github.com/Harshdev098/Research-Nexas/pull/128", - "https://github.com/Harshdev098/Research-Nexas/pull/104", - "https://github.com/Bitbox-Connect/Bitbox/pull/208", - "https://github.com/Bitbox-Connect/Bitbox/pull/149", - "https://github.com/prajapatihet/donorconnect/pull/79", - "https://github.com/jahnvisahni31/DesignDeck/pull/158", - "https://github.com/kom-senapati/bot-verse/pull/122", - "https://github.com/Luson045/medi-connect/pull/515", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/388", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/293", - "https://github.com/c0sm0void/ReVot/pull/96", - "https://github.com/c0sm0void/ReVot/pull/56", - "https://github.com/MitulSonagara/truth-tunnel/pull/220", - "https://github.com/MitulSonagara/truth-tunnel/pull/157", - "https://github.com/ombhojane/explainableai/pull/122", - "https://github.com/ombhojane/explainableai/pull/114", - "https://github.com/PriyaGhosal/BuddyTrail/pull/647", - "https://github.com/Rakshit-gen/Slanine/pull/80", - "https://github.com/Rakshit-gen/Slanine/pull/75", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/368", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/155", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/147", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/114", - "https://github.com/SurajPratap10/Imagine_AI/pull/1304", - "https://github.com/SurajPratap10/Imagine_AI/pull/1283", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/168", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/424", - "https://github.com/swarooppatilx/scruter/pull/241", - "https://github.com/swarooppatilx/scruter/pull/204", - "https://github.com/tanishaness/SPROCTOR/pull/60", - "https://github.com/tanishaness/SPROCTOR/pull/34", - "https://github.com/tanishaness/SPROCTOR/pull/26", - "https://github.com/multiverseweb/Dataverse/pull/216", - "https://github.com/multiverseweb/Dataverse/pull/187", - "https://github.com/multiverseweb/Dataverse/pull/139", - "https://github.com/TejasNasre/nexmeet/pull/160", - "https://github.com/tushargupta1504/Medical-Website/pull/581", - "https://github.com/vansh-codes/Gityzer/pull/46", - "https://github.com/VigneshDevHub/CampX/pull/262", - "https://github.com/VigneshDevHub/CampX/pull/240", - "https://github.com/Vimall03/Alimento/pull/151", - "https://github.com/Vimall03/Alimento/pull/147", - "https://github.com/Vin205/Enyanjyoti/pull/337", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1082", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1044", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/916", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/770", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/753", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/590", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/587", - "https://github.com/yagnik2411/Quiz-Genius/pull/114", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/122", - "https://github.com/apu52/Travel_Website/pull/1556", - "https://github.com/4darsh-Dev/DecenTrade/pull/126", - "https://github.com/UTSAVS26/PyVerse/pull/730", - "https://github.com/GSSoC24/Postman-Challenge/pull/2160", - "https://github.com/kvcops/KV-Nexus/pull/59" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137872276?v=4", - "login": "sezallagwal", - "url": "https://github.com/sezallagwal", - "score": 2020, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/131", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/521", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/142", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/137", - "https://github.com/Code-Social/official-website/pull/371", - "https://github.com/codeaashu/DevDisplay/pull/460", - "https://github.com/codeaashu/DevDisplay/pull/459", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1004", - "https://github.com/mdazfar2/HelpOps-Hub/pull/1393", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/115", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/95", - "https://github.com/dhairyagothi/StationGuide/pull/451", - "https://github.com/Bitbox-Connect/Bitbox/pull/300", - "https://github.com/Bitbox-Connect/Bitbox/pull/296", - "https://github.com/Bitbox-Connect/Bitbox/pull/209", - "https://github.com/himeshparashar/Social-Morph/pull/159", - "https://github.com/himeshparashar/Social-Morph/pull/121", - "https://github.com/jahnvisahni31/DesignDeck/pull/212", - "https://github.com/jahnvisahni31/DesignDeck/pull/92", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/52", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/51", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/47", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/46", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/34", - "https://github.com/MitulSonagara/truth-tunnel/pull/278", - "https://github.com/MitulSonagara/truth-tunnel/pull/225", - "https://github.com/MitulSonagara/truth-tunnel/pull/58", - "https://github.com/MitulSonagara/truth-tunnel/pull/57", - "https://github.com/Puskar-Roy/create-my-api/pull/83", - "https://github.com/iamrahulmahato/master-web-development/pull/1804", - "https://github.com/rahulsainlll/git-trace/pull/153", - "https://github.com/rahulsainlll/git-trace/pull/103", - "https://github.com/Rakshit-gen/Slanine/pull/159", - "https://github.com/Rakshit-gen/Slanine/pull/158", - "https://github.com/Rakshit-gen/Slanine/pull/112", - "https://github.com/Rakshit-gen/Slanine/pull/96", - "https://github.com/Shreyaa173/Code-Book/pull/420", - "https://github.com/subhadeeproy3902/trailgo/pull/31", - "https://github.com/SurajPratap10/Imagine_AI/pull/1355", - "https://github.com/TenzDelek/DearDiary/pull/104", - "https://github.com/Trisha-tech/OnlineBookSales/pull/505", - "https://github.com/visheshrwl/Uber-like/pull/78", - "https://github.com/visheshrwl/Uber-like/pull/70", - "https://github.com/visheshrwl/Uber-like/pull/66", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1085", - "https://github.com/notsoocool/codecache/pull/167", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/288", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/156", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/154", - "https://github.com/4darsh-Dev/DecenTrade/pull/141", - "https://github.com/vanshchauhan21/CryptoTracker/pull/217", - "https://github.com/vanshchauhan21/CryptoTracker/pull/193", - "https://github.com/vanshchauhan21/CryptoTracker/pull/87", - "https://github.com/GSSoC24/Postman-Challenge/pull/2169" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 8 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177312486?u=41566337e57d6b3136845d87775a3a34bd2ea46a&v=4", - "login": "Son7c", - "url": "https://github.com/Son7c", - "score": 2010, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/596", - "https://github.com/ankit071105/Ticket-Booking/pull/449", - "https://github.com/vishanurag/Canvas-Editor/pull/882", - "https://github.com/vishanurag/Canvas-Editor/pull/797", - "https://github.com/vishanurag/Canvas-Editor/pull/742", - "https://github.com/vishanurag/Canvas-Editor/pull/732", - "https://github.com/ayush-that/FinVeda/pull/2599", - "https://github.com/ayush-that/FinVeda/pull/2520", - "https://github.com/ayush-that/FinVeda/pull/2512", - "https://github.com/ayush-that/FinVeda/pull/2502", - "https://github.com/ayush-that/FinVeda/pull/2491", - "https://github.com/ayush-that/FinVeda/pull/2411", - "https://github.com/ayush-that/FinVeda/pull/2403", - "https://github.com/ayush-that/FinVeda/pull/2317", - "https://github.com/ayush-that/FinVeda/pull/2259", - "https://github.com/ayush-that/FinVeda/pull/2134", - "https://github.com/ayush-that/FinVeda/pull/2081", - "https://github.com/ayush-that/FinVeda/pull/2044", - "https://github.com/ayush-that/FinVeda/pull/2039", - "https://github.com/ayush-that/FinVeda/pull/2036", - "https://github.com/ayush-that/FinVeda/pull/2016", - "https://github.com/ayush-that/FinVeda/pull/1933", - "https://github.com/ayush-that/FinVeda/pull/1918", - "https://github.com/ayush-that/FinVeda/pull/1902", - "https://github.com/ayush-that/FinVeda/pull/1852", - "https://github.com/ayush-that/FinVeda/pull/1842", - "https://github.com/ayush-that/FinVeda/pull/1836", - "https://github.com/ayush-that/FinVeda/pull/1751", - "https://github.com/ayush-that/FinVeda/pull/1728", - "https://github.com/ayush-that/FinVeda/pull/1721", - "https://github.com/ayush-that/FinVeda/pull/1703", - "https://github.com/ayush-that/FinVeda/pull/1673", - "https://github.com/ayush-that/FinVeda/pull/1663", - "https://github.com/ayush-that/FinVeda/pull/1573", - "https://github.com/ayush-that/FinVeda/pull/1545", - "https://github.com/ayush-that/FinVeda/pull/1519", - "https://github.com/ayush-that/FinVeda/pull/1489", - "https://github.com/ayush-that/FinVeda/pull/1447", - "https://github.com/ayush-that/FinVeda/pull/1412", - "https://github.com/ayush-that/FinVeda/pull/1402", - "https://github.com/ayush-that/FinVeda/pull/1373", - "https://github.com/ayush-that/FinVeda/pull/1367", - "https://github.com/ayush-that/FinVeda/pull/1332", - "https://github.com/ayush-that/FinVeda/pull/1321", - "https://github.com/ayush-that/FinVeda/pull/1308", - "https://github.com/ayush-that/FinVeda/pull/1253", - "https://github.com/ayush-that/FinVeda/pull/1242", - "https://github.com/ayush-that/FinVeda/pull/1232", - "https://github.com/ayush-that/FinVeda/pull/1191", - "https://github.com/ayush-that/FinVeda/pull/1181", - "https://github.com/ayush-that/FinVeda/pull/1130", - "https://github.com/ayush-that/FinVeda/pull/1062", - "https://github.com/Open-Code-Crafters/FitFlex/pull/205", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1417", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1209", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1155", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1091", - "https://github.com/PriyaGhosal/BuddyTrail/pull/978", - "https://github.com/PriyaGhosal/BuddyTrail/pull/752", - "https://github.com/PriyaGhosal/BuddyTrail/pull/686", - "https://github.com/PriyaGhosal/BuddyTrail/pull/667", - "https://github.com/PriyaGhosal/BuddyTrail/pull/644", - "https://github.com/PriyaGhosal/BuddyTrail/pull/609", - "https://github.com/PriyaGhosal/BuddyTrail/pull/454", - "https://github.com/GSSoC24/Postman-Challenge/pull/1845" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 21 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152315710?u=5788444209594d68e7e61dfba126df1ae7f8b855&v=4", - "login": "alo7lika", - "url": "https://github.com/alo7lika", - "score": 2005, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/953", - "https://github.com/abhisheks008/DL-Simplified/pull/930", - "https://github.com/aditya-bhaumik/Pathsphere/pull/654", - "https://github.com/ajay-dhangar/algo/pull/1289", - "https://github.com/ajay-dhangar/algo/pull/1284", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/625", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/587", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/586", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/574", - "https://github.com/vishanurag/Canvas-Editor/pull/1080", - "https://github.com/vishanurag/Canvas-Editor/pull/1079", - "https://github.com/vishanurag/Canvas-Editor/pull/1078", - "https://github.com/vishanurag/Canvas-Editor/pull/1032", - "https://github.com/vishanurag/Canvas-Editor/pull/1025", - "https://github.com/ayush-that/FinVeda/pull/2048", - "https://github.com/ayush-that/FinVeda/pull/1847", - "https://github.com/ayush-that/FinVeda/pull/1757", - "https://github.com/Harshdev098/Research-Nexas/pull/320", - "https://github.com/Harshdev098/Research-Nexas/pull/319", - "https://github.com/Harshdev098/Research-Nexas/pull/253", - "https://github.com/Harshdev098/Research-Nexas/pull/234", - "https://github.com/Harshdev098/Research-Nexas/pull/189", - "https://github.com/Harshdev098/Research-Nexas/pull/167", - "https://github.com/Harshdev098/Research-Nexas/pull/143", - "https://github.com/Harshdev098/Research-Nexas/pull/138", - "https://github.com/Harshdev098/Research-Nexas/pull/136", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/360", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/207", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/176", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/165", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/258", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/130", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/671", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/667", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/520", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/519", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/427", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/371", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/369", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/259", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/251", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/229", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/227", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/223", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/215", - "https://github.com/ombhojane/explainableai/pull/130", - "https://github.com/ombhojane/explainableai/pull/120", - "https://github.com/ombhojane/explainableai/pull/115", - "https://github.com/ombhojane/explainableai/pull/87", - "https://github.com/AlgoGenesis/C/pull/1518", - "https://github.com/AlgoGenesis/C/pull/1384", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1628", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1573", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1566", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1526", - "https://github.com/iamrahulmahato/master-web-development/pull/1903", - "https://github.com/iamrahulmahato/master-web-development/pull/1889", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/294", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/182", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/170", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/139", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/138", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/128", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/81", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/78", - "https://github.com/Git21221/form-snippet/pull/52", - "https://github.com/Git21221/form-snippet/pull/41", - "https://github.com/recodehive/machine-learning-repos/pull/1555", - "https://github.com/recodehive/machine-learning-repos/pull/1360", - "https://github.com/recodehive/machine-learning-repos/pull/1296", - "https://github.com/recodehive/Scrape-ML/pull/301", - "https://github.com/recodehive/Scrape-ML/pull/300", - "https://github.com/recodehive/Scrape-ML/pull/283", - "https://github.com/recodehive/Scrape-ML/pull/282", - "https://github.com/daccotta-org/daccotta/pull/267", - "https://github.com/daccotta-org/daccotta/pull/253", - "https://github.com/daccotta-org/daccotta/pull/242", - "https://github.com/swarooppatilx/scruter/pull/362", - "https://github.com/swarooppatilx/scruter/pull/359", - "https://github.com/swarooppatilx/scruter/pull/351", - "https://github.com/VigneshDevHub/CampX/pull/355", - "https://github.com/VigneshDevHub/CampX/pull/353", - "https://github.com/VigneshDevHub/CampX/pull/339", - "https://github.com/VigneshDevHub/CampX/pull/332", - "https://github.com/VigneshDevHub/CampX/pull/312", - "https://github.com/VigneshDevHub/CampX/pull/310", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/364", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/335", - "https://github.com/UTSAVS26/PyVerse/pull/945", - "https://github.com/UTSAVS26/PyVerse/pull/942", - "https://github.com/UTSAVS26/PyVerse/pull/837", - "https://github.com/UTSAVS26/PyVerse/pull/734", - "https://github.com/UTSAVS26/PyVerse/pull/689", - "https://github.com/UTSAVS26/PyVerse/pull/585", - "https://github.com/UTSAVS26/PyVerse/pull/441", - "https://github.com/UTSAVS26/PyVerse/pull/292", - "https://github.com/UTSAVS26/PyVerse/pull/279", - "https://github.com/UTSAVS26/PyVerse/pull/167", - "https://github.com/UTSAVS26/PyVerse/pull/122", - "https://github.com/GSSoC24/Postman-Challenge/pull/2559" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 9 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117751107?u=fbd29c61f1725561be7845eae1be37652795a01d&v=4", - "login": "AswaniBolisetti", - "url": "https://github.com/AswaniBolisetti", - "score": 1965, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1125", - "https://github.com/ajay-dhangar/algo/pull/666", - "https://github.com/ajay-dhangar/algo/pull/664", - "https://github.com/ajay-dhangar/algo/pull/565", - "https://github.com/ajay-dhangar/algo/pull/531", - "https://github.com/VesperAkshay/qr-code-generator/pull/50", - "https://github.com/ankit071105/Ticket-Booking/pull/835", - "https://github.com/ankit071105/Ticket-Booking/pull/827", - "https://github.com/ankit071105/Ticket-Booking/pull/823", - "https://github.com/ankit071105/Ticket-Booking/pull/320", - "https://github.com/ankit071105/Ticket-Booking/pull/72", - "https://github.com/arjunatapadkar/codeteria/pull/283", - "https://github.com/arjunatapadkar/codeteria/pull/281", - "https://github.com/arjunatapadkar/codeteria/pull/280", - "https://github.com/arjunatapadkar/codeteria/pull/276", - "https://github.com/arjunatapadkar/codeteria/pull/274", - "https://github.com/arjunatapadkar/codeteria/pull/208", - "https://github.com/arjunatapadkar/codeteria/pull/193", - "https://github.com/arjunatapadkar/codeteria/pull/192", - "https://github.com/arjunatapadkar/codeteria/pull/164", - "https://github.com/arjunatapadkar/codeteria/pull/128", - "https://github.com/arjunatapadkar/codeteria/pull/105", - "https://github.com/ayush-that/FinVeda/pull/1189", - "https://github.com/divyansh-2005/FinNews/pull/167", - "https://github.com/Bitbox-Connect/Bitbox/pull/305", - "https://github.com/Bitbox-Connect/Bitbox/pull/301", - "https://github.com/Bitbox-Connect/Bitbox/pull/295", - "https://github.com/Bitbox-Connect/Bitbox/pull/294", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/215", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/57", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/704", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/697", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/677", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/660", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/352", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/126", - "https://github.com/Megh2005/Med-o-Next/pull/68", - "https://github.com/MitulSonagara/truth-tunnel/pull/270", - "https://github.com/MitulSonagara/truth-tunnel/pull/254", - "https://github.com/MitulSonagara/truth-tunnel/pull/185", - "https://github.com/MitulSonagara/truth-tunnel/pull/156", - "https://github.com/MitulSonagara/truth-tunnel/pull/132", - "https://github.com/MitulSonagara/truth-tunnel/pull/83", - "https://github.com/MitulSonagara/truth-tunnel/pull/82", - "https://github.com/MitulSonagara/truth-tunnel/pull/81", - "https://github.com/param-code/counter-app/pull/317", - "https://github.com/param-code/counter-app/pull/280", - "https://github.com/param-code/counter-app/pull/279", - "https://github.com/param-code/counter-app/pull/268", - "https://github.com/param-code/counter-app/pull/205", - "https://github.com/Puskar-Roy/create-my-api/pull/148", - "https://github.com/Puskar-Roy/create-my-api/pull/147", - "https://github.com/Puskar-Roy/create-my-api/pull/113", - "https://github.com/Puskar-Roy/create-my-api/pull/45", - "https://github.com/samyakmaitre/eventmint/pull/81", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/23", - "https://github.com/swarooppatilx/scruter/pull/380", - "https://github.com/swarooppatilx/scruter/pull/378", - "https://github.com/swarooppatilx/scruter/pull/271", - "https://github.com/swarooppatilx/scruter/pull/270", - "https://github.com/swarooppatilx/scruter/pull/247", - "https://github.com/swarooppatilx/scruter/pull/182", - "https://github.com/swarooppatilx/scruter/pull/166", - "https://github.com/swarooppatilx/scruter/pull/19", - "https://github.com/Trisha-tech/OnlineBookSales/pull/539", - "https://github.com/Vimall03/Alimento/pull/95", - "https://github.com/Vimall03/Alimento/pull/94", - "https://github.com/GVishnudhasan/NoDueProject/pull/21", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/159", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/157", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/92", - "https://github.com/GSSoC24/Postman-Challenge/pull/1925" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161798182?u=b56d57123a3be947048a2c750c3f505428e1f1c9&v=4", - "login": "neeru24", - "url": "https://github.com/neeru24", - "score": 1935, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/53", - "https://github.com/aditya-bhaumik/Pathsphere/pull/975", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/181", - "https://github.com/ajaynegi45/LibraryMan-API/pull/71", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/282", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/23", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/255", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/149", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/74", - "https://github.com/yatulearn/yatulearn/pull/312", - "https://github.com/ankit071105/Ticket-Booking/pull/335", - "https://github.com/ankit071105/Ticket-Booking/pull/225", - "https://github.com/anuj123upadhyay/MegaBlog/pull/49", - "https://github.com/vishanurag/Canvas-Editor/pull/20", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/491", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/354", - "https://github.com/ayush-that/FinVeda/pull/2576", - "https://github.com/ayush-that/FinVeda/pull/2560", - "https://github.com/ayush-that/FinVeda/pull/2536", - "https://github.com/ayush-that/FinVeda/pull/2521", - "https://github.com/ayush-that/FinVeda/pull/2514", - "https://github.com/ayush-that/FinVeda/pull/2509", - "https://github.com/ayush-that/FinVeda/pull/2438", - "https://github.com/ayush-that/FinVeda/pull/2435", - "https://github.com/ayush-that/FinVeda/pull/2432", - "https://github.com/ayush-that/FinVeda/pull/2327", - "https://github.com/ayush-that/FinVeda/pull/2254", - "https://github.com/ayush-that/FinVeda/pull/2252", - "https://github.com/ayush-that/FinVeda/pull/2238", - "https://github.com/ayush-that/FinVeda/pull/2184", - "https://github.com/ayush-that/FinVeda/pull/2145", - "https://github.com/ayush-that/FinVeda/pull/2142", - "https://github.com/ayush-that/FinVeda/pull/2004", - "https://github.com/ayush-that/FinVeda/pull/2002", - "https://github.com/ayush-that/FinVeda/pull/1901", - "https://github.com/ayush-that/FinVeda/pull/1897", - "https://github.com/ayush-that/FinVeda/pull/1261", - "https://github.com/ayush-that/FinVeda/pull/1255", - "https://github.com/ayush-that/FinVeda/pull/1111", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/519", - "https://github.com/dohinaf/basic-icecream-website/pull/173", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/486", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/436", - "https://github.com/OpenTekHub/cryptobot/pull/32", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/270", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/60", - "https://github.com/Jiggy9/JCT/pull/9", - "https://github.com/kom-senapati/bot-verse/pull/119", - "https://github.com/kartikayasijaa/talk-trove/pull/88", - "https://github.com/mansiruhil13/Bobble-AI/pull/538", - "https://github.com/mansiruhil13/Bobble-AI/pull/537", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/508", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/491", - "https://github.com/Anjaliavv51/Retro/pull/333", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/71", - "https://github.com/andoriyaprashant/OpSo/pull/366", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1676", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1673", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1664", - "https://github.com/PriyaGhosal/BuddyTrail/pull/628", - "https://github.com/PriyaGhosal/BuddyTrail/pull/596", - "https://github.com/PriyaGhosal/BuddyTrail/pull/202", - "https://github.com/Puskar-Roy/create-my-api/pull/88", - "https://github.com/Ratnesh-Team/Rehabify/pull/93", - "https://github.com/samyakmaitre/eventmint/pull/343", - "https://github.com/recodehive/machine-learning-repos/pull/1441", - "https://github.com/recodehive/machine-learning-repos/pull/1440", - "https://github.com/recodehive/machine-learning-repos/pull/1422", - "https://github.com/recodehive/machine-learning-repos/pull/1412", - "https://github.com/recodehive/machine-learning-repos/pull/1394", - "https://github.com/recodehive/machine-learning-repos/pull/1368", - "https://github.com/subhadipbhowmik/bio-branch/pull/133", - "https://github.com/07sumit1002/CabRental/pull/354", - "https://github.com/SurajPratap10/Imagine_AI/pull/1215", - "https://github.com/SurajPratap10/Imagine_AI/pull/1214", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/611", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/562", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/29", - "https://github.com/swarooppatilx/scruter/pull/263", - "https://github.com/swarooppatilx/scruter/pull/206", - "https://github.com/swarooppatilx/scruter/pull/205", - "https://github.com/tanishaness/SPROCTOR/pull/41", - "https://github.com/multiverseweb/Dataverse/pull/175", - "https://github.com/VigneshDevHub/CampX/pull/226", - "https://github.com/Vimall03/Alimento/pull/85", - "https://github.com/Vin205/Enyanjyoti/pull/392", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/780", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/643", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/637", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/350", - "https://github.com/Scribbie-Notes/notes-app/pull/57", - "https://github.com/apu52/Travel_Website/pull/1534", - "https://github.com/apu52/METAVERSE/pull/1280", - "https://github.com/4darsh-Dev/DecenTrade/pull/28", - "https://github.com/4darsh-Dev/DecenTrade/pull/27", - "https://github.com/GSSoC24/Postman-Challenge/pull/2331" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165468244?u=733562534ba9f4ce6a29aeac4f60ca412994b018&v=4", - "login": "harshbhar0629", - "url": "https://github.com/harshbhar0629", - "score": 1930, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/BhattAnsh/Quiz-Quest/pull/136", - "https://github.com/BhattAnsh/Quiz-Quest/pull/131", - "https://github.com/BhattAnsh/Quiz-Quest/pull/130", - "https://github.com/BhattAnsh/Quiz-Quest/pull/129", - "https://github.com/BhattAnsh/Quiz-Quest/pull/123", - "https://github.com/BhattAnsh/Quiz-Quest/pull/120", - "https://github.com/BhattAnsh/Quiz-Quest/pull/112", - "https://github.com/BhattAnsh/Quiz-Quest/pull/109", - "https://github.com/BhattAnsh/Quiz-Quest/pull/97", - "https://github.com/ANSHIKA-26/WordWise/pull/1014", - "https://github.com/ANSHIKA-26/WordWise/pull/1013", - "https://github.com/ANSHIKA-26/WordWise/pull/967", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/92", - "https://github.com/Bitbox-Connect/Bitbox/pull/170", - "https://github.com/Bitbox-Connect/Bitbox/pull/122", - "https://github.com/Bitbox-Connect/Bitbox/pull/121", - "https://github.com/Bitbox-Connect/Bitbox/pull/120", - "https://github.com/param-code/counter-app/pull/148", - "https://github.com/param-code/counter-app/pull/115", - "https://github.com/param-code/counter-app/pull/113", - "https://github.com/param-code/counter-app/pull/111", - "https://github.com/samyakmaitre/eventmint/pull/38", - "https://github.com/Shreyaa173/Code-Book/pull/456", - "https://github.com/Shreyaa173/Code-Book/pull/445", - "https://github.com/Shreyaa173/Code-Book/pull/443", - "https://github.com/Shreyaa173/Code-Book/pull/435", - "https://github.com/Shreyaa173/Code-Book/pull/430", - "https://github.com/Shreyaa173/Code-Book/pull/429", - "https://github.com/Shreyaa173/Code-Book/pull/415", - "https://github.com/Shreyaa173/Code-Book/pull/414", - "https://github.com/Shreyaa173/Code-Book/pull/401", - "https://github.com/Shreyaa173/Code-Book/pull/400", - "https://github.com/Shreyaa173/Code-Book/pull/399", - "https://github.com/Shreyaa173/Code-Book/pull/387", - "https://github.com/Shreyaa173/Code-Book/pull/330", - "https://github.com/Shreyaa173/Code-Book/pull/329", - "https://github.com/daccotta-org/daccotta/pull/206", - "https://github.com/soham0005/ElectroKart/pull/282", - "https://github.com/soham0005/ElectroKart/pull/202", - "https://github.com/soham0005/ElectroKart/pull/182", - "https://github.com/Soujanya2004/wanderlust-2024/pull/293", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/136", - "https://github.com/Vin205/Enyanjyoti/pull/349", - "https://github.com/Vin205/Enyanjyoti/pull/305", - "https://github.com/Vin205/Enyanjyoti/pull/304", - "https://github.com/Vin205/Enyanjyoti/pull/253", - "https://github.com/Vin205/Enyanjyoti/pull/252", - "https://github.com/Vin205/Enyanjyoti/pull/251", - "https://github.com/Vin205/Enyanjyoti/pull/250", - "https://github.com/Vin205/Enyanjyoti/pull/249", - "https://github.com/Vin205/Enyanjyoti/pull/143", - "https://github.com/Vin205/Enyanjyoti/pull/142", - "https://github.com/Vin205/Enyanjyoti/pull/141", - "https://github.com/Vin205/Enyanjyoti/pull/138", - "https://github.com/Scribbie-Notes/notes-app/pull/316", - "https://github.com/Scribbie-Notes/notes-app/pull/262", - "https://github.com/Scribbie-Notes/notes-app/pull/121", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/177", - "https://github.com/GSSoC24/Postman-Challenge/pull/2362" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165504668?v=4", - "login": "KapuluruBhuvaneswariVspdbct", - "url": "https://github.com/KapuluruBhuvaneswariVspdbct", - "score": 1915, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1073", - "https://github.com/ajay-dhangar/algo/pull/765", - "https://github.com/ajay-dhangar/algo/pull/755", - "https://github.com/ajay-dhangar/algo/pull/749", - "https://github.com/ajay-dhangar/algo/pull/747", - "https://github.com/ajay-dhangar/algo/pull/644", - "https://github.com/ajay-dhangar/algo/pull/636", - "https://github.com/ajay-dhangar/algo/pull/473", - "https://github.com/ajay-dhangar/algo/pull/440", - "https://github.com/ajay-dhangar/algo/pull/415", - "https://github.com/ajay-dhangar/algo/pull/316", - "https://github.com/anuragverma108/SwapReads/pull/4423", - "https://github.com/anuragverma108/SwapReads/pull/4388", - "https://github.com/anuragverma108/SwapReads/pull/4337", - "https://github.com/anuragverma108/SwapReads/pull/4243", - "https://github.com/anuragverma108/SwapReads/pull/4215", - "https://github.com/anuragverma108/SwapReads/pull/4208", - "https://github.com/anuragverma108/SwapReads/pull/4185", - "https://github.com/anuragverma108/SwapReads/pull/4123", - "https://github.com/anuragverma108/SwapReads/pull/4106", - "https://github.com/anuragverma108/SwapReads/pull/4087", - "https://github.com/anuragverma108/SwapReads/pull/4085", - "https://github.com/anuragverma108/SwapReads/pull/3097", - "https://github.com/arjunatapadkar/codeteria/pull/158", - "https://github.com/ayush-that/FinVeda/pull/1941", - "https://github.com/ayush-that/FinVeda/pull/1796", - "https://github.com/ayush-that/FinVeda/pull/1015", - "https://github.com/ayush-that/FinVeda/pull/1001", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/536", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/477", - "https://github.com/Harshdev098/Research-Nexas/pull/71", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/318", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/317", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/316", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/309", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/432", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/169", - "https://github.com/AlgoGenesis/C/pull/361", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/135", - "https://github.com/iamrahulmahato/master-web-development/pull/1647", - "https://github.com/iamrahulmahato/master-web-development/pull/1593", - "https://github.com/iamrahulmahato/master-web-development/pull/793", - "https://github.com/Rakshit-gen/Slanine/pull/151", - "https://github.com/Rakshit-gen/Slanine/pull/101", - "https://github.com/Trisha-tech/OnlineBookSales/pull/355", - "https://github.com/tushargupta1504/Medical-Website/pull/305", - "https://github.com/notsoocool/codecache/pull/161", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/156", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/100", - "https://github.com/GSSoC24/Postman-Challenge/pull/1871" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-31", - "2024-11-01" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154678140?u=39925f5ff7a57d7bfd2accf93170bf826760d237&v=4", - "login": "isimarjitsingh", - "url": "https://github.com/isimarjitsingh", - "score": 1870, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/899", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/593", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/590", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/589", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/580", - "https://github.com/ankit071105/Ticket-Booking/pull/708", - "https://github.com/ayush-that/FinVeda/pull/2578", - "https://github.com/ayush-that/FinVeda/pull/2574", - "https://github.com/ayush-that/FinVeda/pull/2556", - "https://github.com/ayush-that/FinVeda/pull/2553", - "https://github.com/ayush-that/FinVeda/pull/2547", - "https://github.com/ayush-that/FinVeda/pull/2423", - "https://github.com/ayush-that/FinVeda/pull/2419", - "https://github.com/ayush-that/FinVeda/pull/2405", - "https://github.com/ayush-that/FinVeda/pull/2402", - "https://github.com/ayush-that/FinVeda/pull/2361", - "https://github.com/ayush-that/FinVeda/pull/2354", - "https://github.com/ayush-that/FinVeda/pull/2313", - "https://github.com/ayush-that/FinVeda/pull/2302", - "https://github.com/ayush-that/FinVeda/pull/2296", - "https://github.com/ayush-that/FinVeda/pull/2279", - "https://github.com/ayush-that/FinVeda/pull/2271", - "https://github.com/ayush-that/FinVeda/pull/2257", - "https://github.com/ayush-that/FinVeda/pull/2243", - "https://github.com/ayush-that/FinVeda/pull/2236", - "https://github.com/ayush-that/FinVeda/pull/2225", - "https://github.com/ayush-that/FinVeda/pull/2203", - "https://github.com/ayush-that/FinVeda/pull/2183", - "https://github.com/ayush-that/FinVeda/pull/2147", - "https://github.com/ayush-that/FinVeda/pull/2130", - "https://github.com/ayush-that/FinVeda/pull/2098", - "https://github.com/ayush-that/FinVeda/pull/1952", - "https://github.com/ayush-that/FinVeda/pull/1937", - "https://github.com/ayush-that/FinVeda/pull/1925", - "https://github.com/ayush-that/FinVeda/pull/1841", - "https://github.com/ayush-that/FinVeda/pull/1834", - "https://github.com/ayush-that/FinVeda/pull/1822", - "https://github.com/ayush-that/FinVeda/pull/1758", - "https://github.com/ayush-that/FinVeda/pull/1756", - "https://github.com/ayush-that/FinVeda/pull/1698", - "https://github.com/ayush-that/FinVeda/pull/1564", - "https://github.com/ayush-that/FinVeda/pull/1425", - "https://github.com/ayush-that/FinVeda/pull/1381", - "https://github.com/ayush-that/FinVeda/pull/1310", - "https://github.com/Open-Code-Crafters/FitFlex/pull/149", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1796", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1362", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1160", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1056", - "https://github.com/PriyaGhosal/BuddyTrail/pull/987", - "https://github.com/PriyaGhosal/BuddyTrail/pull/976", - "https://github.com/PriyaGhosal/BuddyTrail/pull/948", - "https://github.com/PriyaGhosal/BuddyTrail/pull/829", - "https://github.com/PriyaGhosal/BuddyTrail/pull/788", - "https://github.com/PriyaGhosal/BuddyTrail/pull/776", - "https://github.com/PriyaGhosal/BuddyTrail/pull/733", - "https://github.com/PriyaGhosal/BuddyTrail/pull/597", - "https://github.com/GSSoC24/Postman-Challenge/pull/2434" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103349890?u=a1721143c47b9e583916ce9ee7ed590d1c466588&v=4", - "login": "Sourabh782", - "url": "https://github.com/Sourabh782", - "score": 1845, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/190", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/148", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/144", - "https://github.com/ANSHIKA-26/WordWise/pull/1062", - "https://github.com/ANSHIKA-26/WordWise/pull/1050", - "https://github.com/ANSHIKA-26/WordWise/pull/845", - "https://github.com/ANSHIKA-26/WordWise/pull/818", - "https://github.com/arjunatapadkar/codeteria/pull/68", - "https://github.com/arjunatapadkar/codeteria/pull/66", - "https://github.com/divyansh-2005/FinNews/pull/37", - "https://github.com/himeshparashar/Social-Morph/pull/146", - "https://github.com/jahnvisahni31/DesignDeck/pull/195", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/399", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/370", - "https://github.com/MitulSonagara/truth-tunnel/pull/51", - "https://github.com/MitulSonagara/truth-tunnel/pull/46", - "https://github.com/MitulSonagara/truth-tunnel/pull/35", - "https://github.com/Puskar-Roy/create-my-api/pull/80", - "https://github.com/iamrahulmahato/master-web-development/pull/884", - "https://github.com/rahulsainlll/git-trace/pull/128", - "https://github.com/rahulsainlll/git-trace/pull/70", - "https://github.com/Rakshit-gen/Slanine/pull/65", - "https://github.com/Rakshit-gen/Slanine/pull/55", - "https://github.com/Rakshit-gen/Slanine/pull/46", - "https://github.com/Rakshit-gen/Slanine/pull/45", - "https://github.com/Rakshit-gen/Slanine/pull/28", - "https://github.com/Rakshit-gen/Slanine/pull/27", - "https://github.com/Rakshit-gen/Slanine/pull/11", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/421", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/282", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/264", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/115", - "https://github.com/daccotta-org/daccotta/pull/63", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/74", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/36", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/33", - "https://github.com/swarooppatilx/scruter/pull/84", - "https://github.com/TenzDelek/DearDiary/pull/90", - "https://github.com/TenzDelek/DearDiary/pull/78", - "https://github.com/TenzDelek/DearDiary/pull/50", - "https://github.com/Trisha-tech/OnlineBookSales/pull/631", - "https://github.com/Trisha-tech/OnlineBookSales/pull/597", - "https://github.com/Trisha-tech/OnlineBookSales/pull/453", - "https://github.com/Trisha-tech/OnlineBookSales/pull/398", - "https://github.com/Trisha-tech/OnlineBookSales/pull/268", - "https://github.com/vansh-codes/Gityzer/pull/36", - "https://github.com/vansh-codes/Gityzer/pull/25", - "https://github.com/Vimall03/Alimento/pull/168", - "https://github.com/Vimall03/Alimento/pull/161", - "https://github.com/Vimall03/Alimento/pull/141", - "https://github.com/Vimall03/Alimento/pull/106", - "https://github.com/Scribbie-Notes/notes-app/pull/306", - "https://github.com/Scribbie-Notes/notes-app/pull/296", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/41", - "https://github.com/apu52/Travel_Website/pull/1562", - "https://github.com/GSSoC24/Postman-Challenge/pull/1914" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165366548?u=439b34c1de641192162bf21546cfb18c196e6243&v=4", - "login": "pratheekv39", - "url": "https://github.com/pratheekv39", - "score": 1815, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1680", - "https://github.com/ajay-dhangar/algo/pull/1498", - "https://github.com/ajay-dhangar/algo/pull/1358", - "https://github.com/ajay-dhangar/algo/pull/1314", - "https://github.com/ajay-dhangar/algo/pull/1306", - "https://github.com/ajay-dhangar/algo/pull/1292", - "https://github.com/ajay-dhangar/algo/pull/1181", - "https://github.com/ajay-dhangar/algo/pull/187", - "https://github.com/AlgoGenesis/C/pull/1516", - "https://github.com/AlgoGenesis/C/pull/1435", - "https://github.com/AlgoGenesis/C/pull/1371", - "https://github.com/AlgoGenesis/C/pull/1307", - "https://github.com/AlgoGenesis/C/pull/301", - "https://github.com/AlgoGenesis/C/pull/98", - "https://github.com/AlgoGenesis/C/pull/27", - "https://github.com/iamrahulmahato/master-web-development/pull/1997", - "https://github.com/iamrahulmahato/master-web-development/pull/1967", - "https://github.com/iamrahulmahato/master-web-development/pull/1955", - "https://github.com/iamrahulmahato/master-web-development/pull/1937", - "https://github.com/iamrahulmahato/master-web-development/pull/1933", - "https://github.com/iamrahulmahato/master-web-development/pull/1901", - "https://github.com/iamrahulmahato/master-web-development/pull/1855", - "https://github.com/iamrahulmahato/master-web-development/pull/1774", - "https://github.com/iamrahulmahato/master-web-development/pull/1592", - "https://github.com/iamrahulmahato/master-web-development/pull/739", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/201", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/198", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/194", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/192", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/190", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/189", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/187", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/185", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/182", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/180", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/176", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/172", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/165", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/162", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/156", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/154", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/149", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/141", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/51", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/339", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/230", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/200", - "https://github.com/UTSAVS26/PyVerse/pull/983", - "https://github.com/UTSAVS26/PyVerse/pull/903", - "https://github.com/UTSAVS26/PyVerse/pull/832", - "https://github.com/UTSAVS26/PyVerse/pull/234", - "https://github.com/GSSoC24/Postman-Challenge/pull/2027" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-07", - "2024-10-08", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 11 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138677724?v=4", - "login": "DarshAgrawal14", - "url": "https://github.com/DarshAgrawal14", - "score": 1775, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/295", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/283", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/224", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/172", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/21", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/678", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/669", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/646", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/595", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/482", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/469", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/417", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/382", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/344", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/205", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/169", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/161", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1116", - "https://github.com/ombhojane/explainableai/pull/79", - "https://github.com/ombhojane/explainableai/pull/40", - "https://github.com/ombhojane/explainableai/pull/38", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/100", - "https://github.com/Akasxh/Terrain-Recognition/pull/13", - "https://github.com/Akasxh/Terrain-Recognition/pull/3", - "https://github.com/recodehive/machine-learning-repos/pull/1434", - "https://github.com/UTSAVS26/PySnippets/pull/165", - "https://github.com/UTSAVS26/PySnippets/pull/72", - "https://github.com/UTSAVS26/PySnippets/pull/42", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1105", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1025", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1023", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/992", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/990", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/984", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/964", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/951", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/949", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/923", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/911", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/908", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/889", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/870", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/848", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/824", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/789", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/784", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/782", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/733", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/698", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/695", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/638", - "https://github.com/yashasvini121/predictive-calc/pull/109", - "https://github.com/UTSAVS26/PyVerse/pull/950", - "https://github.com/UTSAVS26/PyVerse/pull/673", - "https://github.com/UTSAVS26/PyVerse/pull/573", - "https://github.com/UTSAVS26/PyVerse/pull/416", - "https://github.com/GSSoC24/Postman-Challenge/pull/2104" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114927759?v=4", - "login": "Gauravtb2253", - "url": "https://github.com/Gauravtb2253", - "score": 1715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/772", - "https://github.com/aditya-bhaumik/Pathsphere/pull/65", - "https://github.com/ankit071105/Ticket-Booking/pull/514", - "https://github.com/ankit071105/Ticket-Booking/pull/379", - "https://github.com/anuragverma108/SwapReads/pull/4269", - "https://github.com/anuragverma108/SwapReads/pull/3711", - "https://github.com/codeaashu/DevDisplay/pull/281", - "https://github.com/ayush-that/FinVeda/pull/2451", - "https://github.com/dhairyagothi/StationGuide/pull/246", - "https://github.com/dhairyagothi/StationGuide/pull/237", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/6", - "https://github.com/Harshdev098/Research-Nexas/pull/6", - "https://github.com/Bitbox-Connect/Bitbox/pull/68", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/300", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/272", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/258", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/243", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/192", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/191", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/160", - "https://github.com/Open-Code-Crafters/FitFlex/pull/361", - "https://github.com/Open-Code-Crafters/FitFlex/pull/294", - "https://github.com/Luson045/medi-connect/pull/459", - "https://github.com/MitulSonagara/truth-tunnel/pull/189", - "https://github.com/param-code/counter-app/pull/316", - "https://github.com/param-code/counter-app/pull/313", - "https://github.com/param-code/counter-app/pull/304", - "https://github.com/param-code/counter-app/pull/301", - "https://github.com/param-code/counter-app/pull/294", - "https://github.com/param-code/counter-app/pull/237", - "https://github.com/param-code/counter-app/pull/214", - "https://github.com/param-code/counter-app/pull/209", - "https://github.com/param-code/counter-app/pull/198", - "https://github.com/PriyaGhosal/BuddyTrail/pull/919", - "https://github.com/samyakmaitre/eventmint/pull/373", - "https://github.com/samyakmaitre/eventmint/pull/371", - "https://github.com/samyakmaitre/eventmint/pull/317", - "https://github.com/samyakmaitre/eventmint/pull/301", - "https://github.com/samyakmaitre/eventmint/pull/294", - "https://github.com/subhadipbhowmik/bio-branch/pull/244", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/17", - "https://github.com/Trisha-tech/OnlineBookSales/pull/535", - "https://github.com/Vin205/Enyanjyoti/pull/340", - "https://github.com/Vin205/Enyanjyoti/pull/196", - "https://github.com/GVishnudhasan/NoDueProject/pull/90", - "https://github.com/GVishnudhasan/NoDueProject/pull/87", - "https://github.com/notsoocool/codecache/pull/145", - "https://github.com/notsoocool/codecache/pull/131", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/157", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/145", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/141", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/118", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/104", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/102", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/55", - "https://github.com/GSSoC24/Postman-Challenge/pull/1927" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135756009?u=d93cfd675d5f33d9d7b27ac22641624fdb76290b&v=4", - "login": "VinayLodhi1712", - "url": "https://github.com/VinayLodhi1712", - "score": 1705, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/209", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/190", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/162", - "https://github.com/DeadmanAbir/AgentGenesis/pull/55", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/227", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/181", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/151", - "https://github.com/yatulearn/yatulearn/pull/219", - "https://github.com/ANSHIKA-26/WordWise/pull/898", - "https://github.com/arjunatapadkar/codeteria/pull/14", - "https://github.com/codeaashu/DevDisplay/pull/346", - "https://github.com/aswathcm29/JournalForge/pull/65", - "https://github.com/ayush-that/FinVeda/pull/2216", - "https://github.com/dhairyagothi/StationGuide/pull/471", - "https://github.com/dhairyagothi/StationGuide/pull/453", - "https://github.com/dhairyagothi/StationGuide/pull/423", - "https://github.com/dhairyagothi/StationGuide/pull/328", - "https://github.com/divyansh-2005/FinNews/pull/103", - "https://github.com/Bitbox-Connect/Bitbox/pull/264", - "https://github.com/Bitbox-Connect/Bitbox/pull/251", - "https://github.com/Open-Code-Crafters/FitFlex/pull/225", - "https://github.com/Luson045/medi-connect/pull/570", - "https://github.com/Luson045/medi-connect/pull/550", - "https://github.com/Luson045/medi-connect/pull/536", - "https://github.com/Luson045/medi-connect/pull/498", - "https://github.com/Luson045/medi-connect/pull/465", - "https://github.com/Luson045/medi-connect/pull/435", - "https://github.com/Luson045/medi-connect/pull/249", - "https://github.com/Luson045/medi-connect/pull/113", - "https://github.com/Luson045/medi-connect/pull/72", - "https://github.com/Luson045/medi-connect/pull/64", - "https://github.com/Luson045/medi-connect/pull/43", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/477", - "https://github.com/param-code/counter-app/pull/282", - "https://github.com/param-code/counter-app/pull/186", - "https://github.com/Puskar-Roy/create-my-api/pull/69", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/376", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/345", - "https://github.com/Ratnesh-Team/Rehabify/pull/79", - "https://github.com/Trisha-tech/OnlineBookSales/pull/375", - "https://github.com/Trisha-tech/OnlineBookSales/pull/323", - "https://github.com/vansh-codes/ChaosWeb/pull/138", - "https://github.com/Vin205/Enyanjyoti/pull/258", - "https://github.com/Scribbie-Notes/notes-app/pull/144", - "https://github.com/Yashgabani845/hiring-portal/pull/147", - "https://github.com/Yashgabani845/hiring-portal/pull/112", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/86", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/373", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/310", - "https://github.com/vanshchauhan21/CryptoTracker/pull/325", - "https://github.com/GSSoC24/Postman-Challenge/pull/2223" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126075231?v=4", - "login": "dipexplorer", - "url": "https://github.com/dipexplorer", - "score": 1705, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Soujanya2004/wanderlust-2024/pull/326", - "https://github.com/Soujanya2004/wanderlust-2024/pull/311", - "https://github.com/Soujanya2004/wanderlust-2024/pull/309", - "https://github.com/Soujanya2004/wanderlust-2024/pull/308", - "https://github.com/Soujanya2004/wanderlust-2024/pull/276", - "https://github.com/Soujanya2004/wanderlust-2024/pull/275", - "https://github.com/Soujanya2004/wanderlust-2024/pull/256", - "https://github.com/Soujanya2004/wanderlust-2024/pull/243", - "https://github.com/Soujanya2004/wanderlust-2024/pull/242", - "https://github.com/Soujanya2004/wanderlust-2024/pull/233", - "https://github.com/Soujanya2004/wanderlust-2024/pull/231", - "https://github.com/Soujanya2004/wanderlust-2024/pull/230", - "https://github.com/Soujanya2004/wanderlust-2024/pull/211", - "https://github.com/Soujanya2004/wanderlust-2024/pull/188", - "https://github.com/Soujanya2004/wanderlust-2024/pull/187", - "https://github.com/Soujanya2004/wanderlust-2024/pull/186", - "https://github.com/Soujanya2004/wanderlust-2024/pull/184", - "https://github.com/Soujanya2004/wanderlust-2024/pull/167", - "https://github.com/Soujanya2004/wanderlust-2024/pull/165", - "https://github.com/Soujanya2004/wanderlust-2024/pull/162", - "https://github.com/Soujanya2004/wanderlust-2024/pull/159", - "https://github.com/Soujanya2004/wanderlust-2024/pull/158", - "https://github.com/Soujanya2004/wanderlust-2024/pull/155", - "https://github.com/Soujanya2004/wanderlust-2024/pull/154", - "https://github.com/Soujanya2004/wanderlust-2024/pull/153", - "https://github.com/Soujanya2004/wanderlust-2024/pull/152", - "https://github.com/Soujanya2004/wanderlust-2024/pull/151", - "https://github.com/Soujanya2004/wanderlust-2024/pull/150", - "https://github.com/Soujanya2004/wanderlust-2024/pull/143", - "https://github.com/Soujanya2004/wanderlust-2024/pull/133", - "https://github.com/Soujanya2004/wanderlust-2024/pull/129", - "https://github.com/Soujanya2004/wanderlust-2024/pull/117", - "https://github.com/Soujanya2004/wanderlust-2024/pull/115", - "https://github.com/Soujanya2004/wanderlust-2024/pull/111", - "https://github.com/Soujanya2004/wanderlust-2024/pull/110", - "https://github.com/Soujanya2004/wanderlust-2024/pull/109", - "https://github.com/Soujanya2004/wanderlust-2024/pull/108", - "https://github.com/Soujanya2004/wanderlust-2024/pull/107", - "https://github.com/Soujanya2004/wanderlust-2024/pull/102", - "https://github.com/Soujanya2004/wanderlust-2024/pull/101", - "https://github.com/Soujanya2004/wanderlust-2024/pull/100", - "https://github.com/Soujanya2004/wanderlust-2024/pull/99", - "https://github.com/Soujanya2004/wanderlust-2024/pull/94", - "https://github.com/Soujanya2004/wanderlust-2024/pull/89", - "https://github.com/GSSoC24/Postman-Challenge/pull/2228" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-31", - "2024-11-01" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168854094?u=4f1c952cc2712c32b1cb2783e0990055c29e48fa&v=4", - "login": "TBorundia", - "url": "https://github.com/TBorundia", - "score": 1685, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/204", - "https://github.com/anuj123upadhyay/MegaBlog/pull/299", - "https://github.com/vishanurag/Canvas-Editor/pull/618", - "https://github.com/vishanurag/Canvas-Editor/pull/445", - "https://github.com/dhairyagothi/StationGuide/pull/459", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/393", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/362", - "https://github.com/Open-Code-Crafters/FitFlex/pull/379", - "https://github.com/Anjaliavv51/Retro/pull/504", - "https://github.com/param-code/counter-app/pull/275", - "https://github.com/param-code/counter-app/pull/136", - "https://github.com/iamrahulmahato/master-web-development/pull/1512", - "https://github.com/iamrahulmahato/master-web-development/pull/1373", - "https://github.com/iamrahulmahato/master-web-development/pull/1253", - "https://github.com/iamrahulmahato/master-web-development/pull/624", - "https://github.com/iamrahulmahato/master-web-development/pull/546", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/350", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/553", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/498", - "https://github.com/Scribbie-Notes/notes-app/pull/205", - "https://github.com/Scribbie-Notes/notes-app/pull/182", - "https://github.com/Yashgabani845/hiring-portal/pull/178", - "https://github.com/Yashgabani845/hiring-portal/pull/160", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/154", - "https://github.com/apu52/METAVERSE/pull/1330", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/363", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/345", - "https://github.com/vanshchauhan21/CryptoTracker/pull/303", - "https://github.com/vanshchauhan21/CryptoTracker/pull/290", - "https://github.com/vanshchauhan21/CryptoTracker/pull/282", - "https://github.com/vanshchauhan21/CryptoTracker/pull/262", - "https://github.com/vanshchauhan21/CryptoTracker/pull/237", - "https://github.com/vanshchauhan21/CryptoTracker/pull/205", - "https://github.com/vanshchauhan21/CryptoTracker/pull/204", - "https://github.com/vanshchauhan21/CryptoTracker/pull/187", - "https://github.com/GSSoC24/Postman-Challenge/pull/2117" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-20", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96919050?v=4", - "login": "Riyachauhan11", - "url": "https://github.com/Riyachauhan11", - "score": 1665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1266", - "https://github.com/ajay-dhangar/algo/pull/1148", - "https://github.com/ajay-dhangar/algo/pull/911", - "https://github.com/ajay-dhangar/algo/pull/686", - "https://github.com/ajay-dhangar/algo/pull/536", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/621", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/588", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/577", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/553", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/373", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/309", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/290", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/265", - "https://github.com/anuragverma108/SwapReads/pull/4434", - "https://github.com/anuragverma108/SwapReads/pull/4427", - "https://github.com/anuragverma108/SwapReads/pull/4424", - "https://github.com/anuragverma108/SwapReads/pull/4288", - "https://github.com/anuragverma108/SwapReads/pull/4277", - "https://github.com/anuragverma108/SwapReads/pull/4240", - "https://github.com/anuragverma108/SwapReads/pull/4230", - "https://github.com/anuragverma108/SwapReads/pull/4207", - "https://github.com/anuragverma108/SwapReads/pull/4195", - "https://github.com/anuragverma108/SwapReads/pull/4181", - "https://github.com/anuragverma108/SwapReads/pull/4137", - "https://github.com/anuragverma108/SwapReads/pull/4099", - "https://github.com/anuragverma108/SwapReads/pull/4071", - "https://github.com/anuragverma108/SwapReads/pull/4061", - "https://github.com/anuragverma108/SwapReads/pull/4047", - "https://github.com/anuragverma108/SwapReads/pull/4014", - "https://github.com/anuragverma108/SwapReads/pull/3949", - "https://github.com/anuragverma108/SwapReads/pull/3853", - "https://github.com/anuragverma108/SwapReads/pull/3773", - "https://github.com/anuragverma108/SwapReads/pull/3695", - "https://github.com/anuragverma108/SwapReads/pull/3552", - "https://github.com/anuragverma108/SwapReads/pull/3549", - "https://github.com/anuragverma108/SwapReads/pull/3465", - "https://github.com/anuragverma108/SwapReads/pull/3417", - "https://github.com/mansiruhil13/Bobble-AI/pull/976", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/363", - "https://github.com/iamrahulmahato/master-web-development/pull/1668", - "https://github.com/iamrahulmahato/master-web-development/pull/1523", - "https://github.com/iamrahulmahato/master-web-development/pull/1366", - "https://github.com/iamrahulmahato/master-web-development/pull/1104", - "https://github.com/iamrahulmahato/master-web-development/pull/997", - "https://github.com/swarooppatilx/scruter/pull/304", - "https://github.com/swarooppatilx/scruter/pull/285", - "https://github.com/swarooppatilx/scruter/pull/252", - "https://github.com/UTSAVS26/PyVerse/pull/997", - "https://github.com/UTSAVS26/PyVerse/pull/882", - "https://github.com/UTSAVS26/PyVerse/pull/761", - "https://github.com/GSSoC24/Postman-Challenge/pull/2379" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120270398?u=b5f2f78bbb4a0ec4783c21295403fb3e1194bc90&v=4", - "login": "HimangshuSharma01", - "url": "https://github.com/HimangshuSharma01", - "score": 1620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/235", - "https://github.com/ANSHIKA-26/WordWise/pull/282", - "https://github.com/anuragverma108/SwapReads/pull/3015", - "https://github.com/anuragverma108/SwapReads/pull/2994", - "https://github.com/vishanurag/Canvas-Editor/pull/1044", - "https://github.com/vishanurag/Canvas-Editor/pull/136", - "https://github.com/ayush-that/FinVeda/pull/1127", - "https://github.com/mdazfar2/Ezyshop/pull/491", - "https://github.com/dohinaf/basic-icecream-website/pull/547", - "https://github.com/dohinaf/basic-icecream-website/pull/340", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/493", - "https://github.com/mansiruhil13/Bobble-AI/pull/717", - "https://github.com/mansiruhil13/Bobble-AI/pull/358", - "https://github.com/mansiruhil13/Bobble-AI/pull/314", - "https://github.com/Anjaliavv51/Retro/pull/589", - "https://github.com/PriyaGhosal/BuddyTrail/pull/448", - "https://github.com/PriyaGhosal/BuddyTrail/pull/419", - "https://github.com/PriyaGhosal/BuddyTrail/pull/356", - "https://github.com/iamrahulmahato/master-web-development/pull/1837", - "https://github.com/iamrahulmahato/master-web-development/pull/1221", - "https://github.com/iamrahulmahato/master-web-development/pull/322", - "https://github.com/iamrahulmahato/master-web-development/pull/116", - "https://github.com/recodehive/awesome-github-profiles/pull/1161", - "https://github.com/recodehive/awesome-github-profiles/pull/1159", - "https://github.com/recodehive/awesome-github-profiles/pull/1145", - "https://github.com/recodehive/awesome-github-profiles/pull/1138", - "https://github.com/recodehive/awesome-github-profiles/pull/1078", - "https://github.com/recodehive/awesome-github-profiles/pull/1045", - "https://github.com/recodehive/awesome-github-profiles/pull/1006", - "https://github.com/recodehive/awesome-github-profiles/pull/952", - "https://github.com/recodehive/awesome-github-profiles/pull/895", - "https://github.com/recodehive/awesome-github-profiles/pull/818", - "https://github.com/recodehive/awesome-github-profiles/pull/799", - "https://github.com/recodehive/awesome-github-profiles/pull/732", - "https://github.com/recodehive/awesome-github-profiles/pull/730", - "https://github.com/recodehive/awesome-github-profiles/pull/719", - "https://github.com/recodehive/awesome-github-profiles/pull/676", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/935", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/930", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/898", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/776", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/678", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/676", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/647", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/558", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/541", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/511", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1214", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1202", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1200", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1199", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1177", - "https://github.com/GSSoC24/Postman-Challenge/pull/2173", - "https://github.com/kvcops/KV-Nexus/pull/50" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106806241?u=a07bfab42f143c507112bea7447b6d4d84540823&v=4", - "login": "Saurabhchaudhary9799", - "url": "https://github.com/Saurabhchaudhary9799", - "score": 1620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/698", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/326", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/260", - "https://github.com/ANSHIKA-26/WordWise/pull/554", - "https://github.com/ANSHIKA-26/WordWise/pull/527", - "https://github.com/arjunatapadkar/codeteria/pull/245", - "https://github.com/Code-Social/official-website/pull/404", - "https://github.com/soham0005/ElectroKart/pull/162", - "https://github.com/Scribbie-Notes/notes-app/pull/366", - "https://github.com/Scribbie-Notes/notes-app/pull/360", - "https://github.com/Scribbie-Notes/notes-app/pull/359", - "https://github.com/Scribbie-Notes/notes-app/pull/348", - "https://github.com/Scribbie-Notes/notes-app/pull/347", - "https://github.com/Scribbie-Notes/notes-app/pull/343", - "https://github.com/Scribbie-Notes/notes-app/pull/342", - "https://github.com/Scribbie-Notes/notes-app/pull/341", - "https://github.com/Scribbie-Notes/notes-app/pull/340", - "https://github.com/Scribbie-Notes/notes-app/pull/331", - "https://github.com/Scribbie-Notes/notes-app/pull/325", - "https://github.com/Scribbie-Notes/notes-app/pull/324", - "https://github.com/Scribbie-Notes/notes-app/pull/288", - "https://github.com/Scribbie-Notes/notes-app/pull/282", - "https://github.com/Scribbie-Notes/notes-app/pull/267", - "https://github.com/Scribbie-Notes/notes-app/pull/255", - "https://github.com/Scribbie-Notes/notes-app/pull/252", - "https://github.com/Scribbie-Notes/notes-app/pull/251", - "https://github.com/Scribbie-Notes/notes-app/pull/228", - "https://github.com/Scribbie-Notes/notes-app/pull/199", - "https://github.com/Scribbie-Notes/notes-app/pull/196", - "https://github.com/Scribbie-Notes/notes-app/pull/187", - "https://github.com/Scribbie-Notes/notes-app/pull/180", - "https://github.com/Scribbie-Notes/notes-app/pull/178", - "https://github.com/Scribbie-Notes/notes-app/pull/175", - "https://github.com/Scribbie-Notes/notes-app/pull/168", - "https://github.com/Scribbie-Notes/notes-app/pull/159", - "https://github.com/Scribbie-Notes/notes-app/pull/158", - "https://github.com/Scribbie-Notes/notes-app/pull/120", - "https://github.com/Scribbie-Notes/notes-app/pull/85", - "https://github.com/Scribbie-Notes/notes-app/pull/82", - "https://github.com/Scribbie-Notes/notes-app/pull/77", - "https://github.com/Scribbie-Notes/notes-app/pull/33", - "https://github.com/Yashgabani845/hiring-portal/pull/77", - "https://github.com/GSSoC24/Postman-Challenge/pull/1861" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175685496?u=bf559875a41508846fef162d979045862978d42d&v=4", - "login": "biswajit-sarkar-007", - "url": "https://github.com/biswajit-sarkar-007", - "score": 1585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/329", - "https://github.com/ayush-that/FinVeda/pull/2474", - "https://github.com/ayush-that/FinVeda/pull/2470", - "https://github.com/ayush-that/FinVeda/pull/2417", - "https://github.com/ayush-that/FinVeda/pull/2415", - "https://github.com/ayush-that/FinVeda/pull/2371", - "https://github.com/ayush-that/FinVeda/pull/2369", - "https://github.com/ayush-that/FinVeda/pull/2367", - "https://github.com/ayush-that/FinVeda/pull/2365", - "https://github.com/ayush-that/FinVeda/pull/2363", - "https://github.com/ayush-that/FinVeda/pull/2360", - "https://github.com/ayush-that/FinVeda/pull/2344", - "https://github.com/ayush-that/FinVeda/pull/2340", - "https://github.com/ayush-that/FinVeda/pull/2336", - "https://github.com/ayush-that/FinVeda/pull/2334", - "https://github.com/ayush-that/FinVeda/pull/2332", - "https://github.com/ayush-that/FinVeda/pull/2326", - "https://github.com/ayush-that/FinVeda/pull/2324", - "https://github.com/ayush-that/FinVeda/pull/2320", - "https://github.com/ayush-that/FinVeda/pull/2278", - "https://github.com/ayush-that/FinVeda/pull/2274", - "https://github.com/ayush-that/FinVeda/pull/2245", - "https://github.com/ayush-that/FinVeda/pull/2121", - "https://github.com/ayush-that/FinVeda/pull/2109", - "https://github.com/ayush-that/FinVeda/pull/2102", - "https://github.com/ayush-that/FinVeda/pull/2018", - "https://github.com/ayush-that/FinVeda/pull/2015", - "https://github.com/ayush-that/FinVeda/pull/2013", - "https://github.com/ayush-that/FinVeda/pull/2010", - "https://github.com/ayush-that/FinVeda/pull/2001", - "https://github.com/ayush-that/FinVeda/pull/1984", - "https://github.com/ayush-that/FinVeda/pull/1973", - "https://github.com/ayush-that/FinVeda/pull/1971", - "https://github.com/ayush-that/FinVeda/pull/1962", - "https://github.com/ayush-that/FinVeda/pull/1905", - "https://github.com/ayush-that/FinVeda/pull/1889", - "https://github.com/ayush-that/FinVeda/pull/1880", - "https://github.com/ayush-that/FinVeda/pull/1863", - "https://github.com/ayush-that/FinVeda/pull/1859", - "https://github.com/ayush-that/FinVeda/pull/1793", - "https://github.com/ayush-that/FinVeda/pull/1792", - "https://github.com/ayush-that/FinVeda/pull/1780", - "https://github.com/ayush-that/FinVeda/pull/1672", - "https://github.com/ayush-that/FinVeda/pull/1667", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/106", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/688", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/492", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/491", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/441", - "https://github.com/jahnvisahni31/DesignDeck/pull/113", - "https://github.com/Luson045/medi-connect/pull/551", - "https://github.com/Luson045/medi-connect/pull/549", - "https://github.com/Manishkr1007/WordWeaver/pull/114", - "https://github.com/param-code/counter-app/pull/253", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/280", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1730", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1727", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1722", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1711", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1596", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1588", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1577", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1565", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1544", - "https://github.com/PriyaGhosal/BuddyTrail/pull/868", - "https://github.com/swarooppatilx/scruter/pull/128", - "https://github.com/Vin205/Enyanjyoti/pull/77", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/138", - "https://github.com/apu52/METAVERSE/pull/1339", - "https://github.com/apu52/METAVERSE/pull/1334", - "https://github.com/apu52/METAVERSE/pull/1333", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/316", - "https://github.com/GSSoC24/Postman-Challenge/pull/2278" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-12", - "2024-10-14", - "2024-10-17", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 9 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65901047?v=4", - "login": "17arindam", - "url": "https://github.com/17arindam", - "score": 1580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/395", - "https://github.com/ajay-dhangar/algo/pull/394", - "https://github.com/ajay-dhangar/algo/pull/390", - "https://github.com/ChandelAnish/hireHUB-website/pull/23", - "https://github.com/ANSHIKA-26/WordWise/pull/891", - "https://github.com/ANSHIKA-26/WordWise/pull/889", - "https://github.com/ANSHIKA-26/WordWise/pull/881", - "https://github.com/ANSHIKA-26/WordWise/pull/684", - "https://github.com/prajapatihet/donorconnect/pull/20", - "https://github.com/prajapatihet/donorconnect/pull/5", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/350", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/349", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/347", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/345", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/343", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/341", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/179", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/175", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/173", - "https://github.com/Luson045/medi-connect/pull/438", - "https://github.com/Luson045/medi-connect/pull/382", - "https://github.com/Luson045/medi-connect/pull/286", - "https://github.com/Luson045/medi-connect/pull/196", - "https://github.com/Luson045/medi-connect/pull/190", - "https://github.com/Luson045/medi-connect/pull/184", - "https://github.com/param-code/counter-app/pull/107", - "https://github.com/param-code/counter-app/pull/13", - "https://github.com/iamrahulmahato/master-web-development/pull/709", - "https://github.com/iamrahulmahato/master-web-development/pull/639", - "https://github.com/iamrahulmahato/master-web-development/pull/626", - "https://github.com/iamrahulmahato/master-web-development/pull/613", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/193", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/175", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/174", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/121", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/94", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/71", - "https://github.com/recodehive/awesome-github-profiles/pull/834", - "https://github.com/recodehive/awesome-github-profiles/pull/803", - "https://github.com/recodehive/awesome-github-profiles/pull/802", - "https://github.com/recodehive/awesome-github-profiles/pull/801", - "https://github.com/recodehive/awesome-github-profiles/pull/736", - "https://github.com/recodehive/awesome-github-profiles/pull/700", - "https://github.com/recodehive/awesome-github-profiles/pull/698", - "https://github.com/recodehive/awesome-github-profiles/pull/650", - "https://github.com/recodehive/awesome-github-profiles/pull/632", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/22", - "https://github.com/yagnik2411/Quiz-Genius/pull/82", - "https://github.com/yagnik2411/Quiz-Genius/pull/48", - "https://github.com/UTSAVS26/PyVerse/pull/407", - "https://github.com/UTSAVS26/PyVerse/pull/406", - "https://github.com/GSSoC24/Postman-Challenge/pull/2388" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144662342?u=30abceea9ecde2dd32a453bc2c47e230a6204a83&v=4", - "login": "ritiksingh-01", - "url": "https://github.com/ritiksingh-01", - "score": 1525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/922", - "https://github.com/ayush-that/FinVeda/pull/2567", - "https://github.com/ayush-that/FinVeda/pull/2544", - "https://github.com/ayush-that/FinVeda/pull/2239", - "https://github.com/ayush-that/FinVeda/pull/2233", - "https://github.com/ayush-that/FinVeda/pull/2219", - "https://github.com/ayush-that/FinVeda/pull/2173", - "https://github.com/ayush-that/FinVeda/pull/2167", - "https://github.com/ayush-that/FinVeda/pull/2084", - "https://github.com/ayush-that/FinVeda/pull/2058", - "https://github.com/ayush-that/FinVeda/pull/1983", - "https://github.com/ayush-that/FinVeda/pull/1837", - "https://github.com/ayush-that/FinVeda/pull/1754", - "https://github.com/ayush-that/FinVeda/pull/1730", - "https://github.com/ayush-that/FinVeda/pull/1699", - "https://github.com/ayush-that/FinVeda/pull/1659", - "https://github.com/ayush-that/FinVeda/pull/1567", - "https://github.com/ayush-that/FinVeda/pull/1561", - "https://github.com/ayush-that/FinVeda/pull/1305", - "https://github.com/ayush-that/FinVeda/pull/1295", - "https://github.com/ayush-that/FinVeda/pull/1293", - "https://github.com/ayush-that/FinVeda/pull/1286", - "https://github.com/ayush-that/FinVeda/pull/1136", - "https://github.com/ayush-that/FinVeda/pull/1101", - "https://github.com/ayush-that/FinVeda/pull/1071", - "https://github.com/ayush-that/FinVeda/pull/1044", - "https://github.com/mansiruhil13/Bobble-AI/pull/530", - "https://github.com/mansiruhil13/Bobble-AI/pull/428", - "https://github.com/mansiruhil13/Bobble-AI/pull/349", - "https://github.com/recodehive/awesome-github-profiles/pull/761", - "https://github.com/vanshchauhan21/CryptoTracker/pull/321", - "https://github.com/vanshchauhan21/CryptoTracker/pull/314", - "https://github.com/vanshchauhan21/CryptoTracker/pull/281", - "https://github.com/vanshchauhan21/CryptoTracker/pull/255", - "https://github.com/vanshchauhan21/CryptoTracker/pull/185", - "https://github.com/vanshchauhan21/CryptoTracker/pull/178", - "https://github.com/vanshchauhan21/CryptoTracker/pull/171", - "https://github.com/vanshchauhan21/CryptoTracker/pull/160", - "https://github.com/vanshchauhan21/CryptoTracker/pull/146", - "https://github.com/vanshchauhan21/CryptoTracker/pull/141", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1125", - "https://github.com/GSSoC24/Postman-Challenge/pull/1962" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 14 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93258479?u=d3c133d9b15dfdb686bd20d51cb65f4d616e4425&v=4", - "login": "AsifQamar", - "url": "https://github.com/AsifQamar", - "score": 1505, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1087", - "https://github.com/vishanurag/Canvas-Editor/pull/983", - "https://github.com/vishanurag/Canvas-Editor/pull/982", - "https://github.com/vishanurag/Canvas-Editor/pull/976", - "https://github.com/vishanurag/Canvas-Editor/pull/937", - "https://github.com/vishanurag/Canvas-Editor/pull/936", - "https://github.com/vishanurag/Canvas-Editor/pull/935", - "https://github.com/vishanurag/Canvas-Editor/pull/934", - "https://github.com/vishanurag/Canvas-Editor/pull/776", - "https://github.com/vishanurag/Canvas-Editor/pull/773", - "https://github.com/vishanurag/Canvas-Editor/pull/770", - "https://github.com/vishanurag/Canvas-Editor/pull/768", - "https://github.com/vishanurag/Canvas-Editor/pull/466", - "https://github.com/vishanurag/Canvas-Editor/pull/465", - "https://github.com/vishanurag/Canvas-Editor/pull/447", - "https://github.com/ayush-that/FinVeda/pull/2523", - "https://github.com/ayush-that/FinVeda/pull/2407", - "https://github.com/ayush-that/FinVeda/pull/2065", - "https://github.com/ayush-that/FinVeda/pull/2063", - "https://github.com/ayush-that/FinVeda/pull/1831", - "https://github.com/ayush-that/FinVeda/pull/1736", - "https://github.com/ayush-that/FinVeda/pull/1735", - "https://github.com/ayush-that/FinVeda/pull/1734", - "https://github.com/ayush-that/FinVeda/pull/1668", - "https://github.com/ayush-that/FinVeda/pull/1666", - "https://github.com/ayush-that/FinVeda/pull/1654", - "https://github.com/ayush-that/FinVeda/pull/1653", - "https://github.com/ayush-that/FinVeda/pull/1652", - "https://github.com/ayush-that/FinVeda/pull/1650", - "https://github.com/ayush-that/FinVeda/pull/1649", - "https://github.com/ayush-that/FinVeda/pull/1560", - "https://github.com/ayush-that/FinVeda/pull/1559", - "https://github.com/ayush-that/FinVeda/pull/1558", - "https://github.com/ayush-that/FinVeda/pull/1487", - "https://github.com/ayush-that/FinVeda/pull/1467", - "https://github.com/ayush-that/FinVeda/pull/1462", - "https://github.com/ayush-that/FinVeda/pull/1427", - "https://github.com/ayush-that/FinVeda/pull/1418", - "https://github.com/ayush-that/FinVeda/pull/1398", - "https://github.com/ayush-that/FinVeda/pull/1368", - "https://github.com/ayush-that/FinVeda/pull/1360", - "https://github.com/ayush-that/FinVeda/pull/1296", - "https://github.com/ayush-that/FinVeda/pull/1294", - "https://github.com/ayush-that/FinVeda/pull/1272", - "https://github.com/ayush-that/FinVeda/pull/1240", - "https://github.com/ayush-that/FinVeda/pull/1239", - "https://github.com/ayush-that/FinVeda/pull/1202", - "https://github.com/ayush-that/FinVeda/pull/1177", - "https://github.com/ayush-that/FinVeda/pull/1112", - "https://github.com/ayush-that/FinVeda/pull/1107", - "https://github.com/ayush-that/FinVeda/pull/1084", - "https://github.com/mansiruhil13/Bobble-AI/pull/408", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1060", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1041", - "https://github.com/PriyaGhosal/BuddyTrail/pull/784", - "https://github.com/PriyaGhosal/BuddyTrail/pull/660", - "https://github.com/PriyaGhosal/BuddyTrail/pull/654", - "https://github.com/PriyaGhosal/BuddyTrail/pull/392", - "https://github.com/iamrahulmahato/master-web-development/pull/1408", - "https://github.com/GSSoC24/Postman-Challenge/pull/2224" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76689571?v=4", - "login": "akash70629", - "url": "https://github.com/akash70629", - "score": 1475, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1054", - "https://github.com/aditya-bhaumik/Pathsphere/pull/980", - "https://github.com/aditya-bhaumik/Pathsphere/pull/797", - "https://github.com/ajay-dhangar/algo/pull/1276", - "https://github.com/ajay-dhangar/algo/pull/1274", - "https://github.com/ajay-dhangar/algo/pull/1093", - "https://github.com/ajay-dhangar/algo/pull/1037", - "https://github.com/ajay-dhangar/algo/pull/787", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/259", - "https://github.com/ANSHIKA-26/WordWise/pull/1238", - "https://github.com/ANSHIKA-26/WordWise/pull/1167", - "https://github.com/ANSHIKA-26/WordWise/pull/1127", - "https://github.com/anuj123upadhyay/MegaBlog/pull/310", - "https://github.com/anuj123upadhyay/MegaBlog/pull/308", - "https://github.com/anuj123upadhyay/MegaBlog/pull/287", - "https://github.com/anuj123upadhyay/MegaBlog/pull/286", - "https://github.com/anuragverma108/SwapReads/pull/4418", - "https://github.com/anuragverma108/SwapReads/pull/4409", - "https://github.com/anuragverma108/SwapReads/pull/4370", - "https://github.com/anuragverma108/SwapReads/pull/4358", - "https://github.com/anuragverma108/SwapReads/pull/4350", - "https://github.com/anuragverma108/SwapReads/pull/4276", - "https://github.com/anuragverma108/SwapReads/pull/4268", - "https://github.com/anuragverma108/SwapReads/pull/4220", - "https://github.com/anuragverma108/SwapReads/pull/4160", - "https://github.com/anuragverma108/SwapReads/pull/4108", - "https://github.com/anuragverma108/SwapReads/pull/3980", - "https://github.com/anuragverma108/SwapReads/pull/3434", - "https://github.com/anuragverma108/SwapReads/pull/3367", - "https://github.com/anuragverma108/SwapReads/pull/3365", - "https://github.com/anuragverma108/SwapReads/pull/3363", - "https://github.com/vishanurag/Canvas-Editor/pull/903", - "https://github.com/vishanurag/Canvas-Editor/pull/901", - "https://github.com/vishanurag/Canvas-Editor/pull/899", - "https://github.com/vishanurag/Canvas-Editor/pull/653", - "https://github.com/codeaashu/DevDisplay/pull/491", - "https://github.com/codeaashu/DevDisplay/pull/485", - "https://github.com/ayush-that/FinVeda/pull/1963", - "https://github.com/dhairyagothi/StationGuide/pull/404", - "https://github.com/dhairyagothi/StationGuide/pull/397", - "https://github.com/dhairyagothi/StationGuide/pull/394", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/650", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/644", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/216", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/328", - "https://github.com/MitulSonagara/truth-tunnel/pull/249", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1735", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1450", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1390", - "https://github.com/PriyaGhosal/BuddyTrail/pull/912", - "https://github.com/PriyaGhosal/BuddyTrail/pull/767", - "https://github.com/PriyaGhosal/BuddyTrail/pull/765", - "https://github.com/PriyaGhosal/BuddyTrail/pull/758", - "https://github.com/Shreyaa173/Code-Book/pull/384", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/729", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/720", - "https://github.com/vansh-codes/Gityzer/pull/62", - "https://github.com/Vin205/Enyanjyoti/pull/364", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1038", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1036", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1034", - "https://github.com/apu52/METAVERSE/pull/1279", - "https://github.com/4darsh-Dev/DecenTrade/pull/116", - "https://github.com/GSSoC24/Postman-Challenge/pull/2457" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 9 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126611334?u=a69d6df10ef99ea040b35463c318566b1c300953&v=4", - "login": "shriyadindi", - "url": "https://github.com/shriyadindi", - "score": 1470, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1005", - "https://github.com/aditya-bhaumik/Pathsphere/pull/725", - "https://github.com/ajay-dhangar/algo/pull/1644", - "https://github.com/ajay-dhangar/algo/pull/1642", - "https://github.com/ankit071105/Ticket-Booking/pull/830", - "https://github.com/ankit071105/Ticket-Booking/pull/826", - "https://github.com/ankit071105/Ticket-Booking/pull/825", - "https://github.com/ankit071105/Ticket-Booking/pull/822", - "https://github.com/ankit071105/Ticket-Booking/pull/784", - "https://github.com/ankit071105/Ticket-Booking/pull/779", - "https://github.com/ankit071105/Ticket-Booking/pull/778", - "https://github.com/ankit071105/Ticket-Booking/pull/777", - "https://github.com/ankit071105/Ticket-Booking/pull/776", - "https://github.com/ankit071105/Ticket-Booking/pull/729", - "https://github.com/ankit071105/Ticket-Booking/pull/719", - "https://github.com/ankit071105/Ticket-Booking/pull/717", - "https://github.com/ankit071105/Ticket-Booking/pull/713", - "https://github.com/ankit071105/Ticket-Booking/pull/707", - "https://github.com/ankit071105/Ticket-Booking/pull/693", - "https://github.com/ankit071105/Ticket-Booking/pull/692", - "https://github.com/ankit071105/Ticket-Booking/pull/682", - "https://github.com/ankit071105/Ticket-Booking/pull/679", - "https://github.com/ankit071105/Ticket-Booking/pull/678", - "https://github.com/ankit071105/Ticket-Booking/pull/677", - "https://github.com/ankit071105/Ticket-Booking/pull/674", - "https://github.com/ankit071105/Ticket-Booking/pull/582", - "https://github.com/ankit071105/Ticket-Booking/pull/539", - "https://github.com/ankit071105/Ticket-Booking/pull/419", - "https://github.com/anuragverma108/SwapReads/pull/3572", - "https://github.com/vishanurag/Canvas-Editor/pull/613", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/356", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/503", - "https://github.com/Harshdev098/Research-Nexas/pull/363", - "https://github.com/Harshdev098/Research-Nexas/pull/361", - "https://github.com/Harshdev098/Research-Nexas/pull/356", - "https://github.com/PriyaGhosal/BuddyTrail/pull/737", - "https://github.com/iamrahulmahato/master-web-development/pull/1884", - "https://github.com/iamrahulmahato/master-web-development/pull/1881", - "https://github.com/iamrahulmahato/master-web-development/pull/1880", - "https://github.com/iamrahulmahato/master-web-development/pull/1879", - "https://github.com/iamrahulmahato/master-web-development/pull/1877", - "https://github.com/iamrahulmahato/master-web-development/pull/1876", - "https://github.com/iamrahulmahato/master-web-development/pull/1875", - "https://github.com/iamrahulmahato/master-web-development/pull/1873", - "https://github.com/iamrahulmahato/master-web-development/pull/1872", - "https://github.com/iamrahulmahato/master-web-development/pull/1871", - "https://github.com/iamrahulmahato/master-web-development/pull/1847", - "https://github.com/iamrahulmahato/master-web-development/pull/1844", - "https://github.com/iamrahulmahato/master-web-development/pull/1841", - "https://github.com/iamrahulmahato/master-web-development/pull/1836", - "https://github.com/iamrahulmahato/master-web-development/pull/1835", - "https://github.com/iamrahulmahato/master-web-development/pull/1832", - "https://github.com/iamrahulmahato/master-web-development/pull/1826", - "https://github.com/iamrahulmahato/master-web-development/pull/1822", - "https://github.com/iamrahulmahato/master-web-development/pull/1816", - "https://github.com/iamrahulmahato/master-web-development/pull/1812", - "https://github.com/iamrahulmahato/master-web-development/pull/1811", - "https://github.com/iamrahulmahato/master-web-development/pull/1730", - "https://github.com/iamrahulmahato/master-web-development/pull/1729", - "https://github.com/iamrahulmahato/master-web-development/pull/1727", - "https://github.com/iamrahulmahato/master-web-development/pull/1726", - "https://github.com/iamrahulmahato/master-web-development/pull/1686", - "https://github.com/iamrahulmahato/master-web-development/pull/1684", - "https://github.com/iamrahulmahato/master-web-development/pull/1683", - "https://github.com/iamrahulmahato/master-web-development/pull/1649", - "https://github.com/iamrahulmahato/master-web-development/pull/1581", - "https://github.com/iamrahulmahato/master-web-development/pull/1497", - "https://github.com/iamrahulmahato/master-web-development/pull/1494", - "https://github.com/iamrahulmahato/master-web-development/pull/1198", - "https://github.com/samyakmaitre/eventmint/pull/365", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/512", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/571", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/540", - "https://github.com/apu52/Travel_Website/pull/1589", - "https://github.com/apu52/Travel_Website/pull/1587", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1264", - "https://github.com/GSSoC24/Postman-Challenge/pull/2324" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01", - "2024-11-02" - ], - "streak": 12 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179824602?u=3e136cdb64ab624a1d06660efb90101ef1e26a2f&v=4", - "login": "Adarsh-Chaubey03", - "url": "https://github.com/Adarsh-Chaubey03", - "score": 1460, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/315", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/159", - "https://github.com/ankit071105/Ticket-Booking/pull/837", - "https://github.com/ankit071105/Ticket-Booking/pull/802", - "https://github.com/anuragverma108/SwapReads/pull/4121", - "https://github.com/anuragverma108/SwapReads/pull/3195", - "https://github.com/ayush-that/FinVeda/pull/2566", - "https://github.com/ayush-that/FinVeda/pull/2505", - "https://github.com/ayush-that/FinVeda/pull/2384", - "https://github.com/ayush-that/FinVeda/pull/2304", - "https://github.com/ayush-that/FinVeda/pull/2249", - "https://github.com/ayush-that/FinVeda/pull/2234", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/510", - "https://github.com/AlgoGenesis/C/pull/33", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1747", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1693", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1601", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1513", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1503", - "https://github.com/PriyaGhosal/BuddyTrail/pull/658", - "https://github.com/iamrahulmahato/master-web-development/pull/925", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/628", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/597", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/516", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/181", - "https://github.com/tushargupta1504/Medical-Website/pull/249", - "https://github.com/tushargupta1504/Medical-Website/pull/240", - "https://github.com/tushargupta1504/Medical-Website/pull/84", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1049", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1012", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/986", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/953", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/912", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/873", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/832", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/799", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/764", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/654", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/635", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/551", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/491", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/483", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/452", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/437", - "https://github.com/GSSoC24/Postman-Challenge/pull/2265" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 16 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135828004?v=4", - "login": "ParasY1724", - "url": "https://github.com/ParasY1724", - "score": 1425, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/56", - "https://github.com/jinx-vi-0/DDoL/pull/38", - "https://github.com/jinx-vi-0/DDoL/pull/27", - "https://github.com/jinx-vi-0/DDoL/pull/21", - "https://github.com/jinx-vi-0/DDoL/pull/17", - "https://github.com/jinx-vi-0/BlogLog/pull/112", - "https://github.com/jinx-vi-0/BlogLog/pull/108", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/79", - "https://github.com/VesperAkshay/qr-code-generator/pull/145", - "https://github.com/arjunatapadkar/codeteria/pull/253", - "https://github.com/arjunatapadkar/codeteria/pull/249", - "https://github.com/arjunatapadkar/codeteria/pull/241", - "https://github.com/arjunatapadkar/codeteria/pull/230", - "https://github.com/arjunatapadkar/codeteria/pull/225", - "https://github.com/arjunatapadkar/codeteria/pull/195", - "https://github.com/arjunatapadkar/codeteria/pull/56", - "https://github.com/arjunatapadkar/codeteria/pull/28", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/116", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/63", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/55", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/61", - "https://github.com/Luson045/medi-connect/pull/160", - "https://github.com/Luson045/medi-connect/pull/151", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/119", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/72", - "https://github.com/soham0005/ElectroKart/pull/10", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/18", - "https://github.com/UTSAVS26/PySnippets/pull/285", - "https://github.com/UTSAVS26/PySnippets/pull/273", - "https://github.com/yashksaini-coder/BookStream/pull/26", - "https://github.com/yashksaini-coder/BookStream/pull/23", - "https://github.com/UTSAVS26/PyVerse/pull/929", - "https://github.com/GSSoC24/Postman-Challenge/pull/1805" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 9 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128586929?u=20d4a6c6476b95d79b302f44db05db4ec2899492&v=4", - "login": "samar12-rad", - "url": "https://github.com/samar12-rad", - "score": 1425, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/549", - "https://github.com/ajay-dhangar/algo/pull/547", - "https://github.com/ajay-dhangar/algo/pull/546", - "https://github.com/ajay-dhangar/algo/pull/543", - "https://github.com/BhattAnsh/Quiz-Quest/pull/125", - "https://github.com/BhattAnsh/Quiz-Quest/pull/44", - "https://github.com/BhattAnsh/Quiz-Quest/pull/43", - "https://github.com/BhattAnsh/Quiz-Quest/pull/28", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/99", - "https://github.com/TherkuTech/tturl/pull/38", - "https://github.com/TherkuTech/tturl/pull/31", - "https://github.com/TherkuTech/tturl/pull/25", - "https://github.com/TherkuTech/tturl/pull/13", - "https://github.com/TherkuTech/tturl/pull/7", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/314", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/307", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/300", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/213", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/189", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/177", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/173", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/169", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/167", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/159", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/125", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/120", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/89", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/65", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/45", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/42", - "https://github.com/ayerhssb/Appointment-booking-app/pull/13", - "https://github.com/GSSoC24/Postman-Challenge/pull/2793" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-15", - "2024-10-16", - "2024-10-27", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91079592?u=10b14f4d9c2d13b88bde2ee45300ae065225d865&v=4", - "login": "samyak-aditya", - "url": "https://github.com/samyak-aditya", - "score": 1395, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/LibraryMan-API/pull/54", - "https://github.com/ajaynegi45/LibraryMan-API/pull/45", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/371", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/37", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/404", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/386", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/228", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/97", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/63", - "https://github.com/BhattAnsh/Quiz-Quest/pull/22", - "https://github.com/vishanurag/Canvas-Editor/pull/209", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/102", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/222", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/221", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/36", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/16", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/8", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/99", - "https://github.com/Devamani11D/salt-app-kickstart/pull/24", - "https://github.com/Devamani11D/salt-app-kickstart/pull/22", - "https://github.com/Devamani11D/salt-app-kickstart/pull/16", - "https://github.com/Bitbox-Connect/Bitbox/pull/243", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/57", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/48", - "https://github.com/kartikayasijaa/talk-trove/pull/104", - "https://github.com/Luson045/medi-connect/pull/557", - "https://github.com/recodehive/Scrape-ML/pull/257", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/163", - "https://github.com/daccotta-org/daccotta/pull/166", - "https://github.com/daccotta-org/daccotta/pull/90", - "https://github.com/daccotta-org/daccotta/pull/89", - "https://github.com/Soujanya2004/wanderlust-2024/pull/77", - "https://github.com/Soujanya2004/wanderlust-2024/pull/50", - "https://github.com/swarooppatilx/scruter/pull/50", - "https://github.com/swarooppatilx/scruter/pull/28", - "https://github.com/swarooppatilx/scruter/pull/18", - "https://github.com/VigneshDevHub/CampX/pull/51", - "https://github.com/visheshrwl/Uber-like/pull/86", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/139", - "https://github.com/notsoocool/codecache/pull/66", - "https://github.com/Yashgabani845/hiring-portal/pull/229", - "https://github.com/Yashgabani845/hiring-portal/pull/129", - "https://github.com/Yashgabani845/hiring-portal/pull/100", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/301", - "https://github.com/UTSAVS26/PyVerse/pull/443", - "https://github.com/GSSoC24/Postman-Challenge/pull/2490" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-24", - "2024-10-26", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129506267?u=a16c11e7d53c6d3a9c0fa199af14bac3c5c3d5e2&v=4", - "login": "RachitSahu26", - "url": "https://github.com/RachitSahu26", - "score": 1395, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/381", - "https://github.com/codeaashu/DevDisplay/pull/424", - "https://github.com/mdazfar2/Ezyshop/pull/900", - "https://github.com/vanshchauhan21/CryptoTracker/pull/362", - "https://github.com/vanshchauhan21/CryptoTracker/pull/326", - "https://github.com/vanshchauhan21/CryptoTracker/pull/318", - "https://github.com/vanshchauhan21/CryptoTracker/pull/317", - "https://github.com/vanshchauhan21/CryptoTracker/pull/298", - "https://github.com/vanshchauhan21/CryptoTracker/pull/239", - "https://github.com/vanshchauhan21/CryptoTracker/pull/234", - "https://github.com/vanshchauhan21/CryptoTracker/pull/222", - "https://github.com/vanshchauhan21/CryptoTracker/pull/220", - "https://github.com/vanshchauhan21/CryptoTracker/pull/198", - "https://github.com/vanshchauhan21/CryptoTracker/pull/184", - "https://github.com/vanshchauhan21/CryptoTracker/pull/170", - "https://github.com/vanshchauhan21/CryptoTracker/pull/150", - "https://github.com/vanshchauhan21/CryptoTracker/pull/145", - "https://github.com/vanshchauhan21/CryptoTracker/pull/138", - "https://github.com/vanshchauhan21/CryptoTracker/pull/125", - "https://github.com/vanshchauhan21/CryptoTracker/pull/98", - "https://github.com/vanshchauhan21/CryptoTracker/pull/66", - "https://github.com/vanshchauhan21/CryptoTracker/pull/58", - "https://github.com/GSSoC24/Postman-Challenge/pull/2107" - ], - "pr_dates": [ - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01", - "2024-11-02" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147980454?u=b92893e25d4f53bd01083e4eade2d507cfb13988&v=4", - "login": "VidhanThakur09", - "url": "https://github.com/VidhanThakur09", - "score": 1370, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1092", - "https://github.com/aditya-bhaumik/Pathsphere/pull/861", - "https://github.com/aditya-bhaumik/Pathsphere/pull/391", - "https://github.com/aditya-bhaumik/Pathsphere/pull/261", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/257", - "https://github.com/ankit071105/Ticket-Booking/pull/684", - "https://github.com/ankit071105/Ticket-Booking/pull/558", - "https://github.com/ANSHIKA-26/WordWise/pull/1389", - "https://github.com/ANSHIKA-26/WordWise/pull/1338", - "https://github.com/ANSHIKA-26/WordWise/pull/1268", - "https://github.com/ANSHIKA-26/WordWise/pull/1210", - "https://github.com/ANSHIKA-26/WordWise/pull/1084", - "https://github.com/ANSHIKA-26/WordWise/pull/473", - "https://github.com/anuragverma108/SwapReads/pull/3978", - "https://github.com/vishanurag/Canvas-Editor/pull/276", - "https://github.com/Code-Social/official-website/pull/430", - "https://github.com/codeaashu/DevDisplay/pull/292", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/270", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/35", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/653", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/139", - "https://github.com/dohinaf/basic-icecream-website/pull/523", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/65", - "https://github.com/mansiruhil13/Bobble-AI/pull/533", - "https://github.com/param-code/counter-app/pull/138", - "https://github.com/iamrahulmahato/master-web-development/pull/1669", - "https://github.com/soham0005/ElectroKart/pull/242", - "https://github.com/SurajPratap10/Imagine_AI/pull/1132", - "https://github.com/swarooppatilx/scruter/pull/83", - "https://github.com/swarooppatilx/scruter/pull/32", - "https://github.com/multiverseweb/Dataverse/pull/96", - "https://github.com/multiverseweb/Dataverse/pull/15", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/713", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/417", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/60", - "https://github.com/vansh-codes/ChaosWeb/pull/70", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/957", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/673", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/454", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/75", - "https://github.com/apu52/Travel_Website/pull/1586", - "https://github.com/GSSoC24/Postman-Challenge/pull/1856" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114804510?u=a8e19fe5e100ec3427f0024dcef795be374286a3&v=4", - "login": "PrAyAg9", - "url": "https://github.com/PrAyAg9", - "score": 1360, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1222", - "https://github.com/ajay-dhangar/algo/pull/938", - "https://github.com/ajay-dhangar/algo/pull/606", - "https://github.com/ajay-dhangar/algo/pull/604", - "https://github.com/ajay-dhangar/algo/pull/601", - "https://github.com/ajay-dhangar/algo/pull/494", - "https://github.com/ajay-dhangar/algo/pull/491", - "https://github.com/ajay-dhangar/algo/pull/402", - "https://github.com/mdazfar2/Ezyshop/pull/638", - "https://github.com/mdazfar2/Ezyshop/pull/366", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/614", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/380", - "https://github.com/Anjaliavv51/Retro/pull/524", - "https://github.com/AlgoGenesis/C/pull/746", - "https://github.com/AlgoGenesis/C/pull/628", - "https://github.com/AlgoGenesis/C/pull/620", - "https://github.com/AlgoGenesis/C/pull/491", - "https://github.com/AlgoGenesis/C/pull/485", - "https://github.com/AlgoGenesis/C/pull/424", - "https://github.com/AlgoGenesis/C/pull/309", - "https://github.com/PriyaGhosal/BuddyTrail/pull/832", - "https://github.com/iamrahulmahato/master-web-development/pull/1989", - "https://github.com/iamrahulmahato/master-web-development/pull/1987", - "https://github.com/iamrahulmahato/master-web-development/pull/1985", - "https://github.com/iamrahulmahato/master-web-development/pull/1978", - "https://github.com/iamrahulmahato/master-web-development/pull/1859", - "https://github.com/iamrahulmahato/master-web-development/pull/1720", - "https://github.com/iamrahulmahato/master-web-development/pull/1718", - "https://github.com/iamrahulmahato/master-web-development/pull/1716", - "https://github.com/iamrahulmahato/master-web-development/pull/1603", - "https://github.com/iamrahulmahato/master-web-development/pull/1601", - "https://github.com/iamrahulmahato/master-web-development/pull/1598", - "https://github.com/iamrahulmahato/master-web-development/pull/1371", - "https://github.com/iamrahulmahato/master-web-development/pull/1330", - "https://github.com/iamrahulmahato/master-web-development/pull/1324", - "https://github.com/iamrahulmahato/master-web-development/pull/1279", - "https://github.com/iamrahulmahato/master-web-development/pull/1274", - "https://github.com/recodehive/machine-learning-repos/pull/1573", - "https://github.com/recodehive/machine-learning-repos/pull/1544", - "https://github.com/recodehive/machine-learning-repos/pull/1527", - "https://github.com/recodehive/machine-learning-repos/pull/1484", - "https://github.com/recodehive/machine-learning-repos/pull/1474", - "https://github.com/recodehive/machine-learning-repos/pull/1456", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/436", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/549", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/382", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/339", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/660", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/651", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/648", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/617", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/603", - "https://github.com/UTSAVS26/PyVerse/pull/623", - "https://github.com/recodehive/Opensource-practice/pull/169", - "https://github.com/GSSoC24/Postman-Challenge/pull/2190" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84603998?u=a5c1f24b0a6ef1f20f856abab6b0131624efa708&v=4", - "login": "PrityanshuSingh", - "url": "https://github.com/PrityanshuSingh", - "score": 1320, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2595", - "https://github.com/ayush-that/FinVeda/pull/2591", - "https://github.com/ayush-that/FinVeda/pull/2589", - "https://github.com/ayush-that/FinVeda/pull/2587", - "https://github.com/ayush-that/FinVeda/pull/2418", - "https://github.com/ayush-that/FinVeda/pull/2385", - "https://github.com/ayush-that/FinVeda/pull/2383", - "https://github.com/ayush-that/FinVeda/pull/2381", - "https://github.com/ayush-that/FinVeda/pull/2178", - "https://github.com/ayush-that/FinVeda/pull/2176", - "https://github.com/ayush-that/FinVeda/pull/2175", - "https://github.com/ayush-that/FinVeda/pull/1685", - "https://github.com/ayush-that/FinVeda/pull/1683", - "https://github.com/ayush-that/FinVeda/pull/1632", - "https://github.com/ayush-that/FinVeda/pull/1624", - "https://github.com/ayush-that/FinVeda/pull/1622", - "https://github.com/ayush-that/FinVeda/pull/1527", - "https://github.com/ayush-that/FinVeda/pull/1485", - "https://github.com/ayush-that/FinVeda/pull/1469", - "https://github.com/ayush-that/FinVeda/pull/1393", - "https://github.com/ayush-that/FinVeda/pull/1390", - "https://github.com/ayush-that/FinVeda/pull/1379", - "https://github.com/Devamani11D/salt-app-kickstart/pull/81", - "https://github.com/Devamani11D/salt-app-kickstart/pull/74", - "https://github.com/Devamani11D/salt-app-kickstart/pull/68", - "https://github.com/Devamani11D/salt-app-kickstart/pull/59", - "https://github.com/Harshdev098/Research-Nexas/pull/344", - "https://github.com/Harshdev098/Research-Nexas/pull/330", - "https://github.com/Harshdev098/Research-Nexas/pull/315", - "https://github.com/daccotta-org/daccotta/pull/278", - "https://github.com/Vin205/Enyanjyoti/pull/440", - "https://github.com/Vin205/Enyanjyoti/pull/439", - "https://github.com/Vin205/Enyanjyoti/pull/418", - "https://github.com/Vin205/Enyanjyoti/pull/415", - "https://github.com/Vin205/Enyanjyoti/pull/357", - "https://github.com/4darsh-Dev/DecenTrade/pull/67", - "https://github.com/GSSoC24/Postman-Challenge/pull/2412" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68599050?u=2827b31949ff6bc33fb93568e127c0d41c618091&v=4", - "login": "ygowthamr", - "url": "https://github.com/ygowthamr", - "score": 1310, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/65", - "https://github.com/ankit071105/Ticket-Booking/pull/838", - "https://github.com/ANSHIKA-26/WordWise/pull/1504", - "https://github.com/ANSHIKA-26/WordWise/pull/1488", - "https://github.com/ANSHIKA-26/WordWise/pull/1478", - "https://github.com/ANSHIKA-26/WordWise/pull/1451", - "https://github.com/ANSHIKA-26/WordWise/pull/1102", - "https://github.com/ANSHIKA-26/WordWise/pull/1040", - "https://github.com/ANSHIKA-26/WordWise/pull/1000", - "https://github.com/anuragverma108/SwapReads/pull/3675", - "https://github.com/ayush-that/FinVeda/pull/2433", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/485", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/406", - "https://github.com/Harshdev098/Research-Nexas/pull/338", - "https://github.com/Harshdev098/Research-Nexas/pull/321", - "https://github.com/Harshdev098/Research-Nexas/pull/222", - "https://github.com/Harshdev098/Research-Nexas/pull/184", - "https://github.com/Harshdev098/Research-Nexas/pull/171", - "https://github.com/Harshdev098/Research-Nexas/pull/160", - "https://github.com/Harshdev098/Research-Nexas/pull/144", - "https://github.com/Harshdev098/Research-Nexas/pull/130", - "https://github.com/Harshdev098/Research-Nexas/pull/127", - "https://github.com/Harshdev098/Research-Nexas/pull/124", - "https://github.com/Harshdev098/Research-Nexas/pull/119", - "https://github.com/Harshdev098/Research-Nexas/pull/112", - "https://github.com/Harshdev098/Research-Nexas/pull/82", - "https://github.com/c0sm0void/ReVot/pull/92", - "https://github.com/PriyaGhosal/BuddyTrail/pull/953", - "https://github.com/Rakshit-gen/Slanine/pull/85", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/166", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/536", - "https://github.com/multiverseweb/Dataverse/pull/221", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1097", - "https://github.com/GSSoC24/Postman-Challenge/pull/2132", - "https://github.com/kvcops/KV-Nexus/pull/51" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142504516?u=022aaba1ac3933a36235571cda96ddb245b4ba3f&v=4", - "login": "Kritika75", - "url": "https://github.com/Kritika75", - "score": 1290, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/511", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/510", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/496", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/495", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/474", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/458", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/441", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/381", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/342", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/325", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/296", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/262", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/252", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/232", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/219", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/170", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/150", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/108", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/89", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/50", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/16", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/39", - "https://github.com/Kota-Karthik/twinTrim/pull/80", - "https://github.com/UTSAVS26/PySnippets/pull/179", - "https://github.com/UTSAVS26/PySnippets/pull/155", - "https://github.com/UTSAVS26/PySnippets/pull/137", - "https://github.com/UTSAVS26/PySnippets/pull/38", - "https://github.com/GSSoC24/Postman-Challenge/pull/2008" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157525924?u=36b1880f8e61f128cbe0abd3f5ad3c926034c8e1&v=4", - "login": "AnushkaChouhan25", - "url": "https://github.com/AnushkaChouhan25", - "score": 1280, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1095", - "https://github.com/aditya-bhaumik/Pathsphere/pull/784", - "https://github.com/ajay-dhangar/algo/pull/1679", - "https://github.com/ajay-dhangar/algo/pull/1678", - "https://github.com/ajay-dhangar/algo/pull/1552", - "https://github.com/ajay-dhangar/algo/pull/767", - "https://github.com/ANSHIKA-26/WordWise/pull/1570", - "https://github.com/ANSHIKA-26/WordWise/pull/1424", - "https://github.com/ANSHIKA-26/WordWise/pull/1281", - "https://github.com/ANSHIKA-26/WordWise/pull/992", - "https://github.com/ANSHIKA-26/WordWise/pull/987", - "https://github.com/ANSHIKA-26/WordWise/pull/982", - "https://github.com/anuragverma108/SwapReads/pull/3550", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/184", - "https://github.com/ayush-that/FinVeda/pull/2457", - "https://github.com/ayush-that/FinVeda/pull/2374", - "https://github.com/ayush-that/FinVeda/pull/2256", - "https://github.com/ayush-that/FinVeda/pull/2202", - "https://github.com/ayush-that/FinVeda/pull/2070", - "https://github.com/ayush-that/FinVeda/pull/2066", - "https://github.com/ayush-that/FinVeda/pull/1840", - "https://github.com/ayush-that/FinVeda/pull/1828", - "https://github.com/ayush-that/FinVeda/pull/1819", - "https://github.com/ayush-that/FinVeda/pull/1574", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/937", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/518", - "https://github.com/Bitbox-Connect/Bitbox/pull/319", - "https://github.com/Bitbox-Connect/Bitbox/pull/281", - "https://github.com/Bitbox-Connect/Bitbox/pull/278", - "https://github.com/Bitbox-Connect/Bitbox/pull/263", - "https://github.com/Open-Code-Crafters/FitFlex/pull/344", - "https://github.com/Jiggy9/JCT/pull/73", - "https://github.com/kom-senapati/bot-verse/pull/110", - "https://github.com/Luson045/medi-connect/pull/578", - "https://github.com/Luson045/medi-connect/pull/577", - "https://github.com/Luson045/medi-connect/pull/576", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/259", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1776", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1763", - "https://github.com/iamrahulmahato/master-web-development/pull/1465", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/422", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/416", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/74", - "https://github.com/Soujanya2004/wanderlust-2024/pull/84", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1054", - "https://github.com/Yashgabani845/hiring-portal/pull/151", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/22", - "https://github.com/GSSoC24/Postman-Challenge/pull/2051" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116169377?u=113853000200986533574d1f714e2c0ba992785e&v=4", - "login": "harish08102004", - "url": "https://github.com/harish08102004", - "score": 1260, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/63", - "https://github.com/Harshdev098/Research-Nexas/pull/61", - "https://github.com/Harshdev098/Research-Nexas/pull/58", - "https://github.com/Luson045/medi-connect/pull/445", - "https://github.com/Luson045/medi-connect/pull/115", - "https://github.com/Luson045/medi-connect/pull/107", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/444", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/443", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/386", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/287", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/281", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/132", - "https://github.com/c0sm0void/ReVot/pull/54", - "https://github.com/MitulSonagara/truth-tunnel/pull/47", - "https://github.com/MitulSonagara/truth-tunnel/pull/39", - "https://github.com/MitulSonagara/truth-tunnel/pull/20", - "https://github.com/MitulSonagara/truth-tunnel/pull/11", - "https://github.com/TherkuTech/tturl/pull/51", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/134", - "https://github.com/subhadipbhowmik/bio-branch/pull/78", - "https://github.com/Soujanya2004/wanderlust-2024/pull/87", - "https://github.com/Soujanya2004/wanderlust-2024/pull/67", - "https://github.com/Soujanya2004/wanderlust-2024/pull/49", - "https://github.com/multiverseweb/Dataverse/pull/46", - "https://github.com/multiverseweb/Dataverse/pull/22", - "https://github.com/TenzDelek/DearDiary/pull/69", - "https://github.com/TenzDelek/DearDiary/pull/24", - "https://github.com/TenzDelek/DearDiary/pull/20", - "https://github.com/Trisha-tech/OnlineBookSales/pull/376", - "https://github.com/GSSoC24/Postman-Challenge/pull/2439" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175431218?u=96dd24ea2a080d5cbd06bff347c191e8ead8b188&v=4", - "login": "adityalaxkar123", - "url": "https://github.com/adityalaxkar123", - "score": 1240, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/937", - "https://github.com/ankit071105/Ticket-Booking/pull/799", - "https://github.com/ankit071105/Ticket-Booking/pull/718", - "https://github.com/ankit071105/Ticket-Booking/pull/715", - "https://github.com/ankit071105/Ticket-Booking/pull/698", - "https://github.com/ankit071105/Ticket-Booking/pull/668", - "https://github.com/ankit071105/Ticket-Booking/pull/616", - "https://github.com/ankit071105/Ticket-Booking/pull/612", - "https://github.com/anuragverma108/SwapReads/pull/4094", - "https://github.com/anuragverma108/SwapReads/pull/4073", - "https://github.com/anuragverma108/SwapReads/pull/3984", - "https://github.com/vishanurag/Canvas-Editor/pull/65", - "https://github.com/vishanurag/Canvas-Editor/pull/9", - "https://github.com/ayush-that/FinVeda/pull/2346", - "https://github.com/ayush-that/FinVeda/pull/2300", - "https://github.com/ayush-that/FinVeda/pull/2277", - "https://github.com/ayush-that/FinVeda/pull/2266", - "https://github.com/ayush-that/FinVeda/pull/2232", - "https://github.com/ayush-that/FinVeda/pull/2222", - "https://github.com/ayush-that/FinVeda/pull/2172", - "https://github.com/ayush-that/FinVeda/pull/2127", - "https://github.com/ayush-that/FinVeda/pull/2085", - "https://github.com/ayush-that/FinVeda/pull/2007", - "https://github.com/ayush-that/FinVeda/pull/1986", - "https://github.com/ayush-that/FinVeda/pull/1961", - "https://github.com/ayush-that/FinVeda/pull/1874", - "https://github.com/ayush-that/FinVeda/pull/1832", - "https://github.com/ayush-that/FinVeda/pull/1774", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/950", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/711", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/405", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/277", - "https://github.com/iamrahulmahato/master-web-development/pull/247", - "https://github.com/Vin205/Enyanjyoti/pull/80", - "https://github.com/Vin205/Enyanjyoti/pull/22", - "https://github.com/GSSoC24/Postman-Challenge/pull/2406" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-08", - "2024-10-12", - "2024-10-18", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 9 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129055361?v=4", - "login": "govindumeesala", - "url": "https://github.com/govindumeesala", - "score": 1225, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/522", - "https://github.com/ajay-dhangar/algo/pull/519", - "https://github.com/ajay-dhangar/algo/pull/369", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/319", - "https://github.com/yatulearn/yatulearn/pull/90", - "https://github.com/ankit071105/Ticket-Booking/pull/751", - "https://github.com/ankit071105/Ticket-Booking/pull/644", - "https://github.com/ankit071105/Ticket-Booking/pull/175", - "https://github.com/ankit071105/Ticket-Booking/pull/92", - "https://github.com/anuj123upadhyay/MegaBlog/pull/277", - "https://github.com/anuj123upadhyay/MegaBlog/pull/107", - "https://github.com/vishanurag/Canvas-Editor/pull/96", - "https://github.com/mdazfar2/Ezyshop/pull/311", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/318", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/305", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/204", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/106", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/59", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/7", - "https://github.com/Open-Code-Crafters/FitFlex/pull/151", - "https://github.com/AlgoGenesis/C/pull/1022", - "https://github.com/AlgoGenesis/C/pull/446", - "https://github.com/AlgoGenesis/C/pull/182", - "https://github.com/recodehive/machine-learning-repos/pull/1405", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/146", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/125", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/89", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/83", - "https://github.com/GSSoC24/Postman-Challenge/pull/1934" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93651229?u=3541894342f01be4f0a03b4f0569be92a73283c8&v=4", - "login": "AE-Hertz", - "url": "https://github.com/AE-Hertz", - "score": 1210, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/102", - "https://github.com/aditya-bhaumik/Pathsphere/pull/806", - "https://github.com/ajay-dhangar/algo/pull/1667", - "https://github.com/ajay-dhangar/algo/pull/1666", - "https://github.com/ajay-dhangar/algo/pull/1665", - "https://github.com/ajay-dhangar/algo/pull/1664", - "https://github.com/ajay-dhangar/algo/pull/1533", - "https://github.com/ajay-dhangar/algo/pull/1532", - "https://github.com/ajay-dhangar/algo/pull/1531", - "https://github.com/ajay-dhangar/algo/pull/1530", - "https://github.com/ajay-dhangar/algo/pull/1200", - "https://github.com/ajay-dhangar/algo/pull/1197", - "https://github.com/ajay-dhangar/algo/pull/1153", - "https://github.com/ajay-dhangar/algo/pull/1149", - "https://github.com/ajay-dhangar/algo/pull/956", - "https://github.com/ajay-dhangar/algo/pull/617", - "https://github.com/ajay-dhangar/algo/pull/590", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/147", - "https://github.com/anuragverma108/SwapReads/pull/4151", - "https://github.com/vishanurag/Canvas-Editor/pull/1089", - "https://github.com/codeaashu/DevDisplay/pull/308", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/248", - "https://github.com/dhairyagothi/StationGuide/pull/297", - "https://github.com/dhairyagothi/StationGuide/pull/289", - "https://github.com/Bitbox-Connect/Bitbox/pull/257", - "https://github.com/himeshparashar/Social-Morph/pull/178", - "https://github.com/himeshparashar/Social-Morph/pull/165", - "https://github.com/Open-Code-Crafters/FitFlex/pull/393", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/662", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/641", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/640", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/638", - "https://github.com/AlgoGenesis/C/pull/1426", - "https://github.com/AlgoGenesis/C/pull/1361", - "https://github.com/AlgoGenesis/C/pull/1253", - "https://github.com/param-code/counter-app/pull/302", - "https://github.com/Puskar-Roy/create-my-api/pull/100", - "https://github.com/Puskar-Roy/create-my-api/pull/77", - "https://github.com/rahulsainlll/git-trace/pull/160", - "https://github.com/Rakshit-gen/Slanine/pull/150", - "https://github.com/Rakshit-gen/Slanine/pull/149", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/418", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/414", - "https://github.com/soham0005/ElectroKart/pull/266", - "https://github.com/TenzDelek/DearDiary/pull/188", - "https://github.com/notsoocool/codecache/pull/182", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/357", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/320", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/303", - "https://github.com/GSSoC24/Postman-Challenge/pull/2128", - "https://github.com/kvcops/KV-Nexus/pull/53" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-18", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140236223?u=18de05e1105212332b634cfe80330c554a14076b&v=4", - "login": "Varsha-1605", - "url": "https://github.com/Varsha-1605", - "score": 1210, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1051", - "https://github.com/aditya-bhaumik/Pathsphere/pull/920", - "https://github.com/aditya-bhaumik/Pathsphere/pull/910", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/554", - "https://github.com/ANSHIKA-26/WordWise/pull/1093", - "https://github.com/ANSHIKA-26/WordWise/pull/999", - "https://github.com/ANSHIKA-26/WordWise/pull/930", - "https://github.com/ayush-that/FinVeda/pull/2191", - "https://github.com/ayush-that/FinVeda/pull/2180", - "https://github.com/kom-senapati/bot-verse/pull/41", - "https://github.com/kom-senapati/bot-verse/pull/40", - "https://github.com/kom-senapati/bot-verse/pull/39", - "https://github.com/kom-senapati/bot-verse/pull/38", - "https://github.com/kom-senapati/bot-verse/pull/28", - "https://github.com/Anjaliavv51/Retro/pull/770", - "https://github.com/Anjaliavv51/Retro/pull/598", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/400", - "https://github.com/PriyaGhosal/BuddyTrail/pull/873", - "https://github.com/PriyaGhosal/BuddyTrail/pull/523", - "https://github.com/tushargupta1504/Medical-Website/pull/541", - "https://github.com/tushargupta1504/Medical-Website/pull/527", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1164", - "https://github.com/GSSoC24/Postman-Challenge/pull/2716" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165137755?u=6f77dc97ec9414ea4b69dff8e43f3e45a1d54830&v=4", - "login": "meghanakn473", - "url": "https://github.com/meghanakn473", - "score": 1210, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1038", - "https://github.com/aditya-bhaumik/Pathsphere/pull/913", - "https://github.com/ajay-dhangar/algo/pull/399", - "https://github.com/VesperAkshay/qr-code-generator/pull/80", - "https://github.com/ANSHIKA-26/WordWise/pull/490", - "https://github.com/dhairyagothi/StationGuide/pull/207", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/412", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/85", - "https://github.com/kartikayasijaa/talk-trove/pull/82", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/164", - "https://github.com/mansiruhil13/Bobble-AI/pull/299", - "https://github.com/AlgoGenesis/C/pull/897", - "https://github.com/AlgoGenesis/C/pull/656", - "https://github.com/param-code/counter-app/pull/224", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1054", - "https://github.com/PriyaGhosal/BuddyTrail/pull/923", - "https://github.com/PriyaGhosal/BuddyTrail/pull/909", - "https://github.com/Puskar-Roy/create-my-api/pull/145", - "https://github.com/iamrahulmahato/master-web-development/pull/1095", - "https://github.com/iamrahulmahato/master-web-development/pull/300", - "https://github.com/iamrahulmahato/master-web-development/pull/100", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/375", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/38", - "https://github.com/subhadipbhowmik/bio-branch/pull/332", - "https://github.com/subhadipbhowmik/bio-branch/pull/197", - "https://github.com/subhadipbhowmik/bio-branch/pull/195", - "https://github.com/subhadipbhowmik/bio-branch/pull/143", - "https://github.com/Trisha-tech/OnlineBookSales/pull/490", - "https://github.com/GSSoC24/Postman-Challenge/pull/2297" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-25", - "2024-10-26", - "2024-10-27" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96732970?u=0cb02fea7c65f81afa4f1d8dee5172a336fe3318&v=4", - "login": "Irtesaam", - "url": "https://github.com/Irtesaam", - "score": 1185, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3983", - "https://github.com/codeaashu/DevDisplay/pull/430", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1643", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1641", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1637", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1535", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1462", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1394", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1281", - "https://github.com/vanshchauhan21/CryptoTracker/pull/327", - "https://github.com/vanshchauhan21/CryptoTracker/pull/320", - "https://github.com/vanshchauhan21/CryptoTracker/pull/284", - "https://github.com/vanshchauhan21/CryptoTracker/pull/275", - "https://github.com/vanshchauhan21/CryptoTracker/pull/273", - "https://github.com/vanshchauhan21/CryptoTracker/pull/251", - "https://github.com/vanshchauhan21/CryptoTracker/pull/244", - "https://github.com/vanshchauhan21/CryptoTracker/pull/241", - "https://github.com/vanshchauhan21/CryptoTracker/pull/238", - "https://github.com/vanshchauhan21/CryptoTracker/pull/231", - "https://github.com/vanshchauhan21/CryptoTracker/pull/223", - "https://github.com/vanshchauhan21/CryptoTracker/pull/219", - "https://github.com/vanshchauhan21/CryptoTracker/pull/216", - "https://github.com/vanshchauhan21/CryptoTracker/pull/214", - "https://github.com/vanshchauhan21/CryptoTracker/pull/182", - "https://github.com/vanshchauhan21/CryptoTracker/pull/163", - "https://github.com/vanshchauhan21/CryptoTracker/pull/158", - "https://github.com/vanshchauhan21/CryptoTracker/pull/156", - "https://github.com/vanshchauhan21/CryptoTracker/pull/120", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1225", - "https://github.com/GSSoC24/Postman-Challenge/pull/2248" - ], - "pr_dates": [ - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150767072?u=5829bf329ec3d993737a501d06f7123ca0c59294&v=4", - "login": "priyashuu", - "url": "https://github.com/priyashuu", - "score": 1175, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/231", - "https://github.com/aditya-bhaumik/Pathsphere/pull/42", - "https://github.com/ajay-dhangar/algo/pull/1262", - "https://github.com/ajay-dhangar/algo/pull/1261", - "https://github.com/ajay-dhangar/algo/pull/1260", - "https://github.com/ajay-dhangar/algo/pull/1032", - "https://github.com/ajay-dhangar/algo/pull/1030", - "https://github.com/ajay-dhangar/algo/pull/1026", - "https://github.com/ajay-dhangar/algo/pull/926", - "https://github.com/ajay-dhangar/algo/pull/925", - "https://github.com/ajay-dhangar/algo/pull/924", - "https://github.com/ajay-dhangar/algo/pull/866", - "https://github.com/ajay-dhangar/algo/pull/791", - "https://github.com/ajay-dhangar/algo/pull/786", - "https://github.com/ajay-dhangar/algo/pull/780", - "https://github.com/ajay-dhangar/algo/pull/492", - "https://github.com/ajay-dhangar/algo/pull/490", - "https://github.com/vishanurag/Canvas-Editor/pull/56", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/202", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/201", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/225", - "https://github.com/OpenTekHub/blockchain/pull/130", - "https://github.com/OpenTekHub/blockchain/pull/77", - "https://github.com/Anjaliavv51/Retro/pull/340", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/217", - "https://github.com/Scribbie-Notes/notes-app/pull/174", - "https://github.com/Scribbie-Notes/notes-app/pull/155", - "https://github.com/Scribbie-Notes/notes-app/pull/146", - "https://github.com/Scribbie-Notes/notes-app/pull/142", - "https://github.com/Scribbie-Notes/notes-app/pull/131", - "https://github.com/UTSAVS26/PyVerse/pull/840", - "https://github.com/UTSAVS26/PyVerse/pull/622", - "https://github.com/UTSAVS26/PyVerse/pull/509", - "https://github.com/GSSoC24/Postman-Challenge/pull/2348" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-24", - "2024-10-25" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75712741?u=85c86b621e4f7ea6a86f96621bc1b2d16f0a3c0e&v=4", - "login": "milansamuel609", - "url": "https://github.com/milansamuel609", - "score": 1170, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/949", - "https://github.com/DeadmanAbir/AgentGenesis/pull/79", - "https://github.com/aditya-bhaumik/Pathsphere/pull/768", - "https://github.com/ajaynegi45/LibraryMan-API/pull/79", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/447", - "https://github.com/vishanurag/Canvas-Editor/pull/623", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/258", - "https://github.com/codeaashu/DevDisplay/pull/473", - "https://github.com/ayush-that/FinVeda/pull/2213", - "https://github.com/ayush-that/FinVeda/pull/1438", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/83", - "https://github.com/dhairyagothi/StationGuide/pull/301", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/697", - "https://github.com/Devamani11D/salt-app-kickstart/pull/46", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/439", - "https://github.com/Bitbox-Connect/Bitbox/pull/317", - "https://github.com/himeshparashar/Social-Morph/pull/140", - "https://github.com/jahnvisahni31/DesignDeck/pull/205", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/357", - "https://github.com/Open-Code-Crafters/FitFlex/pull/268", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/44", - "https://github.com/Luson045/medi-connect/pull/491", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/517", - "https://github.com/Megh2005/Med-o-Next/pull/139", - "https://github.com/MitulSonagara/truth-tunnel/pull/294", - "https://github.com/param-code/counter-app/pull/281", - "https://github.com/rahulsainlll/git-trace/pull/159", - "https://github.com/recodehive/Scrape-ML/pull/294", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/139", - "https://github.com/subhadeeproy3902/trailgo/pull/86", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/642", - "https://github.com/tanishaness/SPROCTOR/pull/76", - "https://github.com/multiverseweb/Dataverse/pull/183", - "https://github.com/Trisha-tech/OnlineBookSales/pull/502", - "https://github.com/vansh-codes/ChaosWeb/pull/181", - "https://github.com/VigneshDevHub/CampX/pull/263", - "https://github.com/VigneshDevHub/CampX/pull/225", - "https://github.com/visheshrwl/Uber-like/pull/67", - "https://github.com/yagnik2411/Quiz-Genius/pull/134", - "https://github.com/Scribbie-Notes/notes-app/pull/271", - "https://github.com/Yashgabani845/hiring-portal/pull/233", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/139", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/36", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/27", - "https://github.com/4darsh-Dev/DecenTrade/pull/51", - "https://github.com/GSSoC24/Postman-Challenge/pull/2017" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65026713?u=a27d29a04ba7fb65357cae71130e1424bc22d738&v=4", - "login": "KrishPatel1205", - "url": "https://github.com/KrishPatel1205", - "score": 1165, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1483", - "https://github.com/ANSHIKA-26/WordWise/pull/1335", - "https://github.com/ANSHIKA-26/WordWise/pull/1324", - "https://github.com/ANSHIKA-26/WordWise/pull/1317", - "https://github.com/anuragverma108/SwapReads/pull/3880", - "https://github.com/anuragverma108/SwapReads/pull/3846", - "https://github.com/anuragverma108/SwapReads/pull/3804", - "https://github.com/Code-Social/official-website/pull/441", - "https://github.com/Code-Social/official-website/pull/364", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/869", - "https://github.com/mansiruhil13/Bobble-AI/pull/954", - "https://github.com/Anjaliavv51/Retro/pull/600", - "https://github.com/Anjaliavv51/Retro/pull/536", - "https://github.com/Anjaliavv51/Retro/pull/531", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1793", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1784", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1781", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1779", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1773", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1771", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1750", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1726", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1611", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1591", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1546", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1538", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1522", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1516", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1510", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1460", - "https://github.com/PriyaGhosal/BuddyTrail/pull/959", - "https://github.com/PriyaGhosal/BuddyTrail/pull/843", - "https://github.com/PriyaGhosal/BuddyTrail/pull/809", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/455", - "https://github.com/GSSoC24/Postman-Challenge/pull/2155" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 13 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135944619?u=66679aa8478260cdc4509768da193bc991fe3577&v=4", - "login": "nishant4500", - "url": "https://github.com/nishant4500", - "score": 1160, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/553", - "https://github.com/ajay-dhangar/algo/pull/1637", - "https://github.com/ajay-dhangar/algo/pull/1377", - "https://github.com/ajay-dhangar/algo/pull/1373", - "https://github.com/ajay-dhangar/algo/pull/1300", - "https://github.com/ajay-dhangar/algo/pull/1296", - "https://github.com/ajay-dhangar/algo/pull/1264", - "https://github.com/ajay-dhangar/algo/pull/1243", - "https://github.com/ajay-dhangar/algo/pull/1191", - "https://github.com/ajay-dhangar/algo/pull/921", - "https://github.com/ajay-dhangar/algo/pull/771", - "https://github.com/ajay-dhangar/algo/pull/635", - "https://github.com/ajay-dhangar/algo/pull/570", - "https://github.com/ajay-dhangar/algo/pull/321", - "https://github.com/ajay-dhangar/algo/pull/320", - "https://github.com/ajay-dhangar/algo/pull/319", - "https://github.com/ajay-dhangar/algo/pull/163", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/162", - "https://github.com/anuragverma108/SwapReads/pull/3271", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/487", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/470", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/403", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/399", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/396", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/362", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/361", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/349", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/324", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/306", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/304", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/302", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/299", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/272", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/267", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/256", - "https://github.com/recodehive/machine-learning-repos/pull/1492", - "https://github.com/recodehive/machine-learning-repos/pull/1385", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1208", - "https://github.com/GSSoC24/Postman-Challenge/pull/1973" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182724034?u=512bc0e1f5ddfbc7605bc6b73e386df6da7aa280&v=4", - "login": "amiya-cyber", - "url": "https://github.com/amiya-cyber", - "score": 1160, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1305", - "https://github.com/ajay-dhangar/algo/pull/1287", - "https://github.com/ankit071105/Ticket-Booking/pull/576", - "https://github.com/ankit071105/Ticket-Booking/pull/565", - "https://github.com/anki2003ta/Museum/pull/146", - "https://github.com/anuragverma108/SwapReads/pull/4198", - "https://github.com/vishanurag/Canvas-Editor/pull/1058", - "https://github.com/vishanurag/Canvas-Editor/pull/1051", - "https://github.com/vishanurag/Canvas-Editor/pull/814", - "https://github.com/Code-Social/official-website/pull/370", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/80", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/77", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/73", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/68", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/67", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/64", - "https://github.com/codeaashu/DevDisplay/pull/502", - "https://github.com/codeaashu/DevDisplay/pull/417", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/456", - "https://github.com/ayush-that/FinVeda/pull/2437", - "https://github.com/ayush-that/FinVeda/pull/1810", - "https://github.com/ayush-that/FinVeda/pull/1786", - "https://github.com/ayush-that/FinVeda/pull/1709", - "https://github.com/dhairyagothi/StationGuide/pull/408", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/523", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/476", - "https://github.com/Harshdev098/Research-Nexas/pull/328", - "https://github.com/jahnvisahni31/DesignDeck/pull/221", - "https://github.com/jahnvisahni31/DesignDeck/pull/215", - "https://github.com/Open-Code-Crafters/FitFlex/pull/397", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/633", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/63", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/54", - "https://github.com/Luson045/medi-connect/pull/571", - "https://github.com/Luson045/medi-connect/pull/545", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/736", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/658", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/642", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/464", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/415", - "https://github.com/MitulSonagara/truth-tunnel/pull/285", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1165", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1149", - "https://github.com/ombhojane/explainableai/pull/128", - "https://github.com/param-code/counter-app/pull/254", - "https://github.com/rahulsainlll/git-trace/pull/155", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/552", - "https://github.com/Rakshit-gen/Slanine/pull/111", - "https://github.com/Rakshit-gen/Slanine/pull/108", - "https://github.com/Rakshit-gen/Slanine/pull/107", - "https://github.com/recodehive/Scrape-ML/pull/290", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/56", - "https://github.com/swarooppatilx/scruter/pull/331", - "https://github.com/tanishaness/SPROCTOR/pull/64", - "https://github.com/multiverseweb/Dataverse/pull/262", - "https://github.com/multiverseweb/Dataverse/pull/229", - "https://github.com/multiverseweb/CodeIt/pull/287", - "https://github.com/multiverseweb/CodeIt/pull/236", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/692", - "https://github.com/Trisha-tech/OnlineBookSales/pull/649", - "https://github.com/Trisha-tech/OnlineBookSales/pull/642", - "https://github.com/vansh-codes/Gityzer/pull/69", - "https://github.com/vansh-codes/ChaosWeb/pull/173", - "https://github.com/Vimall03/Alimento/pull/165", - "https://github.com/visheshrwl/Uber-like/pull/85", - "https://github.com/notsoocool/codecache/pull/164", - "https://github.com/Yashgabani845/hiring-portal/pull/235", - "https://github.com/apu52/METAVERSE/pull/1343", - "https://github.com/UTSAVS26/PyVerse/pull/810", - "https://github.com/vanshchauhan21/CryptoTracker/pull/280", - "https://github.com/vanshchauhan21/CryptoTracker/pull/256", - "https://github.com/vanshchauhan21/CryptoTracker/pull/135", - "https://github.com/vanshchauhan21/CryptoTracker/pull/131", - "https://github.com/vanshchauhan21/CryptoTracker/pull/126" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 13 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68934988?u=a68f4cc42be62a87bb0876ddf042112de8ac2ea0&v=4", - "login": "rajdeepchakraborty-rc", - "url": "https://github.com/rajdeepchakraborty-rc", - "score": 1160, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/110", - "https://github.com/anuragverma108/SwapReads/pull/4171", - "https://github.com/anuragverma108/SwapReads/pull/4102", - "https://github.com/anuragverma108/SwapReads/pull/3120", - "https://github.com/vishanurag/Canvas-Editor/pull/564", - "https://github.com/vishanurag/Canvas-Editor/pull/159", - "https://github.com/ayush-that/FinVeda/pull/2298", - "https://github.com/mdazfar2/Ezyshop/pull/1048", - "https://github.com/mdazfar2/Ezyshop/pull/382", - "https://github.com/dhairyagothi/StationGuide/pull/125", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/957", - "https://github.com/Luson045/medi-connect/pull/403", - "https://github.com/mansiruhil13/Bobble-AI/pull/1055", - "https://github.com/mansiruhil13/Bobble-AI/pull/427", - "https://github.com/mansiruhil13/Bobble-AI/pull/318", - "https://github.com/MitulSonagara/truth-tunnel/pull/64", - "https://github.com/AlgoGenesis/C/pull/1393", - "https://github.com/PriyaGhosal/BuddyTrail/pull/559", - "https://github.com/recodehive/awesome-github-profiles/pull/646", - "https://github.com/SaranshBangar/Daneizo/pull/84", - "https://github.com/subhadipbhowmik/bio-branch/pull/214", - "https://github.com/subhadipbhowmik/bio-branch/pull/140", - "https://github.com/soham0005/ElectroKart/pull/129", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/161", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/127", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/114", - "https://github.com/UTSAVS26/PySnippets/pull/192", - "https://github.com/vansh-codes/Gityzer/pull/73", - "https://github.com/vansh-codes/ChaosWeb/pull/203", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/857", - "https://github.com/yagnik2411/Quiz-Genius/pull/102", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/94", - "https://github.com/GSSoC24/Postman-Challenge/pull/2276" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-19", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123581988?v=4", - "login": "souvikpramanikgit", - "url": "https://github.com/souvikpramanikgit", - "score": 1155, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/21", - "https://github.com/VesperAkshay/qr-code-generator/pull/93", - "https://github.com/vishanurag/Canvas-Editor/pull/1110", - "https://github.com/vishanurag/Canvas-Editor/pull/1081", - "https://github.com/vishanurag/Canvas-Editor/pull/1073", - "https://github.com/vishanurag/Canvas-Editor/pull/1031", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/300", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/152", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/147", - "https://github.com/OpenTekHub/blockchain/pull/86", - "https://github.com/c0sm0void/ReVot/pull/27", - "https://github.com/MitulSonagara/truth-tunnel/pull/36", - "https://github.com/param-code/counter-app/pull/315", - "https://github.com/andoriyaprashant/DevDocsHub/pull/35", - "https://github.com/PriyaGhosal/BuddyTrail/pull/398", - "https://github.com/iamrahulmahato/master-web-development/pull/760", - "https://github.com/iamrahulmahato/master-web-development/pull/757", - "https://github.com/iamrahulmahato/master-web-development/pull/753", - "https://github.com/iamrahulmahato/master-web-development/pull/745", - "https://github.com/iamrahulmahato/master-web-development/pull/738", - "https://github.com/iamrahulmahato/master-web-development/pull/727", - "https://github.com/iamrahulmahato/master-web-development/pull/717", - "https://github.com/iamrahulmahato/master-web-development/pull/654", - "https://github.com/iamrahulmahato/master-web-development/pull/653", - "https://github.com/iamrahulmahato/master-web-development/pull/652", - "https://github.com/iamrahulmahato/master-web-development/pull/651", - "https://github.com/iamrahulmahato/master-web-development/pull/650", - "https://github.com/iamrahulmahato/master-web-development/pull/649", - "https://github.com/iamrahulmahato/master-web-development/pull/556", - "https://github.com/iamrahulmahato/master-web-development/pull/554", - "https://github.com/iamrahulmahato/master-web-development/pull/473", - "https://github.com/iamrahulmahato/master-web-development/pull/472", - "https://github.com/iamrahulmahato/master-web-development/pull/471", - "https://github.com/iamrahulmahato/master-web-development/pull/469", - "https://github.com/iamrahulmahato/master-web-development/pull/468", - "https://github.com/iamrahulmahato/master-web-development/pull/466", - "https://github.com/iamrahulmahato/master-web-development/pull/462", - "https://github.com/iamrahulmahato/master-web-development/pull/457", - "https://github.com/iamrahulmahato/master-web-development/pull/456", - "https://github.com/iamrahulmahato/master-web-development/pull/442", - "https://github.com/iamrahulmahato/master-web-development/pull/438", - "https://github.com/iamrahulmahato/master-web-development/pull/396", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/25", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/55", - "https://github.com/swarooppatilx/scruter/pull/24", - "https://github.com/multiverseweb/CodeIt/pull/279", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/316", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/314", - "https://github.com/UTSAVS26/PyVerse/pull/907", - "https://github.com/UTSAVS26/PyVerse/pull/893", - "https://github.com/UTSAVS26/PyVerse/pull/794", - "https://github.com/UTSAVS26/PyVerse/pull/520", - "https://github.com/vanshchauhan21/CryptoTracker/pull/354", - "https://github.com/vanshchauhan21/CryptoTracker/pull/351", - "https://github.com/vanshchauhan21/CryptoTracker/pull/243", - "https://github.com/vanshchauhan21/CryptoTracker/pull/228", - "https://github.com/vanshchauhan21/CryptoTracker/pull/227", - "https://github.com/GSSoC24/Postman-Challenge/pull/2581" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-22", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122438942?u=c0bd78a34f0c54f9d4b3313441df41c49f963082&v=4", - "login": "devxMani", - "url": "https://github.com/devxMani", - "score": 1145, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/35", - "https://github.com/aditya-bhaumik/Pathsphere/pull/30", - "https://github.com/mdazfar2/Ezyshop/pull/990", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/59", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/52", - "https://github.com/dohinaf/basic-icecream-website/pull/63", - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/32", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/339", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/116", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/331", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/221", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/108", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/76", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/18", - "https://github.com/Manishkr1007/WordWeaver/pull/19", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/430", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/429", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/401", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/400", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/253", - "https://github.com/AlgoGenesis/C/pull/831", - "https://github.com/AlgoGenesis/C/pull/814", - "https://github.com/AlgoGenesis/C/pull/578", - "https://github.com/AlgoGenesis/C/pull/571", - "https://github.com/param-code/counter-app/pull/108", - "https://github.com/param-code/counter-app/pull/86", - "https://github.com/param-code/counter-app/pull/35", - "https://github.com/param-code/counter-app/pull/34", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/24", - "https://github.com/Rakshit-gen/Slanine/pull/53", - "https://github.com/Rakshit-gen/Slanine/pull/47", - "https://github.com/Rakshit-gen/Slanine/pull/42", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/223", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/49", - "https://github.com/sk66641/AquaGuardians/pull/22", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/81", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/58", - "https://github.com/tanishaness/SPROCTOR/pull/14", - "https://github.com/multiverseweb/CodeIt/pull/21", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1028", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/376", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/35", - "https://github.com/UTSAVS26/PyVerse/pull/784", - "https://github.com/GSSoC24/Postman-Challenge/pull/2856" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-22", - "2024-10-24", - "2024-10-26", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151003533?u=367535759e897dfe85804a53a2bad522315dfb3d&v=4", - "login": "samriddhitiwary", - "url": "https://github.com/samriddhitiwary", - "score": 1140, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/445", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/315", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/272", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/215", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/187", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/142", - "https://github.com/Open-Code-Crafters/FitFlex/pull/73", - "https://github.com/Manishkr1007/WordWeaver/pull/104", - "https://github.com/samyakmaitre/eventmint/pull/418", - "https://github.com/samyakmaitre/eventmint/pull/161", - "https://github.com/samyakmaitre/eventmint/pull/157", - "https://github.com/samyakmaitre/eventmint/pull/118", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/258", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/136", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/55", - "https://github.com/vansh-codes/ChaosWeb/pull/191", - "https://github.com/vansh-codes/ChaosWeb/pull/190", - "https://github.com/vansh-codes/ChaosWeb/pull/185", - "https://github.com/GSSoC24/Postman-Challenge/pull/2002" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-18", - "2024-10-22", - "2024-10-23", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114805934?v=4", - "login": "devarsheecodess", - "url": "https://github.com/devarsheecodess", - "score": 1125, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/35", - "https://github.com/dohinaf/basic-icecream-website/pull/233", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/308", - "https://github.com/mansiruhil13/Bobble-AI/pull/526", - "https://github.com/mansiruhil13/Bobble-AI/pull/472", - "https://github.com/mansiruhil13/Bobble-AI/pull/388", - "https://github.com/mansiruhil13/Bobble-AI/pull/332", - "https://github.com/mansiruhil13/Bobble-AI/pull/312", - "https://github.com/mansiruhil13/Bobble-AI/pull/187", - "https://github.com/mansiruhil13/Bobble-AI/pull/178", - "https://github.com/mansiruhil13/Bobble-AI/pull/137", - "https://github.com/mansiruhil13/Bobble-AI/pull/124", - "https://github.com/mansiruhil13/Bobble-AI/pull/122", - "https://github.com/mansiruhil13/Bobble-AI/pull/62", - "https://github.com/mansiruhil13/Bobble-AI/pull/50", - "https://github.com/PriyaGhosal/BuddyTrail/pull/385", - "https://github.com/PriyaGhosal/BuddyTrail/pull/113", - "https://github.com/iamrahulmahato/master-web-development/pull/1075", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/131", - "https://github.com/subhadipbhowmik/bio-branch/pull/8", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/93", - "https://github.com/swarooppatilx/scruter/pull/153", - "https://github.com/multiverseweb/Dataverse/pull/50", - "https://github.com/Scribbie-Notes/notes-app/pull/111", - "https://github.com/GSSoC24/Postman-Challenge/pull/1816" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179141504?u=5a8a0de8e2a85f352c03f5610d2bd1297316a46c&v=4", - "login": "Chin-may02", - "url": "https://github.com/Chin-may02", - "score": 1110, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/512", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/479", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/461", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/389", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/363", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/327", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/284", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/250", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/234", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/225", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/180", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/157", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/112", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/82", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/71", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/49", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/34", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/27", - "https://github.com/UTSAVS26/PyVerse/pull/912", - "https://github.com/UTSAVS26/PyVerse/pull/829", - "https://github.com/UTSAVS26/PyVerse/pull/743", - "https://github.com/UTSAVS26/PyVerse/pull/687", - "https://github.com/UTSAVS26/PyVerse/pull/606", - "https://github.com/UTSAVS26/PyVerse/pull/512", - "https://github.com/UTSAVS26/PyVerse/pull/392", - "https://github.com/UTSAVS26/PyVerse/pull/327", - "https://github.com/UTSAVS26/PyVerse/pull/204", - "https://github.com/UTSAVS26/PyVerse/pull/95", - "https://github.com/UTSAVS26/PyVerse/pull/92", - "https://github.com/GSSoC24/Postman-Challenge/pull/1841" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152625405?u=036953b1b103e79165ff5f18b2268e104eacd722&v=4", - "login": "Mohitranag18", - "url": "https://github.com/Mohitranag18", - "score": 1075, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1032", - "https://github.com/aditya-bhaumik/Pathsphere/pull/691", - "https://github.com/aditya-bhaumik/Pathsphere/pull/114", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/926", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/913", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/884", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/881", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/854", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/834", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/833", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/832", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/804", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/798", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/733", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/183", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/128", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/69", - "https://github.com/GSSoC24/Postman-Challenge/pull/2275" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-07", - "2024-10-15", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76431221?v=4", - "login": "dev129", - "url": "https://github.com/dev129", - "score": 1075, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/RCCTechzClub/TechzRevamp/pull/30", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1009", - "https://github.com/jahnvisahni31/DesignDeck/pull/219", - "https://github.com/jahnvisahni31/DesignDeck/pull/184", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/71", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/67", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/66", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/65", - "https://github.com/MitulSonagara/truth-tunnel/pull/272", - "https://github.com/Rakshit-gen/Slanine/pull/73", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/79", - "https://github.com/multiverseweb/CodeIt/pull/185", - "https://github.com/TenzDelek/DearDiary/pull/142", - "https://github.com/vansh-codes/Gityzer/pull/54", - "https://github.com/notsoocool/codecache/pull/142", - "https://github.com/notsoocool/codecache/pull/119", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/302", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/234", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/90", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/86", - "https://github.com/GSSoC24/Postman-Challenge/pull/2266" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150820396?u=6ea598def4399aa787e37f26fb625f2f51b32589&v=4", - "login": "AnujShrivastava01", - "url": "https://github.com/AnujShrivastava01", - "score": 1055, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ChandelAnish/fusionFLOW/pull/96", - "https://github.com/ANSHIKA-26/WordWise/pull/518", - "https://github.com/anuragverma108/SwapReads/pull/3179", - "https://github.com/vishanurag/Canvas-Editor/pull/1075", - "https://github.com/vishanurag/Canvas-Editor/pull/998", - "https://github.com/vishanurag/Canvas-Editor/pull/959", - "https://github.com/vishanurag/Canvas-Editor/pull/958", - "https://github.com/vishanurag/Canvas-Editor/pull/912", - "https://github.com/vishanurag/Canvas-Editor/pull/551", - "https://github.com/vishanurag/Canvas-Editor/pull/378", - "https://github.com/vishanurag/Canvas-Editor/pull/130", - "https://github.com/vishanurag/Canvas-Editor/pull/39", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/166", - "https://github.com/dhairyagothi/StationGuide/pull/425", - "https://github.com/dhairyagothi/StationGuide/pull/89", - "https://github.com/dohinaf/basic-icecream-website/pull/573", - "https://github.com/dohinaf/basic-icecream-website/pull/321", - "https://github.com/Devamani11D/salt-app-kickstart/pull/65", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/142", - "https://github.com/GSSoC24/Postman-Challenge/pull/1898" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-14", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152962449?u=5d691e6516ebb80cacc6dc77fefcac2fd2ed6cec&v=4", - "login": "Sudhanshu248", - "url": "https://github.com/Sudhanshu248", - "score": 1055, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/529", - "https://github.com/ankit071105/Ticket-Booking/pull/527", - "https://github.com/ankit071105/Ticket-Booking/pull/471", - "https://github.com/anuragverma108/SwapReads/pull/3518", - "https://github.com/anuragverma108/SwapReads/pull/3439", - "https://github.com/ayush-that/FinVeda/pull/1676", - "https://github.com/ayush-that/FinVeda/pull/1643", - "https://github.com/ayush-that/FinVeda/pull/1621", - "https://github.com/ayush-that/FinVeda/pull/1434", - "https://github.com/ayush-that/FinVeda/pull/1407", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/824", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/797", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/778", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/544", - "https://github.com/Harshdev098/Research-Nexas/pull/276", - "https://github.com/Harshdev098/Research-Nexas/pull/269", - "https://github.com/Harshdev098/Research-Nexas/pull/264", - "https://github.com/Harshdev098/Research-Nexas/pull/260", - "https://github.com/Harshdev098/Research-Nexas/pull/246", - "https://github.com/Harshdev098/Research-Nexas/pull/212", - "https://github.com/Harshdev098/Research-Nexas/pull/204", - "https://github.com/PriyaGhosal/BuddyTrail/pull/810", - "https://github.com/PriyaGhosal/BuddyTrail/pull/756", - "https://github.com/PriyaGhosal/BuddyTrail/pull/716", - "https://github.com/PriyaGhosal/BuddyTrail/pull/642", - "https://github.com/PriyaGhosal/BuddyTrail/pull/618", - "https://github.com/SurajPratap10/Imagine_AI/pull/1284", - "https://github.com/GSSoC24/Postman-Challenge/pull/2881" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91523494?u=6400c7db1f1b7bff8940d5c88c97009a0b123122&v=4", - "login": "Bhum-ika", - "url": "https://github.com/Bhum-ika", - "score": 1050, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/240", - "https://github.com/ajay-dhangar/algo/pull/1378", - "https://github.com/ajay-dhangar/algo/pull/910", - "https://github.com/ajay-dhangar/algo/pull/36", - "https://github.com/ajay-dhangar/algo/pull/29", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/123", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/53", - "https://github.com/BhattAnsh/Quiz-Quest/pull/116", - "https://github.com/BhattAnsh/Quiz-Quest/pull/111", - "https://github.com/BhattAnsh/Quiz-Quest/pull/105", - "https://github.com/BhattAnsh/Quiz-Quest/pull/68", - "https://github.com/BhattAnsh/Quiz-Quest/pull/37", - "https://github.com/codeaashu/DevDisplay/pull/470", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/999", - "https://github.com/ayush-that/FinVeda/pull/1477", - "https://github.com/mdazfar2/Ezyshop/pull/980", - "https://github.com/mdazfar2/Ezyshop/pull/731", - "https://github.com/mdazfar2/Ezyshop/pull/621", - "https://github.com/mdazfar2/Ezyshop/pull/561", - "https://github.com/dhairyagothi/StationGuide/pull/414", - "https://github.com/dhairyagothi/StationGuide/pull/411", - "https://github.com/dhairyagothi/StationGuide/pull/339", - "https://github.com/dhairyagothi/StationGuide/pull/337", - "https://github.com/dhairyagothi/StationGuide/pull/269", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/839", - "https://github.com/himeshparashar/Social-Morph/pull/133", - "https://github.com/Open-Code-Crafters/FitFlex/pull/323", - "https://github.com/Luson045/medi-connect/pull/439", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/264", - "https://github.com/MitulSonagara/truth-tunnel/pull/218", - "https://github.com/MitulSonagara/truth-tunnel/pull/167", - "https://github.com/TherkuTech/tturl/pull/87", - "https://github.com/PriyaGhosal/BuddyTrail/pull/255", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/246", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/242", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/155", - "https://github.com/Ratnesh-Team/Rehabify/pull/101", - "https://github.com/recodehive/awesome-github-profiles/pull/861", - "https://github.com/SaranshBangar/Daneizo/pull/153", - "https://github.com/SaranshBangar/Daneizo/pull/75", - "https://github.com/Trisha-tech/OnlineBookSales/pull/587", - "https://github.com/VigneshDevHub/CampX/pull/238", - "https://github.com/Vin205/Enyanjyoti/pull/162", - "https://github.com/notsoocool/codecache/pull/129", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/357" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 12 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183379031?u=c3c843a06ccd3732be20b2dc5b645fb659499d0b&v=4", - "login": "amanver45", - "url": "https://github.com/amanver45", - "score": 1045, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/301", - "https://github.com/DeadmanAbir/AgentGenesis/pull/100", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/188", - "https://github.com/codeaashu/DevDisplay/pull/365", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/951", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/928", - "https://github.com/AlgoGenesis/C/pull/1388", - "https://github.com/AlgoGenesis/C/pull/936", - "https://github.com/iamrahulmahato/master-web-development/pull/955", - "https://github.com/iamrahulmahato/master-web-development/pull/902", - "https://github.com/iamrahulmahato/master-web-development/pull/834", - "https://github.com/iamrahulmahato/master-web-development/pull/751", - "https://github.com/iamrahulmahato/master-web-development/pull/749", - "https://github.com/iamrahulmahato/master-web-development/pull/736", - "https://github.com/iamrahulmahato/master-web-development/pull/692", - "https://github.com/iamrahulmahato/master-web-development/pull/589", - "https://github.com/iamrahulmahato/master-web-development/pull/555", - "https://github.com/iamrahulmahato/master-web-development/pull/502", - "https://github.com/iamrahulmahato/master-web-development/pull/493", - "https://github.com/iamrahulmahato/master-web-development/pull/426", - "https://github.com/iamrahulmahato/master-web-development/pull/359", - "https://github.com/iamrahulmahato/master-web-development/pull/292", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/544", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/419", - "https://github.com/SurajPratap10/Imagine_AI/pull/1308", - "https://github.com/swarooppatilx/scruter/pull/213", - "https://github.com/multiverseweb/Dataverse/pull/250", - "https://github.com/4darsh-Dev/DecenTrade/pull/119", - "https://github.com/UTSAVS26/PyVerse/pull/590", - "https://github.com/GSSoC24/Postman-Challenge/pull/1987" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116058046?u=c8d9bb01e8b8b24824fccd40223c6e83fe6ebae8&v=4", - "login": "kavya410004", - "url": "https://github.com/kavya410004", - "score": 1045, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/842", - "https://github.com/mdazfar2/Ezyshop/pull/1029", - "https://github.com/mdazfar2/Ezyshop/pull/975", - "https://github.com/mdazfar2/Ezyshop/pull/792", - "https://github.com/mdazfar2/Ezyshop/pull/763", - "https://github.com/mdazfar2/Ezyshop/pull/737", - "https://github.com/mdazfar2/Ezyshop/pull/599", - "https://github.com/mdazfar2/Ezyshop/pull/556", - "https://github.com/mdazfar2/Ezyshop/pull/536", - "https://github.com/mdazfar2/Ezyshop/pull/500", - "https://github.com/mdazfar2/Ezyshop/pull/392", - "https://github.com/mdazfar2/Ezyshop/pull/371", - "https://github.com/mdazfar2/Ezyshop/pull/280", - "https://github.com/mdazfar2/Ezyshop/pull/236", - "https://github.com/mdazfar2/Ezyshop/pull/190", - "https://github.com/mdazfar2/Ezyshop/pull/167", - "https://github.com/GarimaSingh0109/WasteManagment/pull/217", - "https://github.com/GSSoC24/Postman-Challenge/pull/2041" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-23", - "2024-10-26", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115482884?v=4", - "login": "saras-69", - "url": "https://github.com/saras-69", - "score": 1040, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/250", - "https://github.com/aditya-bhaumik/Pathsphere/pull/574", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/66", - "https://github.com/anuj123upadhyay/MegaBlog/pull/157", - "https://github.com/anuj123upadhyay/MegaBlog/pull/114", - "https://github.com/ayush-that/FinVeda/pull/2229", - "https://github.com/dhairyagothi/StationGuide/pull/395", - "https://github.com/Bitbox-Connect/Bitbox/pull/205", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/648", - "https://github.com/Anjaliavv51/Retro/pull/596", - "https://github.com/param-code/counter-app/pull/248", - "https://github.com/param-code/counter-app/pull/247", - "https://github.com/iamrahulmahato/master-web-development/pull/302", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/234", - "https://github.com/samyakmaitre/eventmint/pull/286", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/232", - "https://github.com/SurajPratap10/Imagine_AI/pull/1254", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/41", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1071", - "https://github.com/recodehive/Opensource-practice/pull/179", - "https://github.com/GSSoC24/Postman-Challenge/pull/2183" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-24", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98830887?u=48a1bf226313213cc0ee4c92e42345577f62bc64&v=4", - "login": "trinetra110", - "url": "https://github.com/trinetra110", - "score": 1040, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/343", - "https://github.com/Harshdev098/Research-Nexas/pull/342", - "https://github.com/Harshdev098/Research-Nexas/pull/303", - "https://github.com/Harshdev098/Research-Nexas/pull/295", - "https://github.com/Harshdev098/Research-Nexas/pull/282", - "https://github.com/Harshdev098/Research-Nexas/pull/277", - "https://github.com/Harshdev098/Research-Nexas/pull/273", - "https://github.com/Harshdev098/Research-Nexas/pull/223", - "https://github.com/Harshdev098/Research-Nexas/pull/221", - "https://github.com/Harshdev098/Research-Nexas/pull/197", - "https://github.com/Harshdev098/Research-Nexas/pull/192", - "https://github.com/Harshdev098/Research-Nexas/pull/186", - "https://github.com/Harshdev098/Research-Nexas/pull/182", - "https://github.com/Harshdev098/Research-Nexas/pull/149", - "https://github.com/Harshdev098/Research-Nexas/pull/141", - "https://github.com/GSSoC24/Postman-Challenge/pull/2101" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175794869?u=f6a43bd380dad6db4fb3e252245762872cb0504a&v=4", - "login": "Devanshu1603", - "url": "https://github.com/Devanshu1603", - "score": 1035, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/385", - "https://github.com/aditya-bhaumik/Pathsphere/pull/307", - "https://github.com/aditya-bhaumik/Pathsphere/pull/198", - "https://github.com/aditya-bhaumik/Pathsphere/pull/181", - "https://github.com/anuragverma108/SwapReads/pull/3210", - "https://github.com/anuragverma108/SwapReads/pull/3095", - "https://github.com/anuragverma108/SwapReads/pull/3093", - "https://github.com/anuragverma108/SwapReads/pull/3069", - "https://github.com/ayush-that/FinVeda/pull/2082", - "https://github.com/ayush-that/FinVeda/pull/1605", - "https://github.com/ayush-that/FinVeda/pull/1413", - "https://github.com/ayush-that/FinVeda/pull/1323", - "https://github.com/ayush-that/FinVeda/pull/1304", - "https://github.com/ayush-that/FinVeda/pull/1230", - "https://github.com/ayush-that/FinVeda/pull/1041", - "https://github.com/ayush-that/FinVeda/pull/1030", - "https://github.com/dhairyagothi/StationGuide/pull/264", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/206", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/182", - "https://github.com/Anjaliavv51/Retro/pull/597", - "https://github.com/soham0005/ElectroKart/pull/130", - "https://github.com/multiverseweb/Dataverse/pull/146", - "https://github.com/multiverseweb/Dataverse/pull/104", - "https://github.com/tushargupta1504/Medical-Website/pull/286", - "https://github.com/Vin205/Enyanjyoti/pull/285", - "https://github.com/Vin205/Enyanjyoti/pull/94", - "https://github.com/Vin205/Enyanjyoti/pull/90", - "https://github.com/Vin205/Enyanjyoti/pull/81", - "https://github.com/Vin205/Enyanjyoti/pull/78", - "https://github.com/Vin205/Enyanjyoti/pull/75", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/858", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/856", - "https://github.com/GSSoC24/Postman-Challenge/pull/1852" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-22", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109235675?u=ee68ef9539c9049fae824047c2c16b347519fb31&v=4", - "login": "AbhijitMotekar99", - "url": "https://github.com/AbhijitMotekar99", - "score": 1035, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1318", - "https://github.com/ajay-dhangar/algo/pull/1280", - "https://github.com/ajay-dhangar/algo/pull/132", - "https://github.com/ANSHIKA-26/WordWise/pull/903", - "https://github.com/ANSHIKA-26/WordWise/pull/695", - "https://github.com/ANSHIKA-26/WordWise/pull/292", - "https://github.com/ANSHIKA-26/WordWise/pull/225", - "https://github.com/ANSHIKA-26/WordWise/pull/119", - "https://github.com/ANSHIKA-26/WordWise/pull/90", - "https://github.com/Open-Code-Crafters/FitFlex/pull/68", - "https://github.com/Open-Code-Crafters/FitFlex/pull/51", - "https://github.com/Luson045/medi-connect/pull/552", - "https://github.com/Luson045/medi-connect/pull/230", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/419", - "https://github.com/Manishkr1007/WordWeaver/pull/27", - "https://github.com/iamrahulmahato/master-web-development/pull/920", - "https://github.com/iamrahulmahato/master-web-development/pull/865", - "https://github.com/iamrahulmahato/master-web-development/pull/715", - "https://github.com/iamrahulmahato/master-web-development/pull/638", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/117", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/167", - "https://github.com/Vin205/Enyanjyoti/pull/370", - "https://github.com/UTSAVS26/PyVerse/pull/876", - "https://github.com/UTSAVS26/PyVerse/pull/688", - "https://github.com/UTSAVS26/PyVerse/pull/155", - "https://github.com/GSSoC24/Postman-Challenge/pull/3058" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-13", - "2024-10-17", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177048363?v=4", - "login": "Kajalmehta29", - "url": "https://github.com/Kajalmehta29", - "score": 1010, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1062", - "https://github.com/aditya-bhaumik/Pathsphere/pull/771", - "https://github.com/aditya-bhaumik/Pathsphere/pull/655", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/308", - "https://github.com/ANSHIKA-26/WordWise/pull/1215", - "https://github.com/anuragverma108/SwapReads/pull/4249", - "https://github.com/anuragverma108/SwapReads/pull/4247", - "https://github.com/anuragverma108/SwapReads/pull/4241", - "https://github.com/anuragverma108/SwapReads/pull/4149", - "https://github.com/anuragverma108/SwapReads/pull/4129", - "https://github.com/anuragverma108/SwapReads/pull/4055", - "https://github.com/anuragverma108/SwapReads/pull/3322", - "https://github.com/anuragverma108/SwapReads/pull/3215", - "https://github.com/vishanurag/Canvas-Editor/pull/824", - "https://github.com/vishanurag/Canvas-Editor/pull/756", - "https://github.com/vishanurag/Canvas-Editor/pull/446", - "https://github.com/ayush-that/FinVeda/pull/1826", - "https://github.com/ayush-that/FinVeda/pull/1823", - "https://github.com/mdazfar2/Ezyshop/pull/550", - "https://github.com/dhairyagothi/StationGuide/pull/409", - "https://github.com/dhairyagothi/StationGuide/pull/319", - "https://github.com/dhairyagothi/StationGuide/pull/160", - "https://github.com/dhairyagothi/StationGuide/pull/118", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/686", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/530", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/482", - "https://github.com/Anjaliavv51/Retro/pull/488", - "https://github.com/PriyaGhosal/BuddyTrail/pull/613", - "https://github.com/PriyaGhosal/BuddyTrail/pull/418", - "https://github.com/iamrahulmahato/master-web-development/pull/1184", - "https://github.com/iamrahulmahato/master-web-development/pull/1067", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/498", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/440", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/429", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/180", - "https://github.com/GSSoC24/Postman-Challenge/pull/2020" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151981970?u=19a8436d01c6c13af3c6ad558fd9a679f1f4a75d&v=4", - "login": "amitb0ra", - "url": "https://github.com/amitb0ra", - "score": 995, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/956", - "https://github.com/Bitbox-Connect/Bitbox/pull/275", - "https://github.com/Bitbox-Connect/Bitbox/pull/183", - "https://github.com/Bitbox-Connect/Bitbox/pull/182", - "https://github.com/himeshparashar/Social-Morph/pull/93", - "https://github.com/iamrahulmahato/master-web-development/pull/1776", - "https://github.com/rahulsainlll/git-trace/pull/132", - "https://github.com/rahulsainlll/git-trace/pull/131", - "https://github.com/rahulsainlll/git-trace/pull/130", - "https://github.com/Rakshit-gen/Slanine/pull/123", - "https://github.com/Rakshit-gen/Slanine/pull/122", - "https://github.com/Rakshit-gen/Slanine/pull/121", - "https://github.com/Rakshit-gen/Slanine/pull/120", - "https://github.com/Rakshit-gen/Slanine/pull/119", - "https://github.com/TenzDelek/DearDiary/pull/130", - "https://github.com/TenzDelek/DearDiary/pull/129", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/135", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/288", - "https://github.com/vanshchauhan21/CryptoTracker/pull/112", - "https://github.com/vanshchauhan21/CryptoTracker/pull/94", - "https://github.com/GSSoC24/Postman-Challenge/pull/1843" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150132045?u=6702edfa5b8aa30c4ead412609489934bbbefc1e&v=4", - "login": "23wh1a0513", - "url": "https://github.com/23wh1a0513", - "score": 990, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/464", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/214", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/210", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/209", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/176", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/174", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/161", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/132", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/123", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/122", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/97", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/73", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/400", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/351", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/340", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/291", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/280", - "https://github.com/GSSoC24/Postman-Challenge/pull/2465" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-25", - "2024-10-26" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117223377?u=48fd9058c6f3a34c664852e186b749474685155f&v=4", - "login": "rishabh7923", - "url": "https://github.com/rishabh7923", - "score": 985, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/51", - "https://github.com/jinx-vi-0/DDoL/pull/50", - "https://github.com/jinx-vi-0/DDoL/pull/45", - "https://github.com/jinx-vi-0/DDoL/pull/44", - "https://github.com/jinx-vi-0/DDoL/pull/40", - "https://github.com/jinx-vi-0/BlogLog/pull/113", - "https://github.com/jinx-vi-0/BlogLog/pull/93", - "https://github.com/jinx-vi-0/BlogLog/pull/68", - "https://github.com/andoriyaprashant/OpSo/pull/397", - "https://github.com/andoriyaprashant/OpSo/pull/396", - "https://github.com/andoriyaprashant/OpSo/pull/395", - "https://github.com/andoriyaprashant/OpSo/pull/394", - "https://github.com/andoriyaprashant/OpSo/pull/386", - "https://github.com/andoriyaprashant/OpSo/pull/382", - "https://github.com/andoriyaprashant/OpSo/pull/370", - "https://github.com/andoriyaprashant/OpSo/pull/367", - "https://github.com/swarooppatilx/scruter/pull/294", - "https://github.com/swarooppatilx/scruter/pull/201", - "https://github.com/GSSoC24/Postman-Challenge/pull/1857" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-30", - "2024-10-31" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126042080?u=7cabf92f19272d5cd6c5042a4b156e5002596b15&v=4", - "login": "sadath2001", - "url": "https://github.com/sadath2001", - "score": 980, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/344", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/341", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/313", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/275", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/274", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/273", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/187", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/185", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/165", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/164", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/148", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/147", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/133", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/131", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/130", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/129", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/109", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/108", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/65", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/42", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/30", - "https://github.com/GSSoC24/Postman-Challenge/pull/2247" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-19", - "2024-10-22", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131871626?u=fb2684906ea2d7de5adc8c025fb80d734eac647c&v=4", - "login": "ishivansmishra", - "url": "https://github.com/ishivansmishra", - "score": 975, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/810", - "https://github.com/vishanurag/Canvas-Editor/pull/807", - "https://github.com/ayush-that/FinVeda/pull/2425", - "https://github.com/ayush-that/FinVeda/pull/2303", - "https://github.com/ayush-that/FinVeda/pull/2139", - "https://github.com/ayush-that/FinVeda/pull/1908", - "https://github.com/ayush-that/FinVeda/pull/1856", - "https://github.com/ayush-that/FinVeda/pull/1853", - "https://github.com/ayush-that/FinVeda/pull/1816", - "https://github.com/ayush-that/FinVeda/pull/1794", - "https://github.com/ayush-that/FinVeda/pull/1779", - "https://github.com/ayush-that/FinVeda/pull/1759", - "https://github.com/ayush-that/FinVeda/pull/1718", - "https://github.com/ayush-that/FinVeda/pull/1591", - "https://github.com/ayush-that/FinVeda/pull/1512", - "https://github.com/ayush-that/FinVeda/pull/1409", - "https://github.com/ayush-that/FinVeda/pull/1312", - "https://github.com/ayush-that/FinVeda/pull/1309", - "https://github.com/ayush-that/FinVeda/pull/1267", - "https://github.com/GSSoC24/Postman-Challenge/pull/2239" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114092138?u=519650b312219ac6af9002c5ca1e797e40a74f2d&v=4", - "login": "Antima2004", - "url": "https://github.com/Antima2004", - "score": 970, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/672", - "https://github.com/ankit071105/Ticket-Booking/pull/445", - "https://github.com/ankit071105/Ticket-Booking/pull/444", - "https://github.com/ankit071105/Ticket-Booking/pull/393", - "https://github.com/ANSHIKA-26/WordWise/pull/217", - "https://github.com/anuragverma108/SwapReads/pull/4394", - "https://github.com/anuragverma108/SwapReads/pull/4377", - "https://github.com/anuragverma108/SwapReads/pull/4334", - "https://github.com/anuragverma108/SwapReads/pull/4266", - "https://github.com/anuragverma108/SwapReads/pull/4251", - "https://github.com/anuragverma108/SwapReads/pull/4210", - "https://github.com/anuragverma108/SwapReads/pull/4209", - "https://github.com/anuragverma108/SwapReads/pull/4183", - "https://github.com/anuragverma108/SwapReads/pull/4177", - "https://github.com/anuragverma108/SwapReads/pull/4058", - "https://github.com/ayush-that/FinVeda/pull/1143", - "https://github.com/ayush-that/FinVeda/pull/1048", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/387", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/320", - "https://github.com/PriyaGhosal/BuddyTrail/pull/683", - "https://github.com/PriyaGhosal/BuddyTrail/pull/257", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/220", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/150", - "https://github.com/GSSoC24/Postman-Challenge/pull/2425" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170846702?v=4", - "login": "sayanp607", - "url": "https://github.com/sayanp607", - "score": 965, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/318", - "https://github.com/ankit071105/Ticket-Booking/pull/807", - "https://github.com/ankit071105/Ticket-Booking/pull/681", - "https://github.com/ankit071105/Ticket-Booking/pull/454", - "https://github.com/ANSHIKA-26/WordWise/pull/1379", - "https://github.com/ANSHIKA-26/WordWise/pull/1377", - "https://github.com/anuragverma108/SwapReads/pull/3906", - "https://github.com/dohinaf/basic-icecream-website/pull/448", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/153", - "https://github.com/mansiruhil13/Bobble-AI/pull/1060", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/277", - "https://github.com/iamrahulmahato/master-web-development/pull/1690", - "https://github.com/iamrahulmahato/master-web-development/pull/1609", - "https://github.com/iamrahulmahato/master-web-development/pull/1518", - "https://github.com/multiverseweb/Dataverse/pull/234", - "https://github.com/Trisha-tech/OnlineBookSales/pull/582", - "https://github.com/vansh-codes/ChaosWeb/pull/116", - "https://github.com/vansh-codes/ChaosWeb/pull/77", - "https://github.com/Vin205/Enyanjyoti/pull/144", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/624", - "https://github.com/vanshchauhan21/CryptoTracker/pull/81", - "https://github.com/vanshchauhan21/CryptoTracker/pull/80", - "https://github.com/vanshchauhan21/CryptoTracker/pull/79", - "https://github.com/vanshchauhan21/CryptoTracker/pull/75", - "https://github.com/GSSoC24/Postman-Challenge/pull/2381" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-08", - "2024-10-10", - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179379879?u=616bb23ef3b65e86edc1e39ba3c30454d201e675&v=4", - "login": "Peart-Guy", - "url": "https://github.com/Peart-Guy", - "score": 965, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/520", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/358", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/332", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/300", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/183", - "https://github.com/dohinaf/basic-icecream-website/pull/521", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/468", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/701", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1199", - "https://github.com/PriyaGhosal/BuddyTrail/pull/422", - "https://github.com/recodehive/awesome-github-profiles/pull/1082", - "https://github.com/recodehive/awesome-github-profiles/pull/945", - "https://github.com/recodehive/machine-learning-repos/pull/1596", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/937", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/934", - "https://github.com/yashasvini121/predictive-calc/pull/147", - "https://github.com/UTSAVS26/PyVerse/pull/858", - "https://github.com/UTSAVS26/PyVerse/pull/205", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1213", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1201", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1179", - "https://github.com/GSSoC24/Postman-Challenge/pull/2184" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-09", - "2024-10-10", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118290407?u=00860cfda2c394c4ba672120381d8541654025a6&v=4", - "login": "Hamza1821", - "url": "https://github.com/Hamza1821", - "score": 960, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/191", - "https://github.com/ajay-dhangar/algo/pull/381", - "https://github.com/ajay-dhangar/algo/pull/351", - "https://github.com/ajay-dhangar/algo/pull/341", - "https://github.com/ajay-dhangar/algo/pull/120", - "https://github.com/ankit071105/Ticket-Booking/pull/64", - "https://github.com/anuj123upadhyay/MegaBlog/pull/40", - "https://github.com/anuragverma108/SwapReads/pull/3576", - "https://github.com/ayush-that/FinVeda/pull/1707", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/328", - "https://github.com/Harshdev098/Research-Nexas/pull/214", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/143", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/135", - "https://github.com/Open-Code-Crafters/FitFlex/pull/264", - "https://github.com/iamrahulmahato/master-web-development/pull/772", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/367", - "https://github.com/soham0005/ElectroKart/pull/187", - "https://github.com/SurajPratap10/Imagine_AI/pull/1177", - "https://github.com/swarooppatilx/scruter/pull/237", - "https://github.com/GSSoC24/Postman-Challenge/pull/2699" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98730339?v=4", - "login": "PavanTeja2005", - "url": "https://github.com/PavanTeja2005", - "score": 960, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/465", - "https://github.com/ajay-dhangar/algo/pull/464", - "https://github.com/ajay-dhangar/algo/pull/368", - "https://github.com/ajay-dhangar/algo/pull/367", - "https://github.com/ajay-dhangar/algo/pull/332", - "https://github.com/ajay-dhangar/algo/pull/232", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/289", - "https://github.com/vishanurag/Canvas-Editor/pull/366", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/217", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/216", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/196", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/194", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/187", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/186", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/185", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/139", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/136", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/135", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/129", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/104", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/103", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/100", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/98", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/96", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/95", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/78", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/76", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/67", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/61", - "https://github.com/ayush-that/FinVeda/pull/1063", - "https://github.com/cro2003/rgpvApi/pull/12", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/451", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/298", - "https://github.com/mansiruhil13/Bobble-AI/pull/511", - "https://github.com/UTSAVS26/PySnippets/pull/73", - "https://github.com/UTSAVS26/PySnippets/pull/71", - "https://github.com/UTSAVS26/PySnippets/pull/64" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13" - ], - "streak": 8 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153437781?v=4", - "login": "rebornstar1", - "url": "https://github.com/rebornstar1", - "score": 960, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/55", - "https://github.com/Luson045/medi-connect/pull/343", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/456", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/451", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/446", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/438", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/437", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/409", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/384", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/381", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/380", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/376", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/374", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/348", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/339", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/334", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/312", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/286", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/274", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/259", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/256", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/239", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/235", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/227", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/219", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/178", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/173", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/169", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/135", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/116", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/84" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13" - ], - "streak": 8 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132702983?u=94b4a37ec9ffc451dc6371fa3b8b82b873577e1f&v=4", - "login": "NK-Works", - "url": "https://github.com/NK-Works", - "score": 955, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/171", - "https://github.com/ANSHIKA-26/WordWise/pull/1075", - "https://github.com/ANSHIKA-26/WordWise/pull/1069", - "https://github.com/ANSHIKA-26/WordWise/pull/935", - "https://github.com/ANSHIKA-26/WordWise/pull/805", - "https://github.com/ANSHIKA-26/WordWise/pull/633", - "https://github.com/ANSHIKA-26/WordWise/pull/619", - "https://github.com/ANSHIKA-26/WordWise/pull/330", - "https://github.com/divyansh-2005/FinNews/pull/174", - "https://github.com/divyansh-2005/FinNews/pull/71", - "https://github.com/Kritika30032002/Top_Secrets/pull/194", - "https://github.com/Manishkr1007/WordWeaver/pull/101", - "https://github.com/param-code/counter-app/pull/26", - "https://github.com/iamrahulmahato/master-web-development/pull/1220", - "https://github.com/rahulsainlll/git-trace/pull/129", - "https://github.com/swarooppatilx/scruter/pull/65", - "https://github.com/Trisha-tech/OnlineBookSales/pull/396", - "https://github.com/Trisha-tech/OnlineBookSales/pull/363", - "https://github.com/Trisha-tech/OnlineBookSales/pull/296", - "https://github.com/Trisha-tech/OnlineBookSales/pull/291", - "https://github.com/Vin205/Enyanjyoti/pull/467", - "https://github.com/Scribbie-Notes/notes-app/pull/156", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/107", - "https://github.com/UTSAVS26/PyVerse/pull/764", - "https://github.com/UTSAVS26/PyVerse/pull/657", - "https://github.com/UTSAVS26/PyVerse/pull/574", - "https://github.com/GSSoC24/Postman-Challenge/pull/2892" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-21", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170406999?u=5d45e6bcd9987d7d3f8943d9175b3f7b2a7435e6&v=4", - "login": "ramana2074", - "url": "https://github.com/ramana2074", - "score": 950, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/270", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/219", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/177", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/133", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/102", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/88", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/67", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/37", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/15", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/522", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/521", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/466", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/446", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/302", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/289", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/282", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/244", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/192", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/190", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/94", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/87", - "https://github.com/AlgoGenesis/C/pull/319", - "https://github.com/AlgoGenesis/C/pull/39", - "https://github.com/iamrahulmahato/master-web-development/pull/420", - "https://github.com/recodehive/machine-learning-repos/pull/1228", - "https://github.com/UTSAVS26/PyVerse/pull/601", - "https://github.com/UTSAVS26/PyVerse/pull/329", - "https://github.com/UTSAVS26/PyVerse/pull/272", - "https://github.com/GSSoC24/Postman-Challenge/pull/2547" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141031443?u=ec977a46b9a62214dbcc43265fc83f1431e6eb02&v=4", - "login": "saumyayadav25", - "url": "https://github.com/saumyayadav25", - "score": 940, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/633", - "https://github.com/ANSHIKA-26/WordWise/pull/1435", - "https://github.com/anuragverma108/SwapReads/pull/3993", - "https://github.com/anuragverma108/SwapReads/pull/3992", - "https://github.com/anuragverma108/SwapReads/pull/3702", - "https://github.com/vishanurag/Canvas-Editor/pull/1104", - "https://github.com/vishanurag/Canvas-Editor/pull/1068", - "https://github.com/vishanurag/Canvas-Editor/pull/1015", - "https://github.com/vishanurag/Canvas-Editor/pull/769", - "https://github.com/vishanurag/Canvas-Editor/pull/747", - "https://github.com/vishanurag/Canvas-Editor/pull/661", - "https://github.com/vishanurag/Canvas-Editor/pull/611", - "https://github.com/vishanurag/Canvas-Editor/pull/550", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/920", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/742", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/629", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/625", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/352", - "https://github.com/dohinaf/basic-icecream-website/pull/542", - "https://github.com/dohinaf/basic-icecream-website/pull/491", - "https://github.com/jahnvisahni31/DesignDeck/pull/98", - "https://github.com/mansiruhil13/Bobble-AI/pull/882", - "https://github.com/mansiruhil13/Bobble-AI/pull/872", - "https://github.com/mansiruhil13/Bobble-AI/pull/699", - "https://github.com/iamrahulmahato/master-web-development/pull/2009", - "https://github.com/iamrahulmahato/master-web-development/pull/1791", - "https://github.com/recodehive/awesome-github-profiles/pull/1024", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/311", - "https://github.com/multiverseweb/Dataverse/pull/215", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/585", - "https://github.com/GSSoC24/Postman-Challenge/pull/2250" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83642826?u=d87d2481fe060abf02dd939392d4bf95571e040a&v=4", - "login": "mdfaizaanalam", - "url": "https://github.com/mdfaizaanalam", - "score": 915, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/155", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/99", - "https://github.com/anuragverma108/SwapReads/pull/4256", - "https://github.com/anuragverma108/SwapReads/pull/3704", - "https://github.com/anuragverma108/SwapReads/pull/3594", - "https://github.com/anuragverma108/SwapReads/pull/3504", - "https://github.com/anuragverma108/SwapReads/pull/3478", - "https://github.com/anuragverma108/SwapReads/pull/3474", - "https://github.com/anuragverma108/SwapReads/pull/3375", - "https://github.com/anuragverma108/SwapReads/pull/3369", - "https://github.com/anuragverma108/SwapReads/pull/3360", - "https://github.com/anuragverma108/SwapReads/pull/3321", - "https://github.com/anuragverma108/SwapReads/pull/3220", - "https://github.com/anuragverma108/SwapReads/pull/3192", - "https://github.com/anuragverma108/SwapReads/pull/3146", - "https://github.com/anuragverma108/SwapReads/pull/3144", - "https://github.com/anuragverma108/SwapReads/pull/3133", - "https://github.com/anuragverma108/SwapReads/pull/3126", - "https://github.com/ayush-that/FinVeda/pull/2489", - "https://github.com/SurajPratap10/Imagine_AI/pull/1286", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/788", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/67", - "https://github.com/GSSoC24/Postman-Challenge/pull/2344" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-25", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132455672?v=4", - "login": "Dipanita45", - "url": "https://github.com/Dipanita45", - "score": 915, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/626", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/142", - "https://github.com/ayush-that/FinVeda/pull/1078", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/340", - "https://github.com/Harshdev098/Research-Nexas/pull/98", - "https://github.com/Bitbox-Connect/Bitbox/pull/203", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/710", - "https://github.com/mansiruhil13/Bobble-AI/pull/730", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1154", - "https://github.com/AlgoGenesis/C/pull/1510", - "https://github.com/AlgoGenesis/C/pull/1509", - "https://github.com/AlgoGenesis/C/pull/1508", - "https://github.com/AlgoGenesis/C/pull/1507", - "https://github.com/AlgoGenesis/C/pull/1505", - "https://github.com/AlgoGenesis/C/pull/1504", - "https://github.com/AlgoGenesis/C/pull/1503", - "https://github.com/AlgoGenesis/C/pull/1445", - "https://github.com/AlgoGenesis/C/pull/1442", - "https://github.com/AlgoGenesis/C/pull/1375", - "https://github.com/param-code/counter-app/pull/239", - "https://github.com/andoriyaprashant/DevDocsHub/pull/95", - "https://github.com/PriyaGhosal/BuddyTrail/pull/785", - "https://github.com/iamrahulmahato/master-web-development/pull/1175", - "https://github.com/Rakshit-gen/Slanine/pull/83", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/161", - "https://github.com/Soujanya2004/wanderlust-2024/pull/185", - "https://github.com/tanishaness/SPROCTOR/pull/53", - "https://github.com/GVishnudhasan/NoDueProject/pull/84", - "https://github.com/Scribbie-Notes/notes-app/pull/268", - "https://github.com/Yashgabani845/hiring-portal/pull/216", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/66", - "https://github.com/vanshchauhan21/CryptoTracker/pull/41", - "https://github.com/GSSoC24/Postman-Challenge/pull/2632" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158207370?u=578f8bf8df35d9063ff9159ef35a5723c88acb89&v=4", - "login": "Jashwanth-rit", - "url": "https://github.com/Jashwanth-rit", - "score": 910, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/915", - "https://github.com/aditya-bhaumik/Pathsphere/pull/900", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/755", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/667", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/354", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/349", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/316", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/314", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/313", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/309", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/307", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/284", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/280", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/263", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/260", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/234", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/232", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/344", - "https://github.com/recodehive/awesome-github-profiles/pull/903", - "https://github.com/Yashgabani845/hiring-portal/pull/217", - "https://github.com/GSSoC24/Postman-Challenge/pull/2963" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138214350?u=f85acd485864e96f3dd873a006073d63a45da81f&v=4", - "login": "jainaryan04", - "url": "https://github.com/jainaryan04", - "score": 900, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/115", - "https://github.com/ajay-dhangar/algo/pull/1624", - "https://github.com/ajay-dhangar/algo/pull/1608", - "https://github.com/ajay-dhangar/algo/pull/1603", - "https://github.com/ajay-dhangar/algo/pull/1575", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/114", - "https://github.com/ankit071105/Ticket-Booking/pull/237", - "https://github.com/anuragverma108/SwapReads/pull/4238", - "https://github.com/anuragverma108/SwapReads/pull/4054", - "https://github.com/anuragverma108/SwapReads/pull/3986", - "https://github.com/anuragverma108/SwapReads/pull/3976", - "https://github.com/anuragverma108/SwapReads/pull/3957", - "https://github.com/anuragverma108/SwapReads/pull/3944", - "https://github.com/anuragverma108/SwapReads/pull/3925", - "https://github.com/anuragverma108/SwapReads/pull/3923", - "https://github.com/himeshparashar/Social-Morph/pull/98", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/355", - "https://github.com/Open-Code-Crafters/FitFlex/pull/270", - "https://github.com/MitulSonagara/truth-tunnel/pull/280", - "https://github.com/MitulSonagara/truth-tunnel/pull/212", - "https://github.com/MitulSonagara/truth-tunnel/pull/168", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1020", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/379", - "https://github.com/SaranshBangar/Daneizo/pull/61", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/97", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/15", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/302", - "https://github.com/GSSoC24/Postman-Challenge/pull/1943" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143370415?u=9a21f76e52e45f45b0f4e2f9129f323f28f6074f&v=4", - "login": "KrishChothani", - "url": "https://github.com/KrishChothani", - "score": 900, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/552", - "https://github.com/ANSHIKA-26/WordWise/pull/1440", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/368", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/367", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/354", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/299", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/183", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1813", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1746", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1732", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1728", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1690", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1635", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1633", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1617", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/70", - "https://github.com/GSSoC24/Postman-Challenge/pull/1867" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-12", - "2024-10-20", - "2024-10-22", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174509658?v=4", - "login": "djv554", - "url": "https://github.com/djv554", - "score": 900, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/493", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/471", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/438", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/387", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/371", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/292", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/276", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/241", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/227", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/163", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/87", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/64", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/32", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/29", - "https://github.com/UTSAVS26/PyVerse/pull/925", - "https://github.com/UTSAVS26/PyVerse/pull/878", - "https://github.com/UTSAVS26/PyVerse/pull/813", - "https://github.com/UTSAVS26/PyVerse/pull/742", - "https://github.com/UTSAVS26/PyVerse/pull/413", - "https://github.com/UTSAVS26/PyVerse/pull/256", - "https://github.com/UTSAVS26/PyVerse/pull/161", - "https://github.com/UTSAVS26/PyVerse/pull/100", - "https://github.com/GSSoC24/Postman-Challenge/pull/1876" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157620444?u=3d777aaae13a81f881ad55d38fab8a544dd5b90c&v=4", - "login": "Sumanth077s", - "url": "https://github.com/Sumanth077s", - "score": 895, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Puskar-Roy/create-my-api/pull/162", - "https://github.com/Puskar-Roy/create-my-api/pull/153", - "https://github.com/Puskar-Roy/create-my-api/pull/143", - "https://github.com/Puskar-Roy/create-my-api/pull/112", - "https://github.com/Puskar-Roy/create-my-api/pull/98", - "https://github.com/Puskar-Roy/create-my-api/pull/91", - "https://github.com/iamrahulmahato/master-web-development/pull/1714", - "https://github.com/iamrahulmahato/master-web-development/pull/1703", - "https://github.com/iamrahulmahato/master-web-development/pull/1701", - "https://github.com/iamrahulmahato/master-web-development/pull/1656", - "https://github.com/iamrahulmahato/master-web-development/pull/1596", - "https://github.com/iamrahulmahato/master-web-development/pull/1590", - "https://github.com/iamrahulmahato/master-web-development/pull/1588", - "https://github.com/iamrahulmahato/master-web-development/pull/1543", - "https://github.com/iamrahulmahato/master-web-development/pull/1529", - "https://github.com/iamrahulmahato/master-web-development/pull/1510", - "https://github.com/iamrahulmahato/master-web-development/pull/1496", - "https://github.com/iamrahulmahato/master-web-development/pull/1493", - "https://github.com/iamrahulmahato/master-web-development/pull/1452", - "https://github.com/iamrahulmahato/master-web-development/pull/1446", - "https://github.com/iamrahulmahato/master-web-development/pull/1381", - "https://github.com/iamrahulmahato/master-web-development/pull/1377", - "https://github.com/iamrahulmahato/master-web-development/pull/1375", - "https://github.com/iamrahulmahato/master-web-development/pull/1344", - "https://github.com/iamrahulmahato/master-web-development/pull/1266", - "https://github.com/VigneshDevHub/CampX/pull/325", - "https://github.com/VigneshDevHub/CampX/pull/324", - "https://github.com/VigneshDevHub/CampX/pull/322", - "https://github.com/VigneshDevHub/CampX/pull/297", - "https://github.com/VigneshDevHub/CampX/pull/291", - "https://github.com/VigneshDevHub/CampX/pull/282", - "https://github.com/VigneshDevHub/CampX/pull/273", - "https://github.com/VigneshDevHub/CampX/pull/221", - "https://github.com/GSSoC24/Postman-Challenge/pull/1908" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177409005?u=6c1f13bad029eaf1348d057f00ebdf26fc7f5dc8&v=4", - "login": "Anandha-Vihari", - "url": "https://github.com/Anandha-Vihari", - "score": 890, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/109", - "https://github.com/ajay-dhangar/algo/pull/168", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/445", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/170", - "https://github.com/mansiruhil13/Bobble-AI/pull/709", - "https://github.com/mansiruhil13/Bobble-AI/pull/684", - "https://github.com/mansiruhil13/Bobble-AI/pull/676", - "https://github.com/mansiruhil13/Bobble-AI/pull/651", - "https://github.com/mansiruhil13/Bobble-AI/pull/310", - "https://github.com/mansiruhil13/Bobble-AI/pull/201", - "https://github.com/mansiruhil13/Bobble-AI/pull/183", - "https://github.com/mansiruhil13/Bobble-AI/pull/174", - "https://github.com/mansiruhil13/Bobble-AI/pull/159", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/363", - "https://github.com/GSSoC24/Postman-Challenge/pull/1823" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112009486?u=1e11322e7082ceab4e48da1b50eef114f7cc5f8b&v=4", - "login": "swathivemula7", - "url": "https://github.com/swathivemula7", - "score": 890, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1399", - "https://github.com/ANSHIKA-26/WordWise/pull/1153", - "https://github.com/ANSHIKA-26/WordWise/pull/1116", - "https://github.com/vishanurag/Canvas-Editor/pull/856", - "https://github.com/vishanurag/Canvas-Editor/pull/853", - "https://github.com/vishanurag/Canvas-Editor/pull/789", - "https://github.com/vishanurag/Canvas-Editor/pull/763", - "https://github.com/vishanurag/Canvas-Editor/pull/734", - "https://github.com/vishanurag/Canvas-Editor/pull/520", - "https://github.com/ayush-that/FinVeda/pull/2275", - "https://github.com/ayush-that/FinVeda/pull/2272", - "https://github.com/Open-Code-Crafters/FitFlex/pull/373", - "https://github.com/Open-Code-Crafters/FitFlex/pull/365", - "https://github.com/Open-Code-Crafters/FitFlex/pull/322", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1700", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/101", - "https://github.com/07sumit1002/CabRental/pull/291", - "https://github.com/07sumit1002/CabRental/pull/285", - "https://github.com/swarooppatilx/scruter/pull/316", - "https://github.com/swarooppatilx/scruter/pull/302", - "https://github.com/GSSoC24/Postman-Challenge/pull/2103" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-13", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143922855?u=2c70300eaa3981080e234cff127ec0e05721a9c2&v=4", - "login": "REHAN-18", - "url": "https://github.com/REHAN-18", - "score": 885, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/133", - "https://github.com/aditya-bhaumik/Pathsphere/pull/1037", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/556", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/494", - "https://github.com/ankit071105/Ticket-Booking/pull/575", - "https://github.com/vishanurag/Canvas-Editor/pull/1018", - "https://github.com/Code-Social/official-website/pull/418", - "https://github.com/codeaashu/DevDisplay/pull/413", - "https://github.com/ayush-that/FinVeda/pull/2564", - "https://github.com/Open-Code-Crafters/FitFlex/pull/310", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/726", - "https://github.com/Megh2005/Med-o-Next/pull/182", - "https://github.com/c0sm0void/ReVot/pull/106", - "https://github.com/TherkuTech/tturl/pull/77", - "https://github.com/param-code/counter-app/pull/255", - "https://github.com/andoriyaprashant/DevDocsHub/pull/127", - "https://github.com/iamrahulmahato/master-web-development/pull/1944", - "https://github.com/iamrahulmahato/master-web-development/pull/1591", - "https://github.com/iamrahulmahato/master-web-development/pull/1453", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/346", - "https://github.com/gupta-ritik/ExpenseTracker/pull/100", - "https://github.com/vanshchauhan21/CryptoTracker/pull/54", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1239", - "https://github.com/GSSoC24/Postman-Challenge/pull/2218" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172098711?u=f7031f1ef8351ee800925c4d65b219a3b6137c7e&v=4", - "login": "ansiace", - "url": "https://github.com/ansiace", - "score": 885, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/942", - "https://github.com/mdazfar2/Ezyshop/pull/1044", - "https://github.com/mdazfar2/Ezyshop/pull/896", - "https://github.com/mdazfar2/Ezyshop/pull/759", - "https://github.com/mdazfar2/Ezyshop/pull/758", - "https://github.com/mdazfar2/Ezyshop/pull/725", - "https://github.com/mdazfar2/Ezyshop/pull/408", - "https://github.com/mdazfar2/Ezyshop/pull/374", - "https://github.com/mdazfar2/Ezyshop/pull/325", - "https://github.com/mdazfar2/Ezyshop/pull/309", - "https://github.com/mdazfar2/HelpOps-Hub/pull/1406", - "https://github.com/mansiruhil13/Bobble-AI/pull/1000", - "https://github.com/SurajPratap10/Imagine_AI/pull/1253", - "https://github.com/vansh-codes/ChaosWeb/pull/88", - "https://github.com/GVishnudhasan/NoDueProject/pull/94", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/674", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/664", - "https://github.com/GSSoC24/Postman-Challenge/pull/2442" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-26", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125145750?v=4", - "login": "aditya07389", - "url": "https://github.com/aditya07389", - "score": 885, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/768", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/247", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/198", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/127", - "https://github.com/ANSHIKA-26/WordWise/pull/594", - "https://github.com/ANSHIKA-26/WordWise/pull/280", - "https://github.com/vishanurag/Canvas-Editor/pull/622", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/355", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/46", - "https://github.com/dohinaf/basic-icecream-website/pull/412", - "https://github.com/andoriyaprashant/DevDocsHub/pull/104", - "https://github.com/Rakshit-gen/Slanine/pull/52", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/46", - "https://github.com/SurajPratap10/Imagine_AI/pull/1211", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/568", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/701", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/124", - "https://github.com/GSSoC24/Postman-Challenge/pull/1814" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-22", - "2024-10-26", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157223041?u=ffe46ba940760ccf2abccab0a4e4a70254275263&v=4", - "login": "shivam8112005", - "url": "https://github.com/shivam8112005", - "score": 885, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1597", - "https://github.com/ANSHIKA-26/WordWise/pull/1575", - "https://github.com/ANSHIKA-26/WordWise/pull/1568", - "https://github.com/ANSHIKA-26/WordWise/pull/1542", - "https://github.com/ANSHIKA-26/WordWise/pull/1513", - "https://github.com/ANSHIKA-26/WordWise/pull/1443", - "https://github.com/ANSHIKA-26/WordWise/pull/1401", - "https://github.com/ANSHIKA-26/WordWise/pull/1343", - "https://github.com/ANSHIKA-26/WordWise/pull/1143", - "https://github.com/ANSHIKA-26/WordWise/pull/1057", - "https://github.com/ANSHIKA-26/WordWise/pull/692", - "https://github.com/ANSHIKA-26/WordWise/pull/494", - "https://github.com/ANSHIKA-26/WordWise/pull/308", - "https://github.com/anuragverma108/SwapReads/pull/3290", - "https://github.com/anuragverma108/SwapReads/pull/3258", - "https://github.com/anuragverma108/SwapReads/pull/3130", - "https://github.com/anuragverma108/SwapReads/pull/3122", - "https://github.com/anuragverma108/SwapReads/pull/3028", - "https://github.com/anuragverma108/SwapReads/pull/2947", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/97", - "https://github.com/apu52/Travel_Website/pull/1565", - "https://github.com/GSSoC24/Postman-Challenge/pull/2657" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-16", - "2024-10-18", - "2024-10-23", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68471170?u=84c9441416213cbc7603903b95a9bd09f8600c4d&v=4", - "login": "KiranBaliga", - "url": "https://github.com/KiranBaliga", - "score": 880, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/7", - "https://github.com/jinx-vi-0/DDoL/pull/26", - "https://github.com/jinx-vi-0/BlogLog/pull/33", - "https://github.com/VesperAkshay/qr-code-generator/pull/25", - "https://github.com/VesperAkshay/qr-code-generator/pull/14", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/16", - "https://github.com/Aryainguz/picwise.co/pull/50", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/42", - "https://github.com/kabaddiPy/kabaddiPy/pull/11", - "https://github.com/dohinaf/basic-icecream-website/pull/51", - "https://github.com/dohinaf/basic-icecream-website/pull/47", - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/12", - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/10", - "https://github.com/kartikayasijaa/talk-trove/pull/17", - "https://github.com/Kritika30032002/Blog_Website/pull/180", - "https://github.com/muruga21/LoadDistrix/pull/4", - "https://github.com/muruga21/LoadDistrix/pull/2", - "https://github.com/ombhojane/explainableai/pull/17", - "https://github.com/rahulsainlll/git-trace/pull/90", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/16", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/32", - "https://github.com/samyakmaitre/eventmint/pull/75", - "https://github.com/SanchitGeez/Investra/pull/94", - "https://github.com/sk66641/AquaGuardians/pull/17", - "https://github.com/soham0005/ElectroKart/pull/31", - "https://github.com/soham0005/ElectroKart/pull/20", - "https://github.com/subhadeeproy3902/trailgo/pull/45", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/57", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/10", - "https://github.com/swarooppatilx/scruter/pull/17", - "https://github.com/TejasNasre/nexmeet/pull/42", - "https://github.com/sharmavikas4/MERN_BLOG/pull/5", - "https://github.com/sharmavikas4/MERN_BLOG/pull/4", - "https://github.com/Vimall03/Alimento/pull/10", - "https://github.com/Vin205/Enyanjyoti/pull/108", - "https://github.com/visheshrwl/Uber-like/pull/20", - "https://github.com/yagnik2411/Quiz-Genius/pull/63", - "https://github.com/Yashgabani845/hiring-portal/pull/91", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/50", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/20", - "https://github.com/UTSAVS26/PyVerse/pull/625", - "https://github.com/GSSoC24/Postman-Challenge/pull/1904" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-14", - "2024-10-16", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177618218?u=c9fda6f73168d14b19f8a62d909e3546c4e6abf8&v=4", - "login": "rutikakengal", - "url": "https://github.com/rutikakengal", - "score": 880, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/349", - "https://github.com/ANSHIKA-26/WordWise/pull/1186", - "https://github.com/vishanurag/Canvas-Editor/pull/225", - "https://github.com/dohinaf/basic-icecream-website/pull/278", - "https://github.com/dohinaf/basic-icecream-website/pull/134", - "https://github.com/dohinaf/basic-icecream-website/pull/108", - "https://github.com/GarimaSingh0109/WasteManagment/pull/370", - "https://github.com/GarimaSingh0109/WasteManagment/pull/46", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/229", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/226", - "https://github.com/mansiruhil13/Bobble-AI/pull/625", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/695", - "https://github.com/GSSoC24/Postman-Challenge/pull/1976" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-19", - "2024-10-20", - "2024-10-23", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180853305?u=cf725331dd49fc5fd6c3793e88a6cb19c108b212&v=4", - "login": "aditiverma-21", - "url": "https://github.com/aditiverma-21", - "score": 870, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/927", - "https://github.com/ANSHIKA-26/WordWise/pull/208", - "https://github.com/ANSHIKA-26/WordWise/pull/149", - "https://github.com/ANSHIKA-26/WordWise/pull/147", - "https://github.com/vishanurag/Canvas-Editor/pull/1090", - "https://github.com/Aryainguz/picwise.co/pull/88", - "https://github.com/GarimaSingh0109/WasteManagment/pull/69", - "https://github.com/GarimaSingh0109/WasteManagment/pull/32", - "https://github.com/MitulSonagara/truth-tunnel/pull/289", - "https://github.com/MitulSonagara/truth-tunnel/pull/286", - "https://github.com/AlgoGenesis/C/pull/1237", - "https://github.com/AlgoGenesis/C/pull/1143", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/308", - "https://github.com/Soujanya2004/wanderlust-2024/pull/235", - "https://github.com/UTSAVS26/PySnippets/pull/281", - "https://github.com/Vimall03/Alimento/pull/40", - "https://github.com/Vimall03/Alimento/pull/12", - "https://github.com/Vimall03/Alimento/pull/11", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/97", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/80", - "https://github.com/Scribbie-Notes/notes-app/pull/330", - "https://github.com/Scribbie-Notes/notes-app/pull/318", - "https://github.com/recodehive/Opensource-practice/pull/182", - "https://github.com/GSSoC24/Postman-Challenge/pull/1753" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-13", - "2024-10-17", - "2024-10-18", - "2024-10-22", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76246437?u=37c9c974ad8d526a377bcea7569a10f610a1f842&v=4", - "login": "Akshithsaai", - "url": "https://github.com/Akshithsaai", - "score": 865, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/245", - "https://github.com/ankit071105/Ticket-Booking/pull/848", - "https://github.com/ankit071105/Ticket-Booking/pull/774", - "https://github.com/arjunatapadkar/codeteria/pull/152", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/73", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/195", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/110", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/243", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/211", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/121", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/23", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/123", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/31", - "https://github.com/iamrahulmahato/master-web-development/pull/848", - "https://github.com/iamrahulmahato/master-web-development/pull/693", - "https://github.com/recodehive/awesome-github-profiles/pull/1054", - "https://github.com/recodehive/awesome-github-profiles/pull/1007", - "https://github.com/recodehive/awesome-github-profiles/pull/925", - "https://github.com/recodehive/awesome-github-profiles/pull/773", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/257", - "https://github.com/Yashgabani845/hiring-portal/pull/218", - "https://github.com/GSSoC24/Postman-Challenge/pull/1884" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111575125?u=f40ee6793b1645c1f3599f0c594771233eec6db6&v=4", - "login": "Subham1", - "url": "https://github.com/Subham1", - "score": 865, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/675", - "https://github.com/ankit071105/Ticket-Booking/pull/587", - "https://github.com/ankit071105/Ticket-Booking/pull/566", - "https://github.com/ankit071105/Ticket-Booking/pull/433", - "https://github.com/anuragverma108/SwapReads/pull/3998", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1578", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1562", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1558", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1457", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1360", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1154", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1015", - "https://github.com/PriyaGhosal/BuddyTrail/pull/954", - "https://github.com/iamrahulmahato/master-web-development/pull/1648", - "https://github.com/iamrahulmahato/master-web-development/pull/1645", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/167", - "https://github.com/GSSoC24/Postman-Challenge/pull/2647" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107785122?u=e24d3186cfbdb737a21853a5b000ffa75a3aa33c&v=4", - "login": "Shekhar-Raj", - "url": "https://github.com/Shekhar-Raj", - "score": 850, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/105", - "https://github.com/ANSHIKA-26/WordWise/pull/423", - "https://github.com/anuragverma108/SwapReads/pull/3164", - "https://github.com/anuragverma108/SwapReads/pull/3077", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/42", - "https://github.com/Anjaliavv51/Retro/pull/519", - "https://github.com/Anjaliavv51/Retro/pull/119", - "https://github.com/Anjaliavv51/Retro/pull/92", - "https://github.com/iamrahulmahato/master-web-development/pull/580", - "https://github.com/iamrahulmahato/master-web-development/pull/458", - "https://github.com/iamrahulmahato/master-web-development/pull/284", - "https://github.com/iamrahulmahato/master-web-development/pull/146", - "https://github.com/recodehive/machine-learning-repos/pull/1417", - "https://github.com/recodehive/machine-learning-repos/pull/1416", - "https://github.com/Yashgabani845/hiring-portal/pull/39", - "https://github.com/GSSoC24/Postman-Challenge/pull/3117" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125795769?u=104f8a041f26abbf211dc7b270363cca345d0d83&v=4", - "login": "shravya312", - "url": "https://github.com/shravya312", - "score": 845, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/346", - "https://github.com/aditya-bhaumik/Pathsphere/pull/338", - "https://github.com/aditya-bhaumik/Pathsphere/pull/252", - "https://github.com/ajay-dhangar/algo/pull/1553", - "https://github.com/ajay-dhangar/algo/pull/1325", - "https://github.com/ajay-dhangar/algo/pull/1298", - "https://github.com/ajay-dhangar/algo/pull/1297", - "https://github.com/ajay-dhangar/algo/pull/1265", - "https://github.com/ajay-dhangar/algo/pull/875", - "https://github.com/ajay-dhangar/algo/pull/734", - "https://github.com/ajay-dhangar/algo/pull/586", - "https://github.com/ajay-dhangar/algo/pull/474", - "https://github.com/ajay-dhangar/algo/pull/443", - "https://github.com/ajay-dhangar/algo/pull/424", - "https://github.com/ajay-dhangar/algo/pull/416", - "https://github.com/ajay-dhangar/algo/pull/338", - "https://github.com/ajay-dhangar/algo/pull/191", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/38", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/11", - "https://github.com/ombhojane/explainableai/pull/112", - "https://github.com/ombhojane/explainableai/pull/77", - "https://github.com/ombhojane/explainableai/pull/67", - "https://github.com/recodehive/machine-learning-repos/pull/1245", - "https://github.com/recodehive/machine-learning-repos/pull/1239", - "https://github.com/Shreyaa173/Code-Book/pull/60", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/146", - "https://github.com/GSSoC24/Postman-Challenge/pull/2436" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-17", - "2024-10-20", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117927011?u=8715fd93f151e5078dfd1a479bae2900a10dcbbe&v=4", - "login": "jaidh01", - "url": "https://github.com/jaidh01", - "score": 845, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/59", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/264", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/204", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/149", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/92", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/23", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/41", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/21", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/14", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/211", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/173", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/165", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/136", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/135", - "https://github.com/Jiggy9/JCT/pull/40", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/539", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/493", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/11", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1104", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/126", - "https://github.com/Akasxh/Terrain-Recognition/pull/14", - "https://github.com/GSSoC24/Postman-Challenge/pull/2016" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-12", - "2024-10-14", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144632601?u=a5364dfde643d172f0982ad92bff282ddf3d9051&v=4", - "login": "Aditijainnn", - "url": "https://github.com/Aditijainnn", - "score": 840, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RCCTechzClub/TechzRevamp/pull/39", - "https://github.com/ajay-dhangar/algo/pull/979", - "https://github.com/ajay-dhangar/algo/pull/855", - "https://github.com/VesperAkshay/qr-code-generator/pull/62", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/83", - "https://github.com/ankit071105/Ticket-Booking/pull/179", - "https://github.com/anuragverma108/SwapReads/pull/3502", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/187", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/175", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/36", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/46", - "https://github.com/codeaashu/DevDisplay/pull/246", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/883", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/854", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/221", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/219", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/217", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/214", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/124", - "https://github.com/mansiruhil13/Bobble-AI/pull/355", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/230", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/43", - "https://github.com/c0sm0void/ReVot/pull/90", - "https://github.com/muruga21/LoadDistrix/pull/12", - "https://github.com/AlgoGenesis/C/pull/1142", - "https://github.com/AlgoGenesis/C/pull/880", - "https://github.com/AlgoGenesis/C/pull/733", - "https://github.com/AlgoGenesis/C/pull/730", - "https://github.com/AlgoGenesis/C/pull/599", - "https://github.com/AlgoGenesis/C/pull/597", - "https://github.com/AlgoGenesis/C/pull/591", - "https://github.com/AlgoGenesis/C/pull/554", - "https://github.com/param-code/counter-app/pull/139", - "https://github.com/iamrahulmahato/master-web-development/pull/940", - "https://github.com/iamrahulmahato/master-web-development/pull/898", - "https://github.com/iamrahulmahato/master-web-development/pull/897", - "https://github.com/iamrahulmahato/master-web-development/pull/470", - "https://github.com/iamrahulmahato/master-web-development/pull/382", - "https://github.com/iamrahulmahato/master-web-development/pull/227", - "https://github.com/iamrahulmahato/master-web-development/pull/158", - "https://github.com/iamrahulmahato/master-web-development/pull/71", - "https://github.com/recodehive/machine-learning-repos/pull/1418", - "https://github.com/recodehive/machine-learning-repos/pull/1391", - "https://github.com/recodehive/machine-learning-repos/pull/1359", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/656", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/299", - "https://github.com/UTSAVS26/PyVerse/pull/760", - "https://github.com/UTSAVS26/PyVerse/pull/557", - "https://github.com/UTSAVS26/PyVerse/pull/555", - "https://github.com/UTSAVS26/PyVerse/pull/352", - "https://github.com/UTSAVS26/PyVerse/pull/143" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116643029?u=a98a95e78b2f4534c56a79ec9d4ae5605963e6b0&v=4", - "login": "Ananya-vastare", - "url": "https://github.com/Ananya-vastare", - "score": 835, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1126", - "https://github.com/ajay-dhangar/algo/pull/960", - "https://github.com/Code-Social/official-website/pull/24", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/394", - "https://github.com/AlgoGenesis/C/pull/877", - "https://github.com/AlgoGenesis/C/pull/535", - "https://github.com/iamrahulmahato/master-web-development/pull/1950", - "https://github.com/iamrahulmahato/master-web-development/pull/1402", - "https://github.com/tanishaness/SPROCTOR/pull/74", - "https://github.com/tanishaness/SPROCTOR/pull/25", - "https://github.com/tanishaness/SPROCTOR/pull/23", - "https://github.com/multiverseweb/Dataverse/pull/116", - "https://github.com/apu52/Travel_Website/pull/1395", - "https://github.com/UTSAVS26/PyVerse/pull/940", - "https://github.com/UTSAVS26/PyVerse/pull/420", - "https://github.com/UTSAVS26/PyVerse/pull/311", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1223", - "https://github.com/GSSoC24/Postman-Challenge/pull/2133" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-16", - "2024-10-18", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183082242?u=ced96ec6ce17678ac9b45295514eee2f97dbde6b&v=4", - "login": "Ankul8471", - "url": "https://github.com/Ankul8471", - "score": 835, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/564", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/285", - "https://github.com/ankit071105/Ticket-Booking/pull/738", - "https://github.com/mansiruhil13/Bobble-AI/pull/1048", - "https://github.com/mansiruhil13/Bobble-AI/pull/782", - "https://github.com/iamrahulmahato/master-web-development/pull/1434", - "https://github.com/iamrahulmahato/master-web-development/pull/1178", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/551", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/383", - "https://github.com/tushargupta1504/Medical-Website/pull/601", - "https://github.com/tushargupta1504/Medical-Website/pull/587", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1069", - "https://github.com/GSSoC24/Postman-Challenge/pull/2358" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-14", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126777510?v=4", - "login": "Palmistry2310", - "url": "https://github.com/Palmistry2310", - "score": 830, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/262", - "https://github.com/vishanurag/Canvas-Editor/pull/548", - "https://github.com/GarimaSingh0109/WasteManagment/pull/365", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/436", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/334", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/330", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1437", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1434", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1405", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1305", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1299", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1297", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1296", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1216", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1214", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1212", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1135", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1131", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1130", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1129", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1128", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1009", - "https://github.com/PriyaGhosal/BuddyTrail/pull/603", - "https://github.com/PriyaGhosal/BuddyTrail/pull/600", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1021", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/739", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/731", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/634", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/459" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162019723?u=4e3613180ea99211da8fa2b19eab3bec10126e42&v=4", - "login": "jvkousthub", - "url": "https://github.com/jvkousthub", - "score": 830, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1061", - "https://github.com/ajay-dhangar/algo/pull/616", - "https://github.com/ajay-dhangar/algo/pull/496", - "https://github.com/ajay-dhangar/algo/pull/385", - "https://github.com/ajay-dhangar/algo/pull/380", - "https://github.com/ajay-dhangar/algo/pull/180", - "https://github.com/ANSHIKA-26/WordWise/pull/774", - "https://github.com/Harshdev098/Research-Nexas/pull/66", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/236", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/234", - "https://github.com/mansiruhil13/Bobble-AI/pull/410", - "https://github.com/mansiruhil13/Bobble-AI/pull/400", - "https://github.com/mansiruhil13/Bobble-AI/pull/96", - "https://github.com/Anjaliavv51/Retro/pull/472", - "https://github.com/PriyaGhosal/BuddyTrail/pull/209", - "https://github.com/iamrahulmahato/master-web-development/pull/670", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/37", - "https://github.com/SurajPratap10/Imagine_AI/pull/1167", - "https://github.com/UTSAVS26/PyVerse/pull/215", - "https://github.com/GSSoC24/Postman-Challenge/pull/1926" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-20", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149484435?u=88c7c173f70ea2667a4615103b7fa676ed35c280&v=4", - "login": "Ankitha2130", - "url": "https://github.com/Ankitha2130", - "score": 830, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1020", - "https://github.com/ajay-dhangar/algo/pull/965", - "https://github.com/ajay-dhangar/algo/pull/912", - "https://github.com/ajay-dhangar/algo/pull/887", - "https://github.com/ajay-dhangar/algo/pull/72", - "https://github.com/vishanurag/Canvas-Editor/pull/832", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/104", - "https://github.com/Harshdev098/Research-Nexas/pull/62", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1648", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1561", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1486", - "https://github.com/PriyaGhosal/BuddyTrail/pull/979", - "https://github.com/tushargupta1504/Medical-Website/pull/110", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/461", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/421", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/229", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1186", - "https://github.com/GSSoC24/Postman-Challenge/pull/2408" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-10", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-25", - "2024-10-26", - "2024-10-27" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164205358?u=c32144d754b833d7773b51cbffb44fc91cce97ae&v=4", - "login": "ezDecode", - "url": "https://github.com/ezDecode", - "score": 825, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/512", - "https://github.com/aditya-bhaumik/Pathsphere/pull/349", - "https://github.com/aditya-bhaumik/Pathsphere/pull/258", - "https://github.com/aditya-bhaumik/Pathsphere/pull/236", - "https://github.com/aditya-bhaumik/Pathsphere/pull/147", - "https://github.com/aditya-bhaumik/Pathsphere/pull/139", - "https://github.com/GarimaSingh0109/WasteManagment/pull/355", - "https://github.com/GarimaSingh0109/WasteManagment/pull/158", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/285", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/284", - "https://github.com/samyakmaitre/eventmint/pull/300", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/326", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/203", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/22", - "https://github.com/UTSAVS26/PyVerse/pull/202", - "https://github.com/GSSoC24/Postman-Challenge/pull/1905" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-14", - "2024-10-18", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/57872034?u=86f7cb2980fe6bffacf9df4dc4e7ccbfc1e501c1&v=4", - "login": "mahaveergurjar", - "url": "https://github.com/mahaveergurjar", - "score": 825, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1621", - "https://github.com/ajay-dhangar/algo/pull/1619", - "https://github.com/ajay-dhangar/algo/pull/1568", - "https://github.com/ajay-dhangar/algo/pull/1565", - "https://github.com/ajay-dhangar/algo/pull/1563", - "https://github.com/ajay-dhangar/algo/pull/1561", - "https://github.com/ajay-dhangar/algo/pull/1559", - "https://github.com/ajay-dhangar/algo/pull/1348", - "https://github.com/ajay-dhangar/algo/pull/1257", - "https://github.com/ajay-dhangar/algo/pull/1255", - "https://github.com/ajay-dhangar/algo/pull/1253", - "https://github.com/ajay-dhangar/algo/pull/1215", - "https://github.com/ajay-dhangar/algo/pull/1212", - "https://github.com/ajay-dhangar/algo/pull/1152", - "https://github.com/ajay-dhangar/algo/pull/1125", - "https://github.com/ajay-dhangar/algo/pull/1122", - "https://github.com/ajay-dhangar/algo/pull/1058", - "https://github.com/ajay-dhangar/algo/pull/1031", - "https://github.com/ajay-dhangar/algo/pull/1022", - "https://github.com/ajay-dhangar/algo/pull/914", - "https://github.com/ajay-dhangar/algo/pull/879", - "https://github.com/ajay-dhangar/algo/pull/813", - "https://github.com/ajay-dhangar/algo/pull/761", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/344", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/289", - "https://github.com/samyakmaitre/eventmint/pull/386", - "https://github.com/GSSoC24/Postman-Challenge/pull/2165" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-27", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176945581?u=1dc187dbe5d896c88640168291484b2963a7f67d&v=4", - "login": "rajveeerr", - "url": "https://github.com/rajveeerr", - "score": 825, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/252", - "https://github.com/yatulearn/yatulearn/pull/207", - "https://github.com/yatulearn/yatulearn/pull/150", - "https://github.com/anuragverma108/SwapReads/pull/3004", - "https://github.com/anuragverma108/SwapReads/pull/2998", - "https://github.com/Anjaliavv51/Retro/pull/791", - "https://github.com/SurajPratap10/Imagine_AI/pull/1248", - "https://github.com/SurajPratap10/Imagine_AI/pull/1246", - "https://github.com/SurajPratap10/Imagine_AI/pull/1244", - "https://github.com/SurajPratap10/Imagine_AI/pull/1183", - "https://github.com/SurajPratap10/Imagine_AI/pull/1182", - "https://github.com/SurajPratap10/Imagine_AI/pull/1175", - "https://github.com/SurajPratap10/Imagine_AI/pull/1135", - "https://github.com/SurajPratap10/Imagine_AI/pull/1129", - "https://github.com/SurajPratap10/Imagine_AI/pull/1124", - "https://github.com/SurajPratap10/Imagine_AI/pull/1116", - "https://github.com/GSSoC24/Postman-Challenge/pull/2394" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-15", - "2024-10-25", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160874720?u=6cfd462e36a3c2b0aced7ddf3cef023a4d400dad&v=4", - "login": "Amankr200", - "url": "https://github.com/Amankr200", - "score": 820, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/337", - "https://github.com/yatulearn/yatulearn/pull/123", - "https://github.com/anuj123upadhyay/MegaBlog/pull/245", - "https://github.com/anuj123upadhyay/MegaBlog/pull/153", - "https://github.com/anuragverma108/SwapReads/pull/3538", - "https://github.com/anuragverma108/SwapReads/pull/3113", - "https://github.com/anuragverma108/SwapReads/pull/3056", - "https://github.com/anuragverma108/SwapReads/pull/2985", - "https://github.com/anuragverma108/SwapReads/pull/2982", - "https://github.com/anuragverma108/SwapReads/pull/2969", - "https://github.com/vishanurag/Canvas-Editor/pull/172", - "https://github.com/ayush-that/FinVeda/pull/1355", - "https://github.com/ayush-that/FinVeda/pull/1269", - "https://github.com/ayush-that/FinVeda/pull/1257", - "https://github.com/ayush-that/FinVeda/pull/1254", - "https://github.com/ayush-that/FinVeda/pull/1249", - "https://github.com/iamrahulmahato/master-web-development/pull/821", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/572", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/767", - "https://github.com/GSSoC24/Postman-Challenge/pull/1778" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154623778?v=4", - "login": "DivyaJyothi9", - "url": "https://github.com/DivyaJyothi9", - "score": 815, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/251", - "https://github.com/ANSHIKA-26/WordWise/pull/200", - "https://github.com/ANSHIKA-26/WordWise/pull/198", - "https://github.com/ayush-that/FinVeda/pull/1602", - "https://github.com/ayush-that/FinVeda/pull/1335", - "https://github.com/ayush-that/FinVeda/pull/1329", - "https://github.com/mdazfar2/Ezyshop/pull/38", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/256", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/188", - "https://github.com/mansiruhil13/Bobble-AI/pull/579", - "https://github.com/iamrahulmahato/master-web-development/pull/959", - "https://github.com/iamrahulmahato/master-web-development/pull/862", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/443", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/236", - "https://github.com/GSSoC24/Postman-Challenge/pull/1802" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-15", - "2024-10-16", - "2024-10-19", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179490866?u=5050aaa5f1536687c8322347686e41bab0233390&v=4", - "login": "Arghya-Chakraborty0812", - "url": "https://github.com/Arghya-Chakraborty0812", - "score": 815, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1438", - "https://github.com/ANSHIKA-26/WordWise/pull/1252", - "https://github.com/ANSHIKA-26/WordWise/pull/810", - "https://github.com/ANSHIKA-26/WordWise/pull/697", - "https://github.com/ANSHIKA-26/WordWise/pull/668", - "https://github.com/anuragverma108/SwapReads/pull/3973", - "https://github.com/anuragverma108/SwapReads/pull/3959", - "https://github.com/anuragverma108/SwapReads/pull/3895", - "https://github.com/anuragverma108/SwapReads/pull/3818", - "https://github.com/anuragverma108/SwapReads/pull/3785", - "https://github.com/anuragverma108/SwapReads/pull/3755", - "https://github.com/anuragverma108/SwapReads/pull/3676", - "https://github.com/anuragverma108/SwapReads/pull/3586", - "https://github.com/anuragverma108/SwapReads/pull/3543", - "https://github.com/anuragverma108/SwapReads/pull/3494", - "https://github.com/anuragverma108/SwapReads/pull/3451", - "https://github.com/anuragverma108/SwapReads/pull/3432", - "https://github.com/anuragverma108/SwapReads/pull/3333", - "https://github.com/anuragverma108/SwapReads/pull/3045", - "https://github.com/ayush-that/FinVeda/pull/2306", - "https://github.com/mdazfar2/Ezyshop/pull/516", - "https://github.com/AlgoGenesis/C/pull/1360", - "https://github.com/GSSoC24/Postman-Challenge/pull/2325" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133222313?u=c4c05d1a60e63143463d362e4f0f7f108b831f9a&v=4", - "login": "Avinash-Codes", - "url": "https://github.com/Avinash-Codes", - "score": 815, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/128", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/102", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/81", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/67", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/32", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/31", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/28", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/26", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/20", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/16", - "https://github.com/GSSoC24/Postman-Challenge/pull/3060" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-08", - "2024-10-10", - "2024-10-14", - "2024-10-20", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175471418?v=4", - "login": "SanikaBhalerao1345", - "url": "https://github.com/SanikaBhalerao1345", - "score": 810, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/679", - "https://github.com/ankit071105/Ticket-Booking/pull/735", - "https://github.com/anuragverma108/SwapReads/pull/4281", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/299", - "https://github.com/ayush-that/FinVeda/pull/2477", - "https://github.com/ayush-that/FinVeda/pull/2071", - "https://github.com/AlgoGenesis/C/pull/1092", - "https://github.com/iamrahulmahato/master-web-development/pull/1939", - "https://github.com/iamrahulmahato/master-web-development/pull/1420", - "https://github.com/iamrahulmahato/master-web-development/pull/398", - "https://github.com/recodehive/machine-learning-repos/pull/1532", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/219", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/226", - "https://github.com/vansh-codes/ChaosWeb/pull/80", - "https://github.com/GSSoC24/Postman-Challenge/pull/2636" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-15", - "2024-10-19", - "2024-10-21", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142198651?u=11634faf10bb99bb0a3b3928ae7070b148e8d35c&v=4", - "login": "shuvojitss", - "url": "https://github.com/shuvojitss", - "score": 810, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1576", - "https://github.com/ajay-dhangar/algo/pull/1573", - "https://github.com/ajay-dhangar/algo/pull/1570", - "https://github.com/ajay-dhangar/algo/pull/1556", - "https://github.com/ajay-dhangar/algo/pull/1545", - "https://github.com/ajay-dhangar/algo/pull/1486", - "https://github.com/ajay-dhangar/algo/pull/1455", - "https://github.com/ajay-dhangar/algo/pull/1363", - "https://github.com/ajay-dhangar/algo/pull/1353", - "https://github.com/ajay-dhangar/algo/pull/1309", - "https://github.com/ajay-dhangar/algo/pull/1288", - "https://github.com/AlgoGenesis/C/pull/1511", - "https://github.com/AlgoGenesis/C/pull/1383", - "https://github.com/AlgoGenesis/C/pull/1228", - "https://github.com/AlgoGenesis/C/pull/1144", - "https://github.com/AlgoGenesis/C/pull/933", - "https://github.com/AlgoGenesis/C/pull/669", - "https://github.com/AlgoGenesis/C/pull/667", - "https://github.com/AlgoGenesis/C/pull/665", - "https://github.com/AlgoGenesis/C/pull/512", - "https://github.com/AlgoGenesis/C/pull/511", - "https://github.com/AlgoGenesis/C/pull/509", - "https://github.com/UTSAVS26/PyVerse/pull/999", - "https://github.com/UTSAVS26/PyVerse/pull/987", - "https://github.com/UTSAVS26/PyVerse/pull/960", - "https://github.com/UTSAVS26/PyVerse/pull/853", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1238", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1221", - "https://github.com/GSSoC24/Postman-Challenge/pull/1834" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-13", - "2024-10-17", - "2024-10-22", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114737464?u=cf2a420ff139826a4c35528551ae28357a6ab76e&v=4", - "login": "archanasingh11", - "url": "https://github.com/archanasingh11", - "score": 810, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ramsey99/Admin_Dashboard/pull/78", - "https://github.com/vishanurag/Canvas-Editor/pull/78", - "https://github.com/Harshdev098/Research-Nexas/pull/97", - "https://github.com/Jiggy9/JCT/pull/3", - "https://github.com/kom-senapati/bot-verse/pull/83", - "https://github.com/Anjaliavv51/Retro/pull/77", - "https://github.com/andoriyaprashant/DevDocsHub/pull/29", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/494", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/26", - "https://github.com/SanchitGeez/Investra/pull/91", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/150", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/122", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/30", - "https://github.com/tushargupta1504/Medical-Website/pull/181", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/38", - "https://github.com/UTSAVS26/PyVerse/pull/782", - "https://github.com/GSSoC24/Postman-Challenge/pull/2749" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-11", - "2024-10-12", - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161150398?u=fa9db341aad01e0e0558f43b917e063ddd8f7523&v=4", - "login": "shristirwt", - "url": "https://github.com/shristirwt", - "score": 810, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/98", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/207", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/197", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/185", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/167", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/120", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/114", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/85", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/50", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/433", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/416", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/410", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/403", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/376", - "https://github.com/GSSoC24/Postman-Challenge/pull/2328" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-07", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142707684?u=d818b3954e8af71111d9ac19174e4f5b04d8460e&v=4", - "login": "ShrishtiSingh26", - "url": "https://github.com/ShrishtiSingh26", - "score": 805, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/180", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/332", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/56", - "https://github.com/ANSHIKA-26/WordWise/pull/944", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/8", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/439", - "https://github.com/AlgoGenesis/C/pull/1111", - "https://github.com/PriyaGhosal/BuddyTrail/pull/62", - "https://github.com/iamrahulmahato/master-web-development/pull/1846", - "https://github.com/iamrahulmahato/master-web-development/pull/325", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/202", - "https://github.com/07sumit1002/CabRental/pull/483", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/246", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/119", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/117", - "https://github.com/UTSAVS26/PyVerse/pull/546", - "https://github.com/GSSoC24/Postman-Challenge/pull/2565" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-20", - "2024-10-21", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139335974?u=1ae75687ca8a1f7d8a9b5e23e65a0b8b1938d426&v=4", - "login": "Annapoornaaradhya", - "url": "https://github.com/Annapoornaaradhya", - "score": 805, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/129", - "https://github.com/anuragverma108/SwapReads/pull/3640", - "https://github.com/vishanurag/Canvas-Editor/pull/729", - "https://github.com/codeaashu/DevDisplay/pull/298", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1440", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1376", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1087", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1085", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1053", - "https://github.com/PriyaGhosal/BuddyTrail/pull/476", - "https://github.com/iamrahulmahato/master-web-development/pull/545", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/539", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/442", - "https://github.com/yagnik2411/Quiz-Genius/pull/113", - "https://github.com/GSSoC24/Postman-Challenge/pull/1820" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-10", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155547804?v=4", - "login": "shivenyadavs", - "url": "https://github.com/shivenyadavs", - "score": 800, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/947", - "https://github.com/aditya-bhaumik/Pathsphere/pull/860", - "https://github.com/aditya-bhaumik/Pathsphere/pull/776", - "https://github.com/aditya-bhaumik/Pathsphere/pull/758", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/624", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/557", - "https://github.com/arjunatapadkar/codeteria/pull/194", - "https://github.com/ayush-that/FinVeda/pull/2062", - "https://github.com/mansiruhil13/Bobble-AI/pull/1023", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1802", - "https://github.com/iamrahulmahato/master-web-development/pull/1821", - "https://github.com/GSSoC24/Postman-Challenge/pull/2472" - ], - "pr_dates": [ - "2024-10-17", - "2024-10-19", - "2024-10-22", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140981371?u=8c91b0daa4ca6e5b5fb6a6b71c13218ec56597d5&v=4", - "login": "JomanaMahmoud", - "url": "https://github.com/JomanaMahmoud", - "score": 800, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/773", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1003", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/915", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/888", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/584", - "https://github.com/Webaddicted91/Visieum2.0/pull/39", - "https://github.com/recodehive/awesome-github-profiles/pull/986", - "https://github.com/recodehive/awesome-github-profiles/pull/691", - "https://github.com/recodehive/machine-learning-repos/pull/1553", - "https://github.com/recodehive/machine-learning-repos/pull/1552", - "https://github.com/recodehive/machine-learning-repos/pull/1538", - "https://github.com/recodehive/machine-learning-repos/pull/1536", - "https://github.com/yagnik2411/Quiz-Genius/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/2244" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-08", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-20", - "2024-10-23", - "2024-10-24", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143623476?u=85a2e23aaf685d3527ccb68a24a1dce7a3d6ab69&v=4", - "login": "myselfshivams", - "url": "https://github.com/myselfshivams", - "score": 790, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/58", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/46", - "https://github.com/arpittiwari24/YourNextSaas.online/pull/24", - "https://github.com/Aryainguz/picwise.co/pull/44", - "https://github.com/himeshparashar/Social-Morph/pull/26", - "https://github.com/himeshparashar/Social-Morph/pull/14", - "https://github.com/TherkuTech/tturl/pull/11", - "https://github.com/rahulsainlll/git-trace/pull/36", - "https://github.com/Rakshit-gen/Slanine/pull/26", - "https://github.com/Rakshit-gen/Slanine/pull/15", - "https://github.com/SaranshBangar/Daneizo/pull/10", - "https://github.com/SaranshBangar/Daneizo/pull/5", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/14", - "https://github.com/TejasNasre/nexmeet/pull/16", - "https://github.com/notsoocool/codecache/pull/15", - "https://github.com/GSSoC24/Postman-Challenge/pull/2927" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166749819?u=d405fadfb820d6aa0223617db286d0fce1a67e76&v=4", - "login": "Jay-1409", - "url": "https://github.com/Jay-1409", - "score": 785, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/40", - "https://github.com/anuragverma108/SwapReads/pull/2949", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/385", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/211", - "https://github.com/Bitbox-Connect/Bitbox/pull/88", - "https://github.com/Open-Code-Crafters/FitFlex/pull/44", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/418", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/290", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/316", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/130", - "https://github.com/vansh-codes/ChaosWeb/pull/121", - "https://github.com/vansh-codes/ChaosWeb/pull/87", - "https://github.com/GSSoC24/Postman-Challenge/pull/2201" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71073587?u=4274ef2fa803cb5e183a0cd21896e8125317faed&v=4", - "login": "say-het", - "url": "https://github.com/say-het", - "score": 785, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/57", - "https://github.com/ankit071105/Ticket-Booking/pull/37", - "https://github.com/BhattAnsh/Quiz-Quest/pull/32", - "https://github.com/ANSHIKA-26/WordWise/pull/795", - "https://github.com/ANSHIKA-26/WordWise/pull/212", - "https://github.com/Code-Social/official-website/pull/88", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/39", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/65", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/12", - "https://github.com/dohinaf/basic-icecream-website/pull/129", - "https://github.com/Bitbox-Connect/Bitbox/pull/89", - "https://github.com/Bitbox-Connect/Bitbox/pull/83", - "https://github.com/Open-Code-Crafters/FitFlex/pull/120", - "https://github.com/Open-Code-Crafters/FitFlex/pull/28", - "https://github.com/kom-senapati/bot-verse/pull/37", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/338", - "https://github.com/mansiruhil13/Bobble-AI/pull/181", - "https://github.com/Megh2005/Med-o-Next/pull/74", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/20", - "https://github.com/multiverseweb/Dataverse/pull/24", - "https://github.com/TenzDelek/DearDiary/pull/41", - "https://github.com/GSSoC24/Postman-Challenge/pull/1828" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-11", - "2024-10-12", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150342364?u=85738039734ba3aad4c1dc5d81469f3f2c9b6541&v=4", - "login": "sanchitc05", - "url": "https://github.com/sanchitc05", - "score": 785, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1519", - "https://github.com/ANSHIKA-26/WordWise/pull/1453", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/251", - "https://github.com/ayush-that/FinVeda/pull/2526", - "https://github.com/ayush-that/FinVeda/pull/2201", - "https://github.com/ayush-that/FinVeda/pull/2188", - "https://github.com/ayush-that/FinVeda/pull/2171", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/324", - "https://github.com/recodehive/machine-learning-repos/pull/1548", - "https://github.com/recodehive/machine-learning-repos/pull/1520", - "https://github.com/SurajPratap10/Imagine_AI/pull/1201", - "https://github.com/tanishaness/SPROCTOR/pull/46", - "https://github.com/Vin205/Enyanjyoti/pull/395", - "https://github.com/UTSAVS26/PyVerse/pull/738", - "https://github.com/GSSoC24/Postman-Challenge/pull/2400" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-14", - "2024-10-15", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136584376?v=4", - "login": "itznayan", - "url": "https://github.com/itznayan", - "score": 785, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/133", - "https://github.com/arjunatapadkar/codeteria/pull/53", - "https://github.com/arjunatapadkar/codeteria/pull/51", - "https://github.com/arjunatapadkar/codeteria/pull/50", - "https://github.com/aswathcm29/JournalForge/pull/63", - "https://github.com/smilewithkhushi/BasicNative/pull/138", - "https://github.com/Bitbox-Connect/Bitbox/pull/87", - "https://github.com/jahnvisahni31/DesignDeck/pull/138", - "https://github.com/jahnvisahni31/DesignDeck/pull/136", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/250", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/38", - "https://github.com/Scribbie-Notes/notes-app/pull/209", - "https://github.com/Scribbie-Notes/notes-app/pull/101", - "https://github.com/Scribbie-Notes/notes-app/pull/66", - "https://github.com/Scribbie-Notes/notes-app/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/2313" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122176467?u=1c003a7d202c01921ac57babff42abda50cabcfb&v=4", - "login": "WednesdaySP", - "url": "https://github.com/WednesdaySP", - "score": 780, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/378", - "https://github.com/prajapatihet/donorconnect/pull/70", - "https://github.com/prajapatihet/donorconnect/pull/68", - "https://github.com/prajapatihet/donorconnect/pull/57", - "https://github.com/prajapatihet/donorconnect/pull/54", - "https://github.com/Jiggy9/JCT/pull/55", - "https://github.com/Jiggy9/JCT/pull/54", - "https://github.com/Jiggy9/JCT/pull/41", - "https://github.com/Jiggy9/JCT/pull/37", - "https://github.com/Anjaliavv51/Retro/pull/355", - "https://github.com/Anjaliavv51/Retro/pull/133", - "https://github.com/andoriyaprashant/OpSo/pull/349", - "https://github.com/andoriyaprashant/OpSo/pull/348", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/337", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/332", - "https://github.com/yagnik2411/Quiz-Genius/pull/139", - "https://github.com/yagnik2411/Quiz-Genius/pull/128", - "https://github.com/yagnik2411/Quiz-Genius/pull/98", - "https://github.com/GSSoC24/Postman-Challenge/pull/1746" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-22", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154061817?u=127380485a5516cdade67a6057bacf32bc5b49ff&v=4", - "login": "Amulya-B28", - "url": "https://github.com/Amulya-B28", - "score": 775, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/295", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/153", - "https://github.com/ankit071105/Ticket-Booking/pull/688", - "https://github.com/anuragverma108/SwapReads/pull/3242", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/107", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/64", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/357", - "https://github.com/dohinaf/basic-icecream-website/pull/300", - "https://github.com/dohinaf/basic-icecream-website/pull/240", - "https://github.com/Anjaliavv51/Retro/pull/521", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1217", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/198", - "https://github.com/subhadeeproy3902/trailgo/pull/26", - "https://github.com/swarooppatilx/scruter/pull/272", - "https://github.com/multiverseweb/Dataverse/pull/76", - "https://github.com/GSSoC24/Postman-Challenge/pull/2492" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-20", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175193919?u=8ea2d6891639568c6c04fffca3222be2b6dcf445&v=4", - "login": "jjf2009", - "url": "https://github.com/jjf2009", - "score": 775, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/20", - "https://github.com/ayush-that/FinVeda/pull/2035", - "https://github.com/Devamani11D/salt-app-kickstart/pull/19", - "https://github.com/himeshparashar/Social-Morph/pull/56", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/13", - "https://github.com/iamrahulmahato/master-web-development/pull/339", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/150", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/36", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/35", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/50", - "https://github.com/swarooppatilx/scruter/pull/82", - "https://github.com/GSSoC24/Postman-Challenge/pull/1833" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-22", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112062354?u=3f8766f62925ebed0bdd08edd029ba7fc7f18ae5&v=4", - "login": "Abhi0049k", - "url": "https://github.com/Abhi0049k", - "score": 770, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/401", - "https://github.com/Luson045/medi-connect/pull/319", - "https://github.com/Luson045/medi-connect/pull/139", - "https://github.com/subhadipbhowmik/bio-branch/pull/37", - "https://github.com/subhadipbhowmik/bio-branch/pull/27", - "https://github.com/multiverseweb/Dataverse/pull/72", - "https://github.com/TenzDelek/DearDiary/pull/128", - "https://github.com/TenzDelek/DearDiary/pull/115", - "https://github.com/TenzDelek/DearDiary/pull/100", - "https://github.com/TenzDelek/DearDiary/pull/47", - "https://github.com/TenzDelek/DearDiary/pull/27", - "https://github.com/TenzDelek/DearDiary/pull/21", - "https://github.com/GSSoC24/Postman-Challenge/pull/1913" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-12", - "2024-10-14", - "2024-10-18", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144143093?v=4", - "login": "Rohan20-10", - "url": "https://github.com/Rohan20-10", - "score": 770, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/258", - "https://github.com/multiverseweb/Dataverse/pull/207", - "https://github.com/multiverseweb/Dataverse/pull/125", - "https://github.com/multiverseweb/Dataverse/pull/94", - "https://github.com/multiverseweb/Dataverse/pull/61", - "https://github.com/multiverseweb/Dataverse/pull/41", - "https://github.com/GSSoC24/Postman-Challenge/pull/3120" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-09", - "2024-10-13", - "2024-10-22", - "2024-10-28", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148070120?u=4dd0e3b24a5797d2891333d6bd8903871790be0e&v=4", - "login": "T-Fathima", - "url": "https://github.com/T-Fathima", - "score": 765, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/870", - "https://github.com/ajay-dhangar/algo/pull/1635", - "https://github.com/ajay-dhangar/algo/pull/1356", - "https://github.com/ajay-dhangar/algo/pull/1355", - "https://github.com/anuragverma108/SwapReads/pull/3783", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/81", - "https://github.com/ayush-that/FinVeda/pull/1022", - "https://github.com/Devamani11D/salt-app-kickstart/pull/82", - "https://github.com/Harshdev098/Research-Nexas/pull/340", - "https://github.com/Bitbox-Connect/Bitbox/pull/193", - "https://github.com/prajapatihet/donorconnect/pull/116", - "https://github.com/AlgoGenesis/C/pull/1364", - "https://github.com/AlgoGenesis/C/pull/326", - "https://github.com/param-code/counter-app/pull/323", - "https://github.com/param-code/counter-app/pull/297", - "https://github.com/param-code/counter-app/pull/120", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/356", - "https://github.com/iamrahulmahato/master-web-development/pull/1545", - "https://github.com/Soujanya2004/wanderlust-2024/pull/312", - "https://github.com/Soujanya2004/wanderlust-2024/pull/310", - "https://github.com/swarooppatilx/scruter/pull/312", - "https://github.com/vansh-codes/ChaosWeb/pull/73", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1270", - "https://github.com/GSSoC24/Postman-Challenge/pull/2597" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-10", - "2024-10-12", - "2024-10-20", - "2024-10-21", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143473007?u=cad59e5ca9556fb7585975717a24540d23555019&v=4", - "login": "dipak2005", - "url": "https://github.com/dipak2005", - "score": 760, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3393", - "https://github.com/ayush-that/FinVeda/pull/2571", - "https://github.com/ayush-that/FinVeda/pull/2561", - "https://github.com/ayush-that/FinVeda/pull/2551", - "https://github.com/ayush-that/FinVeda/pull/2543", - "https://github.com/ayush-that/FinVeda/pull/2529", - "https://github.com/ayush-that/FinVeda/pull/2504", - "https://github.com/ayush-that/FinVeda/pull/2408", - "https://github.com/ayush-that/FinVeda/pull/2241", - "https://github.com/ayush-that/FinVeda/pull/2177", - "https://github.com/ayush-that/FinVeda/pull/2097", - "https://github.com/ayush-that/FinVeda/pull/2021", - "https://github.com/GSSoC24/Postman-Challenge/pull/2659" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-10-31", - "2024-11-01" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125198162?u=23788ef5fc593a541c31ba2605f686e4de752e83&v=4", - "login": "priyachau12", - "url": "https://github.com/priyachau12", - "score": 760, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3310", - "https://github.com/anuragverma108/SwapReads/pull/3291", - "https://github.com/codeaashu/DevDisplay/pull/343", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/321", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/172", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/153", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/151", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/135", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/102", - "https://github.com/GSSoC24/Postman-Challenge/pull/2520" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-14", - "2024-10-20", - "2024-10-22", - "2024-10-27", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100456448?u=707c8b96406cd0d917cf24ff1ae6bc5592c231e3&v=4", - "login": "Premkolte", - "url": "https://github.com/Premkolte", - "score": 760, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/294", - "https://github.com/dhairyagothi/StationGuide/pull/383", - "https://github.com/dhairyagothi/StationGuide/pull/344", - "https://github.com/dhairyagothi/StationGuide/pull/314", - "https://github.com/dhairyagothi/StationGuide/pull/296", - "https://github.com/dhairyagothi/StationGuide/pull/163", - "https://github.com/dhairyagothi/StationGuide/pull/130", - "https://github.com/dhairyagothi/StationGuide/pull/106", - "https://github.com/dhairyagothi/StationGuide/pull/67", - "https://github.com/dhairyagothi/StationGuide/pull/54", - "https://github.com/dhairyagothi/StationGuide/pull/45", - "https://github.com/GSSoC24/Postman-Challenge/pull/1900" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-23" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142892607?u=3ca021cfbed0018a3cee7eab8ba6e6dafeb94dc3&v=4", - "login": "Mansi07sharma", - "url": "https://github.com/Mansi07sharma", - "score": 745, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/284", - "https://github.com/ajay-dhangar/algo/pull/963", - "https://github.com/ajay-dhangar/algo/pull/844", - "https://github.com/ajay-dhangar/algo/pull/843", - "https://github.com/ajay-dhangar/algo/pull/695", - "https://github.com/ajay-dhangar/algo/pull/552", - "https://github.com/ajay-dhangar/algo/pull/438", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/231", - "https://github.com/ayush-that/FinVeda/pull/1526", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/601", - "https://github.com/AlgoGenesis/C/pull/986", - "https://github.com/AlgoGenesis/C/pull/838", - "https://github.com/iamrahulmahato/master-web-development/pull/1546", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/419", - "https://github.com/recodehive/machine-learning-repos/pull/1581", - "https://github.com/recodehive/machine-learning-repos/pull/1461", - "https://github.com/Vin205/Enyanjyoti/pull/454", - "https://github.com/UTSAVS26/PyVerse/pull/739", - "https://github.com/UTSAVS26/PyVerse/pull/583", - "https://github.com/UTSAVS26/PyVerse/pull/567", - "https://github.com/GSSoC24/Postman-Challenge/pull/1938" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119668086?u=08cde365f32383a31d6edcf60ff7a43272e833de&v=4", - "login": "yeshwanth-ds", - "url": "https://github.com/yeshwanth-ds", - "score": 740, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/BhattAnsh/Quiz-Quest/pull/85", - "https://github.com/divyansh-2005/my-calendar-app/pull/70", - "https://github.com/GarimaSingh0109/WasteManagment/pull/41", - "https://github.com/iamrahulmahato/master-web-development/pull/849", - "https://github.com/iamrahulmahato/master-web-development/pull/513", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/91", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/2146" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-08", - "2024-10-17", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156179607?u=f4935b2f8a67e8c4b54e96418cd6a447a10ff5f0&v=4", - "login": "laxmikandivalasa", - "url": "https://github.com/laxmikandivalasa", - "score": 740, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4300", - "https://github.com/ayush-that/FinVeda/pull/2494", - "https://github.com/ayush-that/FinVeda/pull/1049", - "https://github.com/dhairyagothi/StationGuide/pull/484", - "https://github.com/Anjaliavv51/Retro/pull/372", - "https://github.com/Anjaliavv51/Retro/pull/351", - "https://github.com/Anjaliavv51/Retro/pull/287", - "https://github.com/Anjaliavv51/Retro/pull/88", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/682", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/407", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/286", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/500", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1105", - "https://github.com/GSSoC24/Postman-Challenge/pull/2503" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-14", - "2024-10-17", - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138569378?u=4d4614c10ec2463a15c537271992c8f6d0423ddd&v=4", - "login": "Abankita", - "url": "https://github.com/Abankita", - "score": 740, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/868", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/721", - "https://github.com/iamrahulmahato/master-web-development/pull/1433", - "https://github.com/iamrahulmahato/master-web-development/pull/1041", - "https://github.com/iamrahulmahato/master-web-development/pull/400", - "https://github.com/iamrahulmahato/master-web-development/pull/248", - "https://github.com/iamrahulmahato/master-web-development/pull/199", - "https://github.com/Vimall03/Alimento/pull/22", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/213", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/353", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1191", - "https://github.com/GSSoC24/Postman-Challenge/pull/2178" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141727239?v=4", - "login": "SimranShaikh20", - "url": "https://github.com/SimranShaikh20", - "score": 735, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/941", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/459", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/70", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/61", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/576", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/525", - "https://github.com/AlgoGenesis/C/pull/1318", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/69", - "https://github.com/recodehive/machine-learning-repos/pull/1435", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/393", - "https://github.com/recodehive/Scrape-ML/pull/264", - "https://github.com/UTSAVS26/PyVerse/pull/889", - "https://github.com/UTSAVS26/PyVerse/pull/685", - "https://github.com/GSSoC24/Postman-Challenge/pull/1880" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-13", - "2024-10-14", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177013093?u=735628efb4273f9cc70bab653fba806d9ea31ce7&v=4", - "login": "Himanshu-kumar025", - "url": "https://github.com/Himanshu-kumar025", - "score": 735, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/483", - "https://github.com/ankit071105/Ticket-Booking/pull/457", - "https://github.com/anuj123upadhyay/MegaBlog/pull/259", - "https://github.com/anuragverma108/SwapReads/pull/3650", - "https://github.com/ayush-that/FinVeda/pull/1717", - "https://github.com/ayush-that/FinVeda/pull/1675", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/624", - "https://github.com/Bitbox-Connect/Bitbox/pull/176", - "https://github.com/Bitbox-Connect/Bitbox/pull/132", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/358", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/317", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/310", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/306", - "https://github.com/PriyaGhosal/BuddyTrail/pull/672", - "https://github.com/Yashgabani845/hiring-portal/pull/170", - "https://github.com/apu52/Travel_Website/pull/1563", - "https://github.com/GSSoC24/Postman-Challenge/pull/2926" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175419066?u=3351f452be3f7336bbb1a6c9c4a7c9cfe935e6fe&v=4", - "login": "snehas-05", - "url": "https://github.com/snehas-05", - "score": 735, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/426", - "https://github.com/vishanurag/Canvas-Editor/pull/1066", - "https://github.com/dhairyagothi/StationGuide/pull/327", - "https://github.com/andoriyaprashant/DevDocsHub/pull/98", - "https://github.com/iamrahulmahato/master-web-development/pull/1448", - "https://github.com/recodehive/machine-learning-repos/pull/1436", - "https://github.com/SurajPratap10/Imagine_AI/pull/1251", - "https://github.com/swarooppatilx/scruter/pull/225", - "https://github.com/Vimall03/Alimento/pull/130", - "https://github.com/apu52/METAVERSE/pull/1286", - "https://github.com/UTSAVS26/PyVerse/pull/548", - "https://github.com/GSSoC24/Postman-Challenge/pull/2665" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138625491?u=0643be99fceead0e311d2ec1c907ef593b2ed419&v=4", - "login": "varma-101", - "url": "https://github.com/varma-101", - "score": 730, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/58", - "https://github.com/ankit071105/Ticket-Booking/pull/403", - "https://github.com/arjunatapadkar/codeteria/pull/147", - "https://github.com/Bitbox-Connect/Bitbox/pull/179", - "https://github.com/Luson045/medi-connect/pull/291", - "https://github.com/Luson045/medi-connect/pull/222", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1200", - "https://github.com/recodehive/awesome-github-profiles/pull/929", - "https://github.com/Scribbie-Notes/notes-app/pull/207", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/94", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/91", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1197", - "https://github.com/GSSoC24/Postman-Challenge/pull/2673" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-11", - "2024-10-14", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98393445?u=a6b68f8d1a99c58c8f0b070e10922e9861ebe35c&v=4", - "login": "AayushiJapsare15", - "url": "https://github.com/AayushiJapsare15", - "score": 730, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/515", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/514", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/513", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/330", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/116", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/246", - "https://github.com/GSSoC24/Postman-Challenge/pull/2798" - ], - "pr_dates": ["2024-10-09", "2024-10-23", "2024-10-24", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149749700?u=577047865a85446dc0371a953e3633e01b986090&v=4", - "login": "PATILYASHH", - "url": "https://github.com/PATILYASHH", - "score": 730, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/173", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/8", - "https://github.com/ANSHIKA-26/WordWise/pull/628", - "https://github.com/ANSHIKA-26/WordWise/pull/162", - "https://github.com/ANSHIKA-26/WordWise/pull/101", - "https://github.com/ANSHIKA-26/WordWise/pull/5", - "https://github.com/vishanurag/Canvas-Editor/pull/850", - "https://github.com/ayush-that/FinVeda/pull/2545", - "https://github.com/PriyaGhosal/BuddyTrail/pull/213", - "https://github.com/PriyaGhosal/BuddyTrail/pull/112", - "https://github.com/iamrahulmahato/master-web-development/pull/47", - "https://github.com/Vimall03/Alimento/pull/51", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1116", - "https://github.com/GSSoC24/Postman-Challenge/pull/2469" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-22", - "2024-10-26", - "2024-10-31", - "2024-11-01" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165953910?u=627fd22098ce76062f8101b90fd44eb351eca4e8&v=4", - "login": "Panchadip-128", - "url": "https://github.com/Panchadip-128", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/950", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/278", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/255", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/524", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/465", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/464", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/450", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/443", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1152", - "https://github.com/recodehive/machine-learning-repos/pull/1523", - "https://github.com/recodehive/machine-learning-repos/pull/1487", - "https://github.com/GSSoC24/Postman-Challenge/pull/2339" - ], - "pr_dates": [ - "2024-10-18", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-25" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132484553?v=4", - "login": "Subashree-selvaraj", - "url": "https://github.com/Subashree-selvaraj", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/708", - "https://github.com/ajay-dhangar/algo/pull/1390", - "https://github.com/ajay-dhangar/algo/pull/1379", - "https://github.com/ajay-dhangar/algo/pull/654", - "https://github.com/ajay-dhangar/algo/pull/445", - "https://github.com/vishanurag/Canvas-Editor/pull/871", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/177", - "https://github.com/mansiruhil13/Bobble-AI/pull/285", - "https://github.com/iamrahulmahato/master-web-development/pull/1960", - "https://github.com/iamrahulmahato/master-web-development/pull/1914", - "https://github.com/iamrahulmahato/master-web-development/pull/1554", - "https://github.com/iamrahulmahato/master-web-development/pull/1007", - "https://github.com/recodehive/awesome-github-profiles/pull/1067", - "https://github.com/GSSoC24/Postman-Challenge/pull/2114" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173657051?u=e4aae288c755644e7979fe72d69ee95a190831e6&v=4", - "login": "Aman-G-upta", - "url": "https://github.com/Aman-G-upta", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/618", - "https://github.com/ANSHIKA-26/WordWise/pull/1581", - "https://github.com/anuragverma108/SwapReads/pull/4187", - "https://github.com/anuragverma108/SwapReads/pull/4128", - "https://github.com/vishanurag/Canvas-Editor/pull/1115", - "https://github.com/vishanurag/Canvas-Editor/pull/1088", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/71", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/246", - "https://github.com/ayush-that/FinVeda/pull/2503", - "https://github.com/dhairyagothi/StationGuide/pull/452", - "https://github.com/Bitbox-Connect/Bitbox/pull/269", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/700", - "https://github.com/recodehive/awesome-github-profiles/pull/1139", - "https://github.com/daccotta-org/daccotta/pull/282", - "https://github.com/multiverseweb/CodeIt/pull/263", - "https://github.com/visheshrwl/Uber-like/pull/82", - "https://github.com/Yashgabani845/hiring-portal/pull/253", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/159", - "https://github.com/GSSoC24/Postman-Challenge/pull/2018" - ], - "pr_dates": [ - "2024-10-23", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112176838?u=3b13ad6bccbc6c02f32b5327ec47f0d71ad8acbf&v=4", - "login": "Rohit72099", - "url": "https://github.com/Rohit72099", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/516", - "https://github.com/ankit071105/Ticket-Booking/pull/834", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/928", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/796", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/651", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/568", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/526", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/503", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/447", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/436", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/426", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/424", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/417", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/699", - "https://github.com/GSSoC24/Postman-Challenge/pull/2459" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-19", - "2024-10-23", - "2024-10-26", - "2024-10-29", - "2024-10-30" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153301830?u=f3de0ad1f332a8cd2298a90adab311b01585abe1&v=4", - "login": "eshaalal", - "url": "https://github.com/eshaalal", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/939", - "https://github.com/SurajPratap10/Imagine_AI/pull/1216", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/813", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/668", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/585", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/560", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/534", - "https://github.com/Yashgabani845/hiring-portal/pull/110", - "https://github.com/GSSoC24/Postman-Challenge/pull/2053" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142585725?u=07719ea7bc9994211ea7e3742ca4a99ddf7628b1&v=4", - "login": "tannuiscoding", - "url": "https://github.com/tannuiscoding", - "score": 725, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AmateursLeague/sneaky-package/pull/183", - "https://github.com/AmateursLeague/sneaky-package/pull/155", - "https://github.com/AmateursLeague/sneaky-package/pull/148", - "https://github.com/AmateursLeague/sneaky-package/pull/119", - "https://github.com/AmateursLeague/sneaky-package/pull/112", - "https://github.com/AmateursLeague/sneaky-package/pull/110", - "https://github.com/AmateursLeague/sneaky-package/pull/106", - "https://github.com/AmateursLeague/sneaky-package/pull/90", - "https://github.com/AmateursLeague/sneaky-package/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/1817" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96826085?u=3e0be583d273d3621edf4ed7308da7bb02ab2f41&v=4", - "login": "Amarjha01", - "url": "https://github.com/Amarjha01", - "score": 720, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/121", - "https://github.com/arjunatapadkar/codeteria/pull/214", - "https://github.com/divyansh-2005/FinNews/pull/49", - "https://github.com/divyansh-2005/FinNews/pull/46", - "https://github.com/PriyaGhosal/BuddyTrail/pull/712", - "https://github.com/PriyaGhosal/BuddyTrail/pull/443", - "https://github.com/SanchitGeez/Investra/pull/65", - "https://github.com/SanchitGeez/Investra/pull/64", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/230", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/131", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/35", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/23", - "https://github.com/GSSoC24/Postman-Challenge/pull/2302" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-10", - "2024-10-15", - "2024-10-20", - "2024-10-21", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120154741?u=67dfbdc356f44009ffa2b1f619ff3e8cd33c3faf&v=4", - "login": "Edasgh", - "url": "https://github.com/Edasgh", - "score": 720, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/577", - "https://github.com/ankit071105/Ticket-Booking/pull/573", - "https://github.com/ankit071105/Ticket-Booking/pull/532", - "https://github.com/anuj123upadhyay/MegaBlog/pull/304", - "https://github.com/codeaashu/DevDisplay/pull/407", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/480", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/563", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/511", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/958", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/375", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1212", - "https://github.com/GSSoC24/Postman-Challenge/pull/1839" - ], - "pr_dates": [ - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-27", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107384357?u=0c1e6e125fbacabf2b2865345db1ad26c95295a5&v=4", - "login": "Niraj1608", - "url": "https://github.com/Niraj1608", - "score": 720, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/421", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/392", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/504", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/418", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/405", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/403", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/391", - "https://github.com/recodehive/machine-learning-repos/pull/1459", - "https://github.com/UTSAVS26/PyVerse/pull/778", - "https://github.com/UTSAVS26/PyVerse/pull/680", - "https://github.com/GSSoC24/Postman-Challenge/pull/2365" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157399068?u=c7025ec4c0deb71508445512f50bf11ba603c3ae&v=4", - "login": "yehiarasheed", - "url": "https://github.com/yehiarasheed", - "score": 720, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/andoriyaprashant/OpSo/pull/353", - "https://github.com/andoriyaprashant/OpSo/pull/331", - "https://github.com/recodehive/awesome-github-profiles/pull/1105", - "https://github.com/recodehive/awesome-github-profiles/pull/1073", - "https://github.com/recodehive/awesome-github-profiles/pull/1066", - "https://github.com/recodehive/awesome-github-profiles/pull/958", - "https://github.com/recodehive/awesome-github-profiles/pull/855", - "https://github.com/recodehive/awesome-github-profiles/pull/850", - "https://github.com/recodehive/awesome-github-profiles/pull/707", - "https://github.com/recodehive/awesome-github-profiles/pull/706", - "https://github.com/yagnik2411/Quiz-Genius/pull/56", - "https://github.com/GSSoC24/Postman-Challenge/pull/1789" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-24", - "2024-10-25", - "2024-10-26" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120377576?u=c44bb22a72c3daf3550e0e5ffd4bb8328abd2d8d&v=4", - "login": "AKSHITHA-CHILUKA", - "url": "https://github.com/AKSHITHA-CHILUKA", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/762", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/182", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/392", - "https://github.com/c0sm0void/ReVot/pull/11", - "https://github.com/ombhojane/explainableai/pull/39", - "https://github.com/ombhojane/explainableai/pull/35", - "https://github.com/UTSAVS26/PyVerse/pull/474", - "https://github.com/UTSAVS26/PyVerse/pull/229", - "https://github.com/UTSAVS26/PyVerse/pull/94", - "https://github.com/UTSAVS26/PyVerse/pull/55", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1284", - "https://github.com/GSSoC24/Postman-Challenge/pull/2108" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-07", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-16", - "2024-10-24", - "2024-11-02" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105191744?u=ffddbd27794dd0ed87995762d9f71f5b8b64e89d&v=4", - "login": "SurajPrakash24", - "url": "https://github.com/SurajPrakash24", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/222", - "https://github.com/yatulearn/yatulearn/pull/85", - "https://github.com/anki2003ta/Museum/pull/122", - "https://github.com/anuj123upadhyay/MegaBlog/pull/155", - "https://github.com/anuj123upadhyay/MegaBlog/pull/117", - "https://github.com/dhairyagothi/StationGuide/pull/224", - "https://github.com/kartikayasijaa/talk-trove/pull/31", - "https://github.com/Kritika30032002/Blog_Website/pull/209", - "https://github.com/subhadipbhowmik/bio-branch/pull/156", - "https://github.com/subhadipbhowmik/bio-branch/pull/33", - "https://github.com/GSSoC24/Postman-Challenge/pull/1847" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-17", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166915051?u=642de016fbb014819ea651ee310fe097afa74113&v=4", - "login": "harshbhardwaj000", - "url": "https://github.com/harshbhardwaj000", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/517", - "https://github.com/ankit071105/Ticket-Booking/pull/438", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/426", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/285", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/258", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/240", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/201", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/178", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/62", - "https://github.com/GSSoC24/Postman-Challenge/pull/2598" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-12", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-21", - "2024-10-23", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101658241?u=c6e5468e848438bf00dd8bce81820d29e332e57f&v=4", - "login": "Anushka-Pote", - "url": "https://github.com/Anushka-Pote", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1237", - "https://github.com/vishanurag/Canvas-Editor/pull/1009", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/385", - "https://github.com/ayush-that/FinVeda/pull/1702", - "https://github.com/kom-senapati/bot-verse/pull/206", - "https://github.com/Yashgabani845/hiring-portal/pull/256", - "https://github.com/apu52/METAVERSE/pull/1303", - "https://github.com/UTSAVS26/PyVerse/pull/872", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1233", - "https://github.com/GSSoC24/Postman-Challenge/pull/2527" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154252045?u=6b6771355653ac46b783a1587087084e224d6c7c&v=4", - "login": "swatified", - "url": "https://github.com/swatified", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/165", - "https://github.com/himeshparashar/Social-Morph/pull/170", - "https://github.com/himeshparashar/Social-Morph/pull/149", - "https://github.com/himeshparashar/Social-Morph/pull/137", - "https://github.com/himeshparashar/Social-Morph/pull/69", - "https://github.com/Vin205/Enyanjyoti/pull/76", - "https://github.com/Vin205/Enyanjyoti/pull/36", - "https://github.com/GSSoC24/Postman-Challenge/pull/2498", - "https://github.com/GSSoC24/Postman-Challenge/pull/2450" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-19", - "2024-10-21", - "2024-10-25", - "2024-10-26", - "2024-10-27" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153442145?u=bda408e9b8c9e67fb1fa73bb33dae63c7db690eb&v=4", - "login": "Abhishek-TG18", - "url": "https://github.com/Abhishek-TG18", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/313", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/216", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/169", - "https://github.com/Anjaliavv51/Retro/pull/341", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/124", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/42", - "https://github.com/GSSoC24/Postman-Challenge/pull/3076" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109151752?u=af72a027419110d7b57c918fe970218c9d48b943&v=4", - "login": "HarshitShukla-dev", - "url": "https://github.com/HarshitShukla-dev", - "score": 715, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/4", - "https://github.com/Puskar-Roy/create-my-api/pull/60", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/10", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/6", - "https://github.com/vansh-codes/Gityzer/pull/13", - "https://github.com/vansh-codes/ChaosWeb/pull/78", - "https://github.com/GSSoC24/Postman-Challenge/pull/1930" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-07", - "2024-10-10", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175831399?v=4", - "login": "Priyank00007", - "url": "https://github.com/Priyank00007", - "score": 710, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/738", - "https://github.com/ankit071105/Ticket-Booking/pull/538", - "https://github.com/ankit071105/Ticket-Booking/pull/494", - "https://github.com/vishanurag/Canvas-Editor/pull/505", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/491", - "https://github.com/mansiruhil13/Bobble-AI/pull/572", - "https://github.com/mansiruhil13/Bobble-AI/pull/457", - "https://github.com/mansiruhil13/Bobble-AI/pull/450", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1259", - "https://github.com/GSSoC24/Postman-Challenge/pull/2124" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-16", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91840205?u=9b6cff6fdb1ae9163e9525d81d6e7429f4d4e164&v=4", - "login": "coderKrysio", - "url": "https://github.com/coderKrysio", - "score": 710, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anmode/grabtern-frontend/pull/889", - "https://github.com/codeaashu/DevDisplay/pull/226", - "https://github.com/mdazfar2/Ezyshop/pull/306", - "https://github.com/TherkuTech/tturl/pull/99", - "https://github.com/Rakshit-gen/Slanine/pull/51", - "https://github.com/recodehive/awesome-github-profiles/pull/1132", - "https://github.com/subhadeeproy3902/trailgo/pull/116", - "https://github.com/GSSoC24/Postman-Challenge/pull/2416" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-16", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178704512?u=f9a3ce06f57ebe382c59cfd7facd0c2bcd5653cd&v=4", - "login": "a-n-u-vanguri", - "url": "https://github.com/a-n-u-vanguri", - "score": 705, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/578", - "https://github.com/Jiggy9/JCT/pull/87", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/458", - "https://github.com/c0sm0void/ReVot/pull/101", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/53", - "https://github.com/iamrahulmahato/master-web-development/pull/1887", - "https://github.com/Rakshit-gen/Slanine/pull/95", - "https://github.com/Ratnesh-Team/Rehabify/pull/139", - "https://github.com/recodehive/awesome-github-profiles/pull/1060", - "https://github.com/multiverseweb/CodeIt/pull/250", - "https://github.com/Vimall03/Alimento/pull/150", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/115", - "https://github.com/UTSAVS26/PyVerse/pull/874", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1155", - "https://github.com/GSSoC24/Postman-Challenge/pull/2231" - ], - "pr_dates": [ - "2024-10-17", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115402296?u=7b8682321182bd8e536534fb2214d7ec099b8e71&v=4", - "login": "SpreadSheets600", - "url": "https://github.com/SpreadSheets600", - "score": 705, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/245", - "https://github.com/UTSAVS26/PySnippets/pull/159", - "https://github.com/UTSAVS26/PySnippets/pull/130", - "https://github.com/UTSAVS26/PySnippets/pull/112", - "https://github.com/UTSAVS26/PySnippets/pull/58", - "https://github.com/UTSAVS26/PySnippets/pull/35", - "https://github.com/UTSAVS26/PySnippets/pull/19", - "https://github.com/UTSAVS26/PyVerse/pull/544", - "https://github.com/UTSAVS26/PyVerse/pull/276", - "https://github.com/UTSAVS26/PyVerse/pull/193", - "https://github.com/GSSoC24/Postman-Challenge/pull/2917" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-21", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180281799?v=4", - "login": "siri-chandana-macha", - "url": "https://github.com/siri-chandana-macha", - "score": 700, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1272", - "https://github.com/ankit071105/Ticket-Booking/pull/516", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/344", - "https://github.com/dhairyagothi/StationGuide/pull/481", - "https://github.com/Harshdev098/Research-Nexas/pull/103", - "https://github.com/AlgoGenesis/C/pull/580", - "https://github.com/iamrahulmahato/master-web-development/pull/929", - "https://github.com/Akasxh/Terrain-Recognition/pull/31", - "https://github.com/vansh-codes/ChaosWeb/pull/151", - "https://github.com/Vimall03/Alimento/pull/137", - "https://github.com/Vimall03/Alimento/pull/99", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/119", - "https://github.com/Akshat111111/NexTrade/pull/58", - "https://github.com/Akshat111111/NexTrade/pull/53", - "https://github.com/GSSoC24/Postman-Challenge/pull/2142" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178461000?v=4", - "login": "sanikamandale17", - "url": "https://github.com/sanikamandale17", - "score": 700, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/617", - "https://github.com/ankit071105/Ticket-Booking/pull/400", - "https://github.com/vishanurag/Canvas-Editor/pull/1074", - "https://github.com/vishanurag/Canvas-Editor/pull/1064", - "https://github.com/ayush-that/FinVeda/pull/1231", - "https://github.com/iamrahulmahato/master-web-development/pull/1777", - "https://github.com/iamrahulmahato/master-web-development/pull/1573", - "https://github.com/iamrahulmahato/master-web-development/pull/1272", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/515", - "https://github.com/multiverseweb/CodeIt/pull/267", - "https://github.com/GSSoC24/Postman-Challenge/pull/2426" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-22", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113463013?u=0cf7c2f76ce7ff612bd01047729a1a687d2d6f2e&v=4", - "login": "kushwxha", - "url": "https://github.com/kushwxha", - "score": 700, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/278", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/333", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/289", - "https://github.com/Kota-Karthik/twinTrim/pull/31", - "https://github.com/Kota-Karthik/twinTrim/pull/30", - "https://github.com/param-code/counter-app/pull/85", - "https://github.com/param-code/counter-app/pull/24", - "https://github.com/iamrahulmahato/master-web-development/pull/1242", - "https://github.com/iamrahulmahato/master-web-development/pull/936", - "https://github.com/iamrahulmahato/master-web-development/pull/835", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/49", - "https://github.com/GSSoC24/Postman-Challenge/pull/2186" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161356906?u=679d6ea7e5c52aa6b01f9d8d9f458e91503cef02&v=4", - "login": "SohamDas00", - "url": "https://github.com/SohamDas00", - "score": 700, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1601", - "https://github.com/ayush-that/FinVeda/pull/1600", - "https://github.com/ayush-that/FinVeda/pull/1497", - "https://github.com/ayush-that/FinVeda/pull/1494", - "https://github.com/ayush-that/FinVeda/pull/1492", - "https://github.com/ayush-that/FinVeda/pull/1488", - "https://github.com/ayush-that/FinVeda/pull/1316", - "https://github.com/ayush-that/FinVeda/pull/1313", - "https://github.com/ayush-that/FinVeda/pull/1234", - "https://github.com/ayush-that/FinVeda/pull/1233", - "https://github.com/ayush-that/FinVeda/pull/1194", - "https://github.com/GSSoC24/Postman-Challenge/pull/1985" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138989960?u=b964e777ee956725f91fca97672de2b872e04eef&v=4", - "login": "Varunshiyam", - "url": "https://github.com/Varunshiyam", - "score": 700, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/92", - "https://github.com/Bitbox-Connect/Bitbox/pull/204", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/708", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/702", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/674", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/124", - "https://github.com/daccotta-org/daccotta/pull/256", - "https://github.com/Yashgabani845/hiring-portal/pull/252", - "https://github.com/UTSAVS26/PyVerse/pull/934", - "https://github.com/UTSAVS26/PyVerse/pull/930", - "https://github.com/UTSAVS26/PyVerse/pull/927", - "https://github.com/UTSAVS26/PyVerse/pull/868", - "https://github.com/UTSAVS26/PyVerse/pull/849", - "https://github.com/UTSAVS26/PyVerse/pull/732", - "https://github.com/UTSAVS26/PyVerse/pull/731", - "https://github.com/UTSAVS26/PyVerse/pull/697", - "https://github.com/UTSAVS26/PyVerse/pull/662", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1280", - "https://github.com/GSSoC24/Postman-Challenge/pull/2608" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01", - "2024-11-02" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123197632?u=e192d5a1de5dc867a7326c869590282087785be4&v=4", - "login": "AADESHak007", - "url": "https://github.com/AADESHak007", - "score": 695, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1597", - "https://github.com/ajay-dhangar/algo/pull/1182", - "https://github.com/ajay-dhangar/algo/pull/1172", - "https://github.com/ajay-dhangar/algo/pull/1120", - "https://github.com/ajay-dhangar/algo/pull/988", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/975", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/501", - "https://github.com/Bitbox-Connect/Bitbox/pull/315", - "https://github.com/Bitbox-Connect/Bitbox/pull/143", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1086", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1032", - "https://github.com/samyakmaitre/eventmint/pull/449", - "https://github.com/Scribbie-Notes/notes-app/pull/281", - "https://github.com/Scribbie-Notes/notes-app/pull/230", - "https://github.com/Scribbie-Notes/notes-app/pull/222", - "https://github.com/GSSoC24/Postman-Challenge/pull/2754" - ], - "pr_dates": [ - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-24", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121884549?u=20ea6fd45730dea0f0ba6134491095e25b977d08&v=4", - "login": "Archisman141", - "url": "https://github.com/Archisman141", - "score": 695, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/167", - "https://github.com/yatulearn/yatulearn/pull/347", - "https://github.com/vishanurag/Canvas-Editor/pull/291", - "https://github.com/ayush-that/FinVeda/pull/1054", - "https://github.com/PriyaGhosal/BuddyTrail/pull/87", - "https://github.com/subhadipbhowmik/bio-branch/pull/150", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/251", - "https://github.com/codervivek5/VigyBag/pull/2293", - "https://github.com/GSSoC24/Postman-Challenge/pull/2630" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154919910?v=4", - "login": "riyarane46", - "url": "https://github.com/riyarane46", - "score": 695, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/142", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/41", - "https://github.com/mdazfar2/Ezyshop/pull/188", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/225", - "https://github.com/dohinaf/basic-icecream-website/pull/226", - "https://github.com/dohinaf/basic-icecream-website/pull/174", - "https://github.com/iamrahulmahato/master-web-development/pull/720", - "https://github.com/UTSAVS26/PyVerse/pull/446", - "https://github.com/UTSAVS26/PyVerse/pull/355", - "https://github.com/UTSAVS26/PyVerse/pull/335", - "https://github.com/GSSoC24/Postman-Challenge/pull/2517" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127786136?u=c7e7c81b0e7c2238cc507fc3ed8b4efe4cae92f9&v=4", - "login": "Nkovaturient", - "url": "https://github.com/Nkovaturient", - "score": 695, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/260", - "https://github.com/GarimaSingh0109/WasteManagment/pull/58", - "https://github.com/Megh2005/Med-o-Next/pull/152", - "https://github.com/Megh2005/Med-o-Next/pull/96", - "https://github.com/samyakmaitre/eventmint/pull/12", - "https://github.com/subhadipbhowmik/bio-branch/pull/21", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/372", - "https://github.com/GSSoC24/Postman-Challenge/pull/2335" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-10", - "2024-10-15", - "2024-10-23", - "2024-10-25", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174188123?u=50b0a8b1cba17a335a837e4e43a29b90fe8fa927&v=4", - "login": "Saaarthak0102", - "url": "https://github.com/Saaarthak0102", - "score": 690, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1165", - "https://github.com/ajay-dhangar/algo/pull/902", - "https://github.com/ajay-dhangar/algo/pull/388", - "https://github.com/param-code/counter-app/pull/230", - "https://github.com/param-code/counter-app/pull/203", - "https://github.com/param-code/counter-app/pull/182", - "https://github.com/param-code/counter-app/pull/180", - "https://github.com/param-code/counter-app/pull/168", - "https://github.com/param-code/counter-app/pull/158", - "https://github.com/param-code/counter-app/pull/137", - "https://github.com/param-code/counter-app/pull/121", - "https://github.com/GSSoC24/Postman-Challenge/pull/1888" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-21", - "2024-10-22" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154732324?u=dd357e8c8a0b6bc8a116c2fce9b7715ce2f7031d&v=4", - "login": "Hemraj-7", - "url": "https://github.com/Hemraj-7", - "score": 690, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/385", - "https://github.com/ANSHIKA-26/WordWise/pull/377", - "https://github.com/ANSHIKA-26/WordWise/pull/335", - "https://github.com/ANSHIKA-26/WordWise/pull/301", - "https://github.com/codeaashu/DevDisplay/pull/283", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/949", - "https://github.com/divyansh-2005/FinNews/pull/177", - "https://github.com/jahnvisahni31/DesignDeck/pull/224", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/261", - "https://github.com/mansiruhil13/Bobble-AI/pull/367", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1714", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/371", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1193", - "https://github.com/GSSoC24/Postman-Challenge/pull/1974" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-21", - "2024-10-23", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143019512?u=3d73e0263c70ca46d923e30b4e8af5afcf3b1ae4&v=4", - "login": "pragyanbhatt1213", - "url": "https://github.com/pragyanbhatt1213", - "score": 690, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3269", - "https://github.com/dhairyagothi/StationGuide/pull/351", - "https://github.com/dhairyagothi/StationGuide/pull/333", - "https://github.com/dhairyagothi/StationGuide/pull/245", - "https://github.com/dhairyagothi/StationGuide/pull/227", - "https://github.com/dhairyagothi/StationGuide/pull/176", - "https://github.com/GSSoC24/Postman-Challenge/pull/2488" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-19", - "2024-10-21", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114330367?u=37afe7508a882e57cde6a04d0d2b4fb0d186e6d9&v=4", - "login": "Lonwwolf14", - "url": "https://github.com/Lonwwolf14", - "score": 690, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/65", - "https://github.com/dohinaf/basic-icecream-website/pull/94", - "https://github.com/param-code/counter-app/pull/55", - "https://github.com/param-code/counter-app/pull/20", - "https://github.com/param-code/counter-app/pull/14", - "https://github.com/iamrahulmahato/master-web-development/pull/937", - "https://github.com/iamrahulmahato/master-web-development/pull/614", - "https://github.com/iamrahulmahato/master-web-development/pull/609", - "https://github.com/iamrahulmahato/master-web-development/pull/597", - "https://github.com/iamrahulmahato/master-web-development/pull/506", - "https://github.com/iamrahulmahato/master-web-development/pull/497", - "https://github.com/GSSoC24/Postman-Challenge/pull/2785" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103362239?v=4", - "login": "sanjay14073", - "url": "https://github.com/sanjay14073", - "score": 690, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/81", - "https://github.com/Puskar-Roy/create-my-api/pull/126", - "https://github.com/Puskar-Roy/create-my-api/pull/65", - "https://github.com/Puskar-Roy/create-my-api/pull/59", - "https://github.com/Puskar-Roy/create-my-api/pull/49", - "https://github.com/Ratnesh-Team/Rehabify/pull/137", - "https://github.com/Ratnesh-Team/Rehabify/pull/124", - "https://github.com/GSSoC24/Postman-Challenge/pull/2759" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-06", - "2024-10-10", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140707297?u=40651b3e2f134095ce43ab8d871c3dce98edb9e5&v=4", - "login": "rishabhrawat05", - "url": "https://github.com/rishabhrawat05", - "score": 685, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/889", - "https://github.com/ajaynegi45/LibraryMan-API/pull/67", - "https://github.com/ayush-that/FinVeda/pull/1285", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/42", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/90", - "https://github.com/Git21221/form-snippet/pull/33", - "https://github.com/Git21221/form-snippet/pull/31", - "https://github.com/soham0005/ElectroKart/pull/44", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/566", - "https://github.com/GSSoC24/Postman-Challenge/pull/2845" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-17", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114801597?u=2ce3a8038847f904c0fa142bc29e0dcd3036daa4&v=4", - "login": "khurshed07", - "url": "https://github.com/khurshed07", - "score": 680, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1090", - "https://github.com/ajay-dhangar/algo/pull/883", - "https://github.com/ajay-dhangar/algo/pull/881", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/456", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/495", - "https://github.com/mansiruhil13/Bobble-AI/pull/249", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/334", - "https://github.com/AlgoGenesis/C/pull/1043", - "https://github.com/Vin205/Enyanjyoti/pull/504", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1095", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1093", - "https://github.com/GSSoC24/Postman-Challenge/pull/1886", - "https://github.com/kvcops/KV-Nexus/pull/40" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-13", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177725578?u=9502f058a81f107cc76210e63e4b4736de9db9fb&v=4", - "login": "ruchikakengal", - "url": "https://github.com/ruchikakengal", - "score": 680, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/181", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/161", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/218", - "https://github.com/Mohit5Upadhyay/WeatherApplication/pull/72", - "https://github.com/GSSoC24/Postman-Challenge/pull/1946" - ], - "pr_dates": ["2024-10-04", "2024-10-07", "2024-10-08", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137269309?u=9f5e427bc582369003c5cadad63afaf5d41f63d7&v=4", - "login": "Web-Dev-Learner", - "url": "https://github.com/Web-Dev-Learner", - "score": 675, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/67", - "https://github.com/ANSHIKA-26/WordWise/pull/114", - "https://github.com/vishanurag/Canvas-Editor/pull/14", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/86", - "https://github.com/mansiruhil13/Bobble-AI/pull/106", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/61", - "https://github.com/GSSoC24/Postman-Challenge/pull/1991" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120712500?u=80542cf03c22931775c7f900b404f2e2982acfc1&v=4", - "login": "Tusharb331", - "url": "https://github.com/Tusharb331", - "score": 675, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/996", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/262", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/110", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/527", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/526", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/449", - "https://github.com/iamrahulmahato/master-web-development/pull/1663", - "https://github.com/recodehive/awesome-github-profiles/pull/949", - "https://github.com/recodehive/awesome-github-profiles/pull/934", - "https://github.com/UTSAVS26/PyVerse/pull/722", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1168", - "https://github.com/GSSoC24/Postman-Challenge/pull/2220" - ], - "pr_dates": [ - "2024-10-18", - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88110289?u=774ca04babc7991ef058be74f5f6591098e299a8&v=4", - "login": "rees8", - "url": "https://github.com/rees8", - "score": 675, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/970", - "https://github.com/ajay-dhangar/algo/pull/596", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/254", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1000", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/902", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/641", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/564", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/493", - "https://github.com/Anjaliavv51/Retro/pull/16", - "https://github.com/iamrahulmahato/master-web-development/pull/1557", - "https://github.com/iamrahulmahato/master-web-development/pull/1072", - "https://github.com/iamrahulmahato/master-web-development/pull/244", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/35", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/35", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1073", - "https://github.com/GSSoC24/Postman-Challenge/pull/2003" - ], - "pr_dates": [ - "2024-09-30", - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-21", - "2024-10-23", - "2024-10-25", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99080079?u=6ccce668741bc38356948b68c26874fda34569a9&v=4", - "login": "SumitSahu44", - "url": "https://github.com/SumitSahu44", - "score": 675, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/243", - "https://github.com/ankit071105/Ticket-Booking/pull/212", - "https://github.com/ankit071105/Ticket-Booking/pull/153", - "https://github.com/ankit071105/Ticket-Booking/pull/149", - "https://github.com/ankit071105/Ticket-Booking/pull/94", - "https://github.com/dohinaf/basic-icecream-website/pull/332", - "https://github.com/Vimall03/Alimento/pull/133", - "https://github.com/Vimall03/Alimento/pull/107", - "https://github.com/GSSoC24/Postman-Challenge/pull/2567" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-15", - "2024-10-19", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155791058?u=dfd5a527353cc328ce22868722f01a26d04aac3c&v=4", - "login": "banasmita24", - "url": "https://github.com/banasmita24", - "score": 675, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3319", - "https://github.com/ayush-that/FinVeda/pull/1399", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/185", - "https://github.com/andoriyaprashant/OpSo/pull/387", - "https://github.com/iamrahulmahato/master-web-development/pull/1214", - "https://github.com/subhadipbhowmik/bio-branch/pull/231", - "https://github.com/swarooppatilx/scruter/pull/160", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/106", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/317", - "https://github.com/Akshat111111/NexTrade/pull/51", - "https://github.com/GSSoC24/Postman-Challenge/pull/2153" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-20", - "2024-10-21", - "2024-10-24", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102900421?u=0fa5819057cdacca8903236d411523cf93e91abf&v=4", - "login": "2004pra", - "url": "https://github.com/2004pra", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/570", - "https://github.com/anuragverma108/SwapReads/pull/4179", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/319", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/233", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1615", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1473", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1066", - "https://github.com/PriyaGhosal/BuddyTrail/pull/900", - "https://github.com/PriyaGhosal/BuddyTrail/pull/855", - "https://github.com/iamrahulmahato/master-web-development/pull/1560", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1016", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1014", - "https://github.com/GSSoC24/Postman-Challenge/pull/2046" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153705031?u=5baa2e82a94bffe15f0302e846dc0832638c2ae9&v=4", - "login": "riyaa060", - "url": "https://github.com/riyaa060", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1529", - "https://github.com/ajay-dhangar/algo/pull/1522", - "https://github.com/ajay-dhangar/algo/pull/1076", - "https://github.com/ajay-dhangar/algo/pull/1072", - "https://github.com/ajay-dhangar/algo/pull/934", - "https://github.com/ajay-dhangar/algo/pull/923", - "https://github.com/ajay-dhangar/algo/pull/917", - "https://github.com/ajay-dhangar/algo/pull/891", - "https://github.com/ajay-dhangar/algo/pull/838", - "https://github.com/ajay-dhangar/algo/pull/828", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/587", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/426", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/423", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/377", - "https://github.com/GSSoC24/Postman-Challenge/pull/2467" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170311104?u=b3a13f1b6e75da41fa7cf14196d13a8494cb0665&v=4", - "login": "daky2024", - "url": "https://github.com/daky2024", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/240", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/150", - "https://github.com/dhairyagothi/StationGuide/pull/361", - "https://github.com/dhairyagothi/StationGuide/pull/253", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1106", - "https://github.com/GSSoC24/Postman-Challenge/pull/2431" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-14", - "2024-10-15", - "2024-10-21", - "2024-10-26", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84080312?u=0bb3bc73646c2e9ecee2bb04ee92dcc2b746c9d1&v=4", - "login": "sanyadureja", - "url": "https://github.com/sanyadureja", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/172", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/90", - "https://github.com/recodehive/machine-learning-repos/pull/1578", - "https://github.com/recodehive/machine-learning-repos/pull/1248", - "https://github.com/recodehive/machine-learning-repos/pull/1229", - "https://github.com/Shreyaa173/Code-Book/pull/120", - "https://github.com/yashasvini121/predictive-calc/pull/185", - "https://github.com/yashasvini121/predictive-calc/pull/39", - "https://github.com/GSSoC24/Postman-Challenge/pull/2123" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-07", - "2024-10-11", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138603502?v=4", - "login": "ShaikHafiza", - "url": "https://github.com/ShaikHafiza", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3907", - "https://github.com/anuragverma108/SwapReads/pull/3373", - "https://github.com/anuragverma108/SwapReads/pull/3357", - "https://github.com/ayush-that/FinVeda/pull/1556", - "https://github.com/Luson045/medi-connect/pull/303", - "https://github.com/PriyaGhosal/BuddyTrail/pull/913", - "https://github.com/PriyaGhosal/BuddyTrail/pull/865", - "https://github.com/PriyaGhosal/BuddyTrail/pull/849", - "https://github.com/iamrahulmahato/master-web-development/pull/1522", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/592", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1196", - "https://github.com/GSSoC24/Postman-Challenge/pull/2753" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-13", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132823654?u=98187271935190a17974ace30282931ce4544322&v=4", - "login": "akmaurya7", - "url": "https://github.com/akmaurya7", - "score": 670, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vishwajith-Shettigar/NextGen/pull/127", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/101", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/95", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/91", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/84", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/78", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/72", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/71", - "https://github.com/GSSoC24/Postman-Challenge/pull/2255" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130541940?u=fe4e76e7f4e01dec393898343cd6c6e5ab0a296d&v=4", - "login": "rudrapratap63", - "url": "https://github.com/rudrapratap63", - "score": 665, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/49", - "https://github.com/ankit071105/Ticket-Booking/pull/263", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/234", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/231", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/228", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/227", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/225", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/224", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/221", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/217", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/213", - "https://github.com/Kritika30032002/Blog_Website/pull/216", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/98", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/72", - "https://github.com/AlgoGenesis/C/pull/463", - "https://github.com/iamrahulmahato/master-web-development/pull/820", - "https://github.com/iamrahulmahato/master-web-development/pull/659", - "https://github.com/iamrahulmahato/master-web-development/pull/658", - "https://github.com/TejasNasre/nexmeet/pull/70" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-15" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171240814?v=4", - "login": "saadgibawa", - "url": "https://github.com/saadgibawa", - "score": 665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/443", - "https://github.com/Ramsey99/Admin_Dashboard/pull/102", - "https://github.com/vishanurag/Canvas-Editor/pull/303", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/337", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/243", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/157", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/108", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/24", - "https://github.com/4darsh-Dev/DecenTrade/pull/101", - "https://github.com/GSSoC24/Postman-Challenge/pull/2435" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-04", - "2024-10-08", - "2024-10-15", - "2024-10-20", - "2024-10-26", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142368095?u=b9e51f6f3283c3844c8641631efa6b75f90d550c&v=4", - "login": "shivisingh25", - "url": "https://github.com/shivisingh25", - "score": 665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/500", - "https://github.com/ANSHIKA-26/WordWise/pull/965", - "https://github.com/ayush-that/FinVeda/pull/2026", - "https://github.com/PriyaGhosal/BuddyTrail/pull/753", - "https://github.com/iamrahulmahato/master-web-development/pull/1369", - "https://github.com/iamrahulmahato/master-web-development/pull/1336", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/539", - "https://github.com/GSSoC24/Postman-Challenge/pull/2708" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-22", - "2024-10-25", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152475026?u=38add0d6a4908d90bebc545aa74ca13aef243c2b&v=4", - "login": "Ujjwal5705", - "url": "https://github.com/Ujjwal5705", - "score": 665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/173", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/122", - "https://github.com/PriyaGhosal/BuddyTrail/pull/714", - "https://github.com/PriyaGhosal/BuddyTrail/pull/666", - "https://github.com/PriyaGhosal/BuddyTrail/pull/646", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/235", - "https://github.com/vansh-codes/ChaosWeb/pull/90", - "https://github.com/GSSoC24/Postman-Challenge/pull/2561" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175952075?u=948d3ea0bfe178104273d252a0b0200f4a03b75a&v=4", - "login": "srajangupta144", - "url": "https://github.com/srajangupta144", - "score": 665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1945", - "https://github.com/iamrahulmahato/master-web-development/pull/1930", - "https://github.com/iamrahulmahato/master-web-development/pull/1907", - "https://github.com/iamrahulmahato/master-web-development/pull/1819", - "https://github.com/iamrahulmahato/master-web-development/pull/1802", - "https://github.com/iamrahulmahato/master-web-development/pull/1785", - "https://github.com/iamrahulmahato/master-web-development/pull/566", - "https://github.com/GSSoC24/Postman-Challenge/pull/2043" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-23", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96660041?u=5f1a3138b52d278b1f38164d42acefee53e413be&v=4", - "login": "AkankshaSinghK", - "url": "https://github.com/AkankshaSinghK", - "score": 665, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/243", - "https://github.com/soham0005/ElectroKart/pull/114", - "https://github.com/soham0005/ElectroKart/pull/87", - "https://github.com/soham0005/ElectroKart/pull/76", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/155", - "https://github.com/GSSoC24/Postman-Challenge/pull/1831" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-07", - "2024-10-09", - "2024-10-17", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154718796?v=4", - "login": "sindhuja184", - "url": "https://github.com/sindhuja184", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/100", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/87", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1048", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1431", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1354", - "https://github.com/recodehive/awesome-github-profiles/pull/1061", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/316", - "https://github.com/UTSAVS26/PyVerse/pull/683", - "https://github.com/GSSoC24/Postman-Challenge/pull/2739" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-17", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-29", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110531153?v=4", - "login": "BaraniVA", - "url": "https://github.com/BaraniVA", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/67", - "https://github.com/anuragverma108/SwapReads/pull/3090", - "https://github.com/anuragverma108/SwapReads/pull/2940", - "https://github.com/anuragverma108/SwapReads/pull/2916", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/410", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/124", - "https://github.com/GSSoC24/Postman-Challenge/pull/1952" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164632028?v=4", - "login": "avisha191", - "url": "https://github.com/avisha191", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1067", - "https://github.com/ayush-that/FinVeda/pull/2355", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/205", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/184", - "https://github.com/PriyaGhosal/BuddyTrail/pull/815", - "https://github.com/PriyaGhosal/BuddyTrail/pull/709", - "https://github.com/PriyaGhosal/BuddyTrail/pull/432", - "https://github.com/GSSoC24/Postman-Challenge/pull/2712" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111341186?u=51ebca283fd442d50ae9176ec7dbc4bf6395af8c&v=4", - "login": "rajgharat07", - "url": "https://github.com/rajgharat07", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/BamaCharanChhandogi/READMEasy/pull/78", - "https://github.com/dhairyagothi/StationGuide/pull/208", - "https://github.com/Luson045/medi-connect/pull/369", - "https://github.com/Luson045/medi-connect/pull/356", - "https://github.com/AlgoGenesis/C/pull/312", - "https://github.com/SurajPratap10/Imagine_AI/pull/1195", - "https://github.com/SurajPratap10/Imagine_AI/pull/1187", - "https://github.com/GSSoC24/Postman-Challenge/pull/2252" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-15", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180189764?u=df8a8b72dc257473e8f4482859af3c8e17b23489&v=4", - "login": "RiddhiM170904", - "url": "https://github.com/RiddhiM170904", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/373", - "https://github.com/dhairyagothi/StationGuide/pull/367", - "https://github.com/dhairyagothi/StationGuide/pull/184", - "https://github.com/dhairyagothi/StationGuide/pull/172", - "https://github.com/dhairyagothi/StationGuide/pull/100", - "https://github.com/dhairyagothi/StationGuide/pull/22", - "https://github.com/subhadipbhowmik/bio-branch/pull/299", - "https://github.com/multiverseweb/Dataverse/pull/68", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/73", - "https://github.com/GSSoC24/Postman-Challenge/pull/2054" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-06", - "2024-10-10", - "2024-10-21", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167749636?u=cf0fb036713d8507f75f046a27765914d8f72201&v=4", - "login": "Mehtarishita", - "url": "https://github.com/Mehtarishita", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/363", - "https://github.com/dhairyagothi/StationGuide/pull/298", - "https://github.com/dhairyagothi/StationGuide/pull/175", - "https://github.com/dhairyagothi/StationGuide/pull/123", - "https://github.com/dhairyagothi/StationGuide/pull/117", - "https://github.com/dhairyagothi/StationGuide/pull/26", - "https://github.com/GSSoC24/Postman-Challenge/pull/2478" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-07", - "2024-10-10", - "2024-10-18", - "2024-10-21", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140732455?u=776f5ffe86a3be8e440600ee885227ba228c55c7&v=4", - "login": "Pankaj4152", - "url": "https://github.com/Pankaj4152", - "score": 660, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/105", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/92", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/90", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/75", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/62", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/61", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/45", - "https://github.com/GSSoC24/Postman-Challenge/pull/1825" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149002244?u=3fae1bb7b95dbda6c9062c8923b701653c0876f9&v=4", - "login": "purnima2904", - "url": "https://github.com/purnima2904", - "score": 655, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1321", - "https://github.com/ajay-dhangar/algo/pull/624", - "https://github.com/ANSHIKA-26/WordWise/pull/825", - "https://github.com/anuj123upadhyay/MegaBlog/pull/339", - "https://github.com/anuragverma108/SwapReads/pull/3202", - "https://github.com/dohinaf/basic-icecream-website/pull/429", - "https://github.com/Anjaliavv51/Retro/pull/404", - "https://github.com/UTSAVS26/PyVerse/pull/911", - "https://github.com/UTSAVS26/PyVerse/pull/901", - "https://github.com/GSSoC24/Postman-Challenge/pull/2429" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-26", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171407728?u=bac46ad128c73679b282b99e36610577b655bd10&v=4", - "login": "nksmanya", - "url": "https://github.com/nksmanya", - "score": 655, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/86", - "https://github.com/ANSHIKA-26/WordWise/pull/357", - "https://github.com/vishanurag/Canvas-Editor/pull/224", - "https://github.com/vishanurag/Canvas-Editor/pull/217", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/192", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/822", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/42", - "https://github.com/iamrahulmahato/master-web-development/pull/1339", - "https://github.com/iamrahulmahato/master-web-development/pull/904", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1087", - "https://github.com/GSSoC24/Postman-Challenge/pull/2423" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-17", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143956685?u=9e2e884ea05a3ff7dbb84d0c0b99d8f8ca9381b0&v=4", - "login": "royvivi29", - "url": "https://github.com/royvivi29", - "score": 655, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/398", - "https://github.com/GarimaSingh0109/WasteManagment/pull/373", - "https://github.com/GarimaSingh0109/WasteManagment/pull/342", - "https://github.com/GarimaSingh0109/WasteManagment/pull/336", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/898", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/424", - "https://github.com/GSSoC24/Postman-Challenge/pull/2230" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-24", - "2024-10-25", - "2024-10-26" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136872441?u=d3b1275eed03e9902a6983868dd848ddf8b5615d&v=4", - "login": "Abhishek2634", - "url": "https://github.com/Abhishek2634", - "score": 650, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/708", - "https://github.com/ajay-dhangar/algo/pull/667", - "https://github.com/ajay-dhangar/algo/pull/528", - "https://github.com/vishanurag/Canvas-Editor/pull/83", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/127", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/37", - "https://github.com/param-code/counter-app/pull/104", - "https://github.com/Yashgabani845/hiring-portal/pull/18", - "https://github.com/GSSoC24/Postman-Challenge/pull/2168" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126393851?u=959555f4ad43bdd08478005d335a55f56b392975&v=4", - "login": "SumaLatha2023", - "url": "https://github.com/SumaLatha2023", - "score": 650, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/518", - "https://github.com/ANSHIKA-26/WordWise/pull/1518", - "https://github.com/ANSHIKA-26/WordWise/pull/1156", - "https://github.com/ANSHIKA-26/WordWise/pull/1071", - "https://github.com/anuragverma108/SwapReads/pull/4147", - "https://github.com/ayush-that/FinVeda/pull/2182", - "https://github.com/ayush-that/FinVeda/pull/2027", - "https://github.com/AlgoGenesis/C/pull/1352", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1149", - "https://github.com/PriyaGhosal/BuddyTrail/pull/929", - "https://github.com/iamrahulmahato/master-web-development/pull/1886", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1211", - "https://github.com/GSSoC24/Postman-Challenge/pull/2714" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117105942?u=e7759c73b89c2822ac8f73a8df1db08f80fedaff&v=4", - "login": "PulkitShubham", - "url": "https://github.com/PulkitShubham", - "score": 650, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/625", - "https://github.com/ayush-that/FinVeda/pull/1991", - "https://github.com/ayush-that/FinVeda/pull/1904", - "https://github.com/ayush-that/FinVeda/pull/1762", - "https://github.com/ayush-that/FinVeda/pull/1727", - "https://github.com/samyakmaitre/eventmint/pull/308", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/594", - "https://github.com/swarooppatilx/scruter/pull/55", - "https://github.com/Vin205/Enyanjyoti/pull/342", - "https://github.com/GSSoC24/Postman-Challenge/pull/2208" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-23", - "2024-10-24" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143943994?v=4", - "login": "ishakatiyar06", - "url": "https://github.com/ishakatiyar06", - "score": 650, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/353", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/296", - "https://github.com/dohinaf/basic-icecream-website/pull/507", - "https://github.com/iamrahulmahato/master-web-development/pull/752", - "https://github.com/UTSAVS26/PyVerse/pull/286", - "https://github.com/GSSoC24/Postman-Challenge/pull/2841" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-13", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143863916?u=641891ba3afb076d049c1445ebc187bc4cc35183&v=4", - "login": "faiz66388", - "url": "https://github.com/faiz66388", - "score": 650, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/204", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/131", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/121", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/109", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/85", - "https://github.com/GSSoC24/Postman-Challenge/pull/2816" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-19", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139052282?v=4", - "login": "ChitteshKumar", - "url": "https://github.com/ChitteshKumar", - "score": 645, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/142", - "https://github.com/recodehive/machine-learning-repos/pull/1275", - "https://github.com/yashasvini121/predictive-calc/pull/173", - "https://github.com/yashasvini121/predictive-calc/pull/127", - "https://github.com/yashasvini121/predictive-calc/pull/26", - "https://github.com/GSSoC24/Postman-Challenge/pull/2021" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-11", - "2024-10-15", - "2024-10-22", - "2024-10-23" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134628185?u=ba3cfdddfd2c47668fb7307c2812b1f9fba05544&v=4", - "login": "ThunderShadows", - "url": "https://github.com/ThunderShadows", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/569", - "https://github.com/dohinaf/basic-icecream-website/pull/597", - "https://github.com/dohinaf/basic-icecream-website/pull/294", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/228", - "https://github.com/GSSoC24/Postman-Challenge/pull/2594" - ], - "pr_dates": ["2024-10-07", "2024-10-12", "2024-10-15", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88283910?u=cabc9e20521bd509fff8af80fda41b61793e94ac&v=4", - "login": "karthikyandrapu", - "url": "https://github.com/karthikyandrapu", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/414", - "https://github.com/ajay-dhangar/algo/pull/406", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/285", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/592", - "https://github.com/AlgoGenesis/C/pull/1389", - "https://github.com/AlgoGenesis/C/pull/1243", - "https://github.com/AlgoGenesis/C/pull/614", - "https://github.com/AlgoGenesis/C/pull/448", - "https://github.com/iamrahulmahato/master-web-development/pull/1831", - "https://github.com/iamrahulmahato/master-web-development/pull/1830", - "https://github.com/iamrahulmahato/master-web-development/pull/1695", - "https://github.com/iamrahulmahato/master-web-development/pull/1641", - "https://github.com/iamrahulmahato/master-web-development/pull/1638", - "https://github.com/iamrahulmahato/master-web-development/pull/1614", - "https://github.com/GSSoC24/Postman-Challenge/pull/1922" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-12", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143770362?v=4", - "login": "BVPKARTHIKEYA", - "url": "https://github.com/BVPKARTHIKEYA", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/94", - "https://github.com/Code-Social/official-website/pull/173", - "https://github.com/Code-Social/official-website/pull/81", - "https://github.com/Anjaliavv51/Retro/pull/479", - "https://github.com/iamrahulmahato/master-web-development/pull/1088", - "https://github.com/vansh-codes/ChaosWeb/pull/45", - "https://github.com/Vin205/Enyanjyoti/pull/151", - "https://github.com/GSSoC24/Postman-Challenge/pull/2619" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170428995?u=74620e900dfe4758ed77c5c735a4f2ca8b2b092c&v=4", - "login": "kartikey369-ind", - "url": "https://github.com/kartikey369-ind", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/50", - "https://github.com/ChandelAnish/hireHUB-website/pull/72", - "https://github.com/ChandelAnish/hireHUB-website/pull/71", - "https://github.com/ChandelAnish/fusionFLOW/pull/18", - "https://github.com/arjunatapadkar/codeteria/pull/16", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/28", - "https://github.com/divyansh-2005/my-calendar-app/pull/60", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/207", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/10", - "https://github.com/SanchitGeez/Investra/pull/25", - "https://github.com/recodehive/Scrape-ML/pull/235", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/44", - "https://github.com/TenzDelek/DearDiary/pull/11", - "https://github.com/tushargupta1504/Medical-Website/pull/154", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/84", - "https://github.com/yagnik2411/Quiz-Genius/pull/30", - "https://github.com/AmateursLeague/sneaky-package/pull/39", - "https://github.com/GSSoC24/Postman-Challenge/pull/2971" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-05", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142772971?v=4", - "login": "AyushiTaralkar", - "url": "https://github.com/AyushiTaralkar", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/118", - "https://github.com/ankit071105/Ticket-Booking/pull/115", - "https://github.com/vishanurag/Canvas-Editor/pull/185", - "https://github.com/dohinaf/basic-icecream-website/pull/224", - "https://github.com/dohinaf/basic-icecream-website/pull/218", - "https://github.com/dohinaf/basic-icecream-website/pull/170", - "https://github.com/dohinaf/basic-icecream-website/pull/164", - "https://github.com/SurajPratap10/Imagine_AI/pull/1296", - "https://github.com/GSSoC24/Postman-Challenge/pull/2285" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-20", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144578658?u=b6cb7de804940b11a6802228965ea0b1aeeede6d&v=4", - "login": "STXRSHIVA", - "url": "https://github.com/STXRSHIVA", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/210", - "https://github.com/jahnvisahni31/DesignDeck/pull/79", - "https://github.com/jahnvisahni31/DesignDeck/pull/69", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/93", - "https://github.com/TherkuTech/tturl/pull/56", - "https://github.com/iamrahulmahato/master-web-development/pull/1441", - "https://github.com/SaranshBangar/Daneizo/pull/59", - "https://github.com/ayerhssb/Appointment-booking-app/pull/41", - "https://github.com/subhadipbhowmik/bio-branch/pull/146", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/366", - "https://github.com/Trisha-tech/OnlineBookSales/pull/446", - "https://github.com/Vin205/Enyanjyoti/pull/165", - "https://github.com/GSSoC24/Postman-Challenge/pull/1801" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-19", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143862134?u=9a3f6005e65bb4f8092c2bf6ce004f6b8dcf8ae9&v=4", - "login": "Vishesh-Tripathi", - "url": "https://github.com/Vishesh-Tripathi", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/163", - "https://github.com/soham0005/ElectroKart/pull/118", - "https://github.com/soham0005/ElectroKart/pull/97", - "https://github.com/Trisha-tech/OnlineBookSales/pull/264", - "https://github.com/GSSoC24/Postman-Challenge/pull/2509" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-08", - "2024-10-09", - "2024-10-13", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/66481063?u=5c70c8813fa7462cfaed553ecf0a00630e5f87ff&v=4", - "login": "Sharmaji513", - "url": "https://github.com/Sharmaji513", - "score": 640, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vanshchauhan21/CryptoTracker/pull/235", - "https://github.com/vanshchauhan21/CryptoTracker/pull/213", - "https://github.com/vanshchauhan21/CryptoTracker/pull/173", - "https://github.com/sanjay-kv/Open-source-Practice/pull/731", - "https://github.com/GSSoC24/Postman-Challenge/pull/2641" - ], - "pr_dates": ["2024-05-12", "2024-10-28", "2024-10-29", "2024-10-30"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172173451?v=4", - "login": "khushigupta86", - "url": "https://github.com/khushigupta86", - "score": 635, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1137", - "https://github.com/aditya-bhaumik/Pathsphere/pull/1102", - "https://github.com/ANSHIKA-26/WordWise/pull/1458", - "https://github.com/vishanurag/Canvas-Editor/pull/1094", - "https://github.com/vishanurag/Canvas-Editor/pull/1071", - "https://github.com/vishanurag/Canvas-Editor/pull/1023", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1800", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1742", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1273", - "https://github.com/GSSoC24/Postman-Challenge/pull/2805" - ], - "pr_dates": [ - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145780447?v=4", - "login": "shamvrueth", - "url": "https://github.com/shamvrueth", - "score": 635, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1323", - "https://github.com/ajay-dhangar/algo/pull/1316", - "https://github.com/anuragverma108/SwapReads/pull/4101", - "https://github.com/vishanurag/Canvas-Editor/pull/954", - "https://github.com/iamrahulmahato/master-web-development/pull/1949", - "https://github.com/iamrahulmahato/master-web-development/pull/1741", - "https://github.com/TenzDelek/DearDiary/pull/152", - "https://github.com/GSSoC24/Postman-Challenge/pull/2613" - ], - "pr_dates": [ - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119156720?u=630a3580e9f5bab93d0f0f4e378dbd747afb798b&v=4", - "login": "Dhruv80576", - "url": "https://github.com/Dhruv80576", - "score": 635, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/295", - "https://github.com/prajapatihet/donorconnect/pull/106", - "https://github.com/prajapatihet/donorconnect/pull/100", - "https://github.com/prajapatihet/donorconnect/pull/84", - "https://github.com/prajapatihet/donorconnect/pull/73", - "https://github.com/Jiggy9/JCT/pull/78", - "https://github.com/yagnik2411/Quiz-Genius/pull/125", - "https://github.com/GSSoC24/Postman-Challenge/pull/2032" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117504106?v=4", - "login": "jyothimanoj12", - "url": "https://github.com/jyothimanoj12", - "score": 635, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/23", - "https://github.com/mansiruhil13/Bobble-AI/pull/164", - "https://github.com/param-code/counter-app/pull/157", - "https://github.com/gupta-ritik/ExpenseTracker/pull/36", - "https://github.com/sk66641/AquaGuardians/pull/10", - "https://github.com/satyam8932/genieai/pull/32", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/20", - "https://github.com/07sumit1002/CabRental/pull/240", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/69", - "https://github.com/GSSoC24/Postman-Challenge/pull/2385" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-14", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153907847?u=4ed55a1b7f322814443ea734146e539af27a640a&v=4", - "login": "Shreya7tripathy", - "url": "https://github.com/Shreya7tripathy", - "score": 635, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AmateursLeague/sneaky-package/pull/47", - "https://github.com/AmateursLeague/sneaky-package/pull/36", - "https://github.com/UTSAVS26/PyVerse/pull/455", - "https://github.com/UTSAVS26/PyVerse/pull/341", - "https://github.com/UTSAVS26/PyVerse/pull/170", - "https://github.com/UTSAVS26/PyVerse/pull/153", - "https://github.com/GSSoC24/Postman-Challenge/pull/1965" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-08", - "2024-10-11", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152880035?u=bf65f50677ff91a5ed555f9781436b32c1518629&v=4", - "login": "Lokesh-Bijarniya", - "url": "https://github.com/Lokesh-Bijarniya", - "score": 630, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/115", - "https://github.com/ajay-dhangar/algo/pull/1175", - "https://github.com/ANSHIKA-26/WordWise/pull/1588", - "https://github.com/ANSHIKA-26/WordWise/pull/1244", - "https://github.com/ayush-that/FinVeda/pull/1493", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/429", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/663", - "https://github.com/GSSoC24/Postman-Challenge/pull/2709" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112371160?u=7c3e53f50d5a77c85aa12a9e309fa6766a6f31d1&v=4", - "login": "shivhere007", - "url": "https://github.com/shivhere007", - "score": 630, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1082", - "https://github.com/aditya-bhaumik/Pathsphere/pull/1056", - "https://github.com/ajay-dhangar/algo/pull/1555", - "https://github.com/ANSHIKA-26/WordWise/pull/1387", - "https://github.com/codeaashu/DevDisplay/pull/492", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1018", - "https://github.com/soham0005/ElectroKart/pull/273", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1095", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1093", - "https://github.com/apu52/METAVERSE/pull/1336", - "https://github.com/GSSoC24/Postman-Challenge/pull/1790" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-23", - "2024-10-24", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162704899?u=4b5db6b777ef6aeaa689b3423f88cd3385ad9fd8&v=4", - "login": "subin-shk", - "url": "https://github.com/subin-shk", - "score": 630, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/645", - "https://github.com/anuragverma108/SwapReads/pull/3034", - "https://github.com/vishanurag/Canvas-Editor/pull/171", - "https://github.com/dohinaf/basic-icecream-website/pull/310", - "https://github.com/mansiruhil13/Bobble-AI/pull/295", - "https://github.com/PriyaGhosal/BuddyTrail/pull/211", - "https://github.com/SurajPratap10/Imagine_AI/pull/1159", - "https://github.com/GSSoC24/Postman-Challenge/pull/1874" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-14", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151528559?v=4", - "login": "BenakDeepak", - "url": "https://github.com/BenakDeepak", - "score": 630, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/697", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/613", - "https://github.com/UTSAVS26/PyVerse/pull/873", - "https://github.com/UTSAVS26/PyVerse/pull/387", - "https://github.com/UTSAVS26/PyVerse/pull/299", - "https://github.com/UTSAVS26/PyVerse/pull/266", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1259", - "https://github.com/GSSoC24/Postman-Challenge/pull/2658" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-27", - "2024-10-29", - "2024-10-30", - "2024-10-31" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120497280?u=2a90415a783ff3787c0f0196366a597d8ed6e373&v=4", - "login": "iAmAjayTeli", - "url": "https://github.com/iAmAjayTeli", - "score": 630, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/120", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/117", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/115", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/110", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/101", - "https://github.com/GSSoC24/Postman-Challenge/pull/2374" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173470780?u=34767f4c5d8444d244eb4127c1029859484624c8&v=4", - "login": "coder-writes", - "url": "https://github.com/coder-writes", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1209", - "https://github.com/arjunatapadkar/codeteria/pull/127", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/517", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/243", - "https://github.com/GSSoC24/Postman-Challenge/pull/2000" - ], - "pr_dates": ["2024-10-11", "2024-10-22", "2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142602630?u=ce57317a7cbafb162ec483f9e590d1e6f28e1746&v=4", - "login": "isnehamondal", - "url": "https://github.com/isnehamondal", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/180", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/63", - "https://github.com/dohinaf/basic-icecream-website/pull/104", - "https://github.com/AlgoGenesis/C/pull/1005", - "https://github.com/AlgoGenesis/C/pull/808", - "https://github.com/iamrahulmahato/master-web-development/pull/1185", - "https://github.com/iamrahulmahato/master-web-development/pull/894", - "https://github.com/multiverseweb/CodeIt/pull/175", - "https://github.com/GSSoC24/Postman-Challenge/pull/2129" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-08", - "2024-10-09", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170340707?v=4", - "login": "Pallavi-Mukalla", - "url": "https://github.com/Pallavi-Mukalla", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/794", - "https://github.com/vishanurag/Canvas-Editor/pull/1002", - "https://github.com/Code-Social/official-website/pull/445", - "https://github.com/param-code/counter-app/pull/123", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1710", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1696", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/724", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1257", - "https://github.com/GSSoC24/Postman-Challenge/pull/2782" - ], - "pr_dates": ["2024-10-12", "2024-10-28", "2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143868952?u=4ad154748e049ea4e3d036ce84156f4ad24d03d6&v=4", - "login": "Khushi-Nigam", - "url": "https://github.com/Khushi-Nigam", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/238", - "https://github.com/vishanurag/Canvas-Editor/pull/68", - "https://github.com/andoriyaprashant/DevDocsHub/pull/19", - "https://github.com/07sumit1002/CabRental/pull/196", - "https://github.com/GSSoC24/Postman-Challenge/pull/1978" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83424436?u=dc76705fbfef2bf12839ad06ad0dfb3919cff1c3&v=4", - "login": "Ahsankhalid618", - "url": "https://github.com/Ahsankhalid618", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryainguz/picwise.co/pull/70", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/7", - "https://github.com/subhadeeproy3902/trailgo/pull/114", - "https://github.com/TejasNasre/nexmeet/pull/68", - "https://github.com/GSSoC24/Postman-Challenge/pull/1836" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-10", - "2024-10-14", - "2024-10-22", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122375687?u=017712b201d7880e63c9ecc056d15cfc8e72821d&v=4", - "login": "laxmanp090404", - "url": "https://github.com/laxmanp090404", - "score": 625, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/162", - "https://github.com/divyansh-2005/FinNews/pull/72", - "https://github.com/divyansh-2005/FinNews/pull/54", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/30", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/75", - "https://github.com/Yashgabani845/hiring-portal/pull/21", - "https://github.com/GSSoC24/Postman-Challenge/pull/1924" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-06", - "2024-10-13", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156598237?u=5908bafee50aa40db4cd04b3c8fc9c199a6a8f5d&v=4", - "login": "kjl98", - "url": "https://github.com/kjl98", - "score": 620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1610", - "https://github.com/ajay-dhangar/algo/pull/1518", - "https://github.com/ajay-dhangar/algo/pull/1386", - "https://github.com/ajay-dhangar/algo/pull/1322", - "https://github.com/ajay-dhangar/algo/pull/1199", - "https://github.com/ajay-dhangar/algo/pull/769", - "https://github.com/ajay-dhangar/algo/pull/757", - "https://github.com/ajay-dhangar/algo/pull/333", - "https://github.com/vishanurag/Canvas-Editor/pull/660", - "https://github.com/mdazfar2/Ezyshop/pull/156", - "https://github.com/Kritika30032002/Blog_Website/pull/217", - "https://github.com/Soujanya2004/wanderlust-2024/pull/324", - "https://github.com/GSSoC24/Postman-Challenge/pull/1917" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-09", - "2024-10-11", - "2024-10-15", - "2024-10-18", - "2024-10-23", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153196340?v=4", - "login": "keerthana2-005", - "url": "https://github.com/keerthana2-005", - "score": 620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/121", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/112", - "https://github.com/mansiruhil13/Bobble-AI/pull/350", - "https://github.com/andoriyaprashant/DevDocsHub/pull/90", - "https://github.com/GSSoC24/Postman-Challenge/pull/2158" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-14", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164147518?u=74e01b8cb8ea846cfff7b23e140e64e0aa37dd27&v=4", - "login": "SurajSG23", - "url": "https://github.com/SurajSG23", - "score": 620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/371", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/173", - "https://github.com/mdazfar2/Ezyshop/pull/90", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/109", - "https://github.com/mansiruhil13/Bobble-AI/pull/197", - "https://github.com/AlgoGenesis/C/pull/166", - "https://github.com/GSSoC24/Postman-Challenge/pull/2578" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122423386?u=1c7e3f42dbb0e38f442ca312648fc6e3a6e47575&v=4", - "login": "Laxmi01345", - "url": "https://github.com/Laxmi01345", - "score": 620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/210", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/25", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/159", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/123", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/96", - "https://github.com/GSSoC24/Postman-Challenge/pull/2179" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-15", - "2024-10-19", - "2024-10-23", - "2024-10-24", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127599705?v=4", - "login": "0xPratikPatil", - "url": "https://github.com/0xPratikPatil", - "score": 620, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/TejasNasre/nexmeet/pull/180", - "https://github.com/TejasNasre/nexmeet/pull/154", - "https://github.com/TejasNasre/nexmeet/pull/143", - "https://github.com/TejasNasre/nexmeet/pull/54", - "https://github.com/GSSoC24/Postman-Challenge/pull/2191" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167011296?v=4", - "login": "shreyad2806", - "url": "https://github.com/shreyad2806", - "score": 615, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/48", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/30", - "https://github.com/dhairyagothi/StationGuide/pull/27", - "https://github.com/GarimaSingh0109/WasteManagment/pull/96", - "https://github.com/Anjaliavv51/Retro/pull/66", - "https://github.com/subhadipbhowmik/bio-branch/pull/54", - "https://github.com/tanishaness/SPROCTOR/pull/20", - "https://github.com/GSSoC24/Postman-Challenge/pull/2720" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-07", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145750708?u=805197cb2483aac12ad011e88e9efa75b5c32715&v=4", - "login": "divanshiii09", - "url": "https://github.com/divanshiii09", - "score": 615, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1037", - "https://github.com/codeaashu/DevDisplay/pull/381", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/985", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/946", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/932", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/895", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/621", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/608", - "https://github.com/GSSoC24/Postman-Challenge/pull/1842" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-22", - "2024-10-25", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116356757?v=4", - "login": "Pavan8421", - "url": "https://github.com/Pavan8421", - "score": 615, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2876", - "https://github.com/dohinaf/basic-icecream-website/pull/221", - "https://github.com/dohinaf/basic-icecream-website/pull/171", - "https://github.com/dohinaf/basic-icecream-website/pull/84", - "https://github.com/mansiruhil13/Bobble-AI/pull/896", - "https://github.com/GSSoC24/Postman-Challenge/pull/2780" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-06", - "2024-10-17", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88020867?u=3e84577324f914f80ecb41b2d44212eaa0d9d8ad&v=4", - "login": "Naga-Himaja", - "url": "https://github.com/Naga-Himaja", - "score": 615, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/471", - "https://github.com/Code-Social/official-website/pull/462", - "https://github.com/Code-Social/official-website/pull/429", - "https://github.com/Code-Social/official-website/pull/412", - "https://github.com/Code-Social/official-website/pull/397", - "https://github.com/Code-Social/official-website/pull/287", - "https://github.com/dohinaf/basic-icecream-website/pull/125", - "https://github.com/tushargupta1504/Medical-Website/pull/123", - "https://github.com/tushargupta1504/Medical-Website/pull/107", - "https://github.com/GSSoC24/Postman-Challenge/pull/2523" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-18", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-29", - "2024-10-30" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120576246?u=4cd0b19864549cdeca4f79669f52a73483a5427d&v=4", - "login": "sneha056", - "url": "https://github.com/sneha056", - "score": 615, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1731", - "https://github.com/ayush-that/FinVeda/pull/1640", - "https://github.com/ayush-that/FinVeda/pull/1366", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/743", - "https://github.com/mansiruhil13/Bobble-AI/pull/720", - "https://github.com/PriyaGhosal/BuddyTrail/pull/870", - "https://github.com/multiverseweb/CodeIt/pull/198", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/507", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/501", - "https://github.com/apu52/Travel_Website/pull/1559", - "https://github.com/GSSoC24/Postman-Challenge/pull/2512" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82140054?u=e910fdc7ab36583a2d73279ac3b6a502502816d8&v=4", - "login": "Jordian0", - "url": "https://github.com/Jordian0", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/61", - "https://github.com/ANSHIKA-26/WordWise/pull/1247", - "https://github.com/anuragverma108/SwapReads/pull/3903", - "https://github.com/Bitbox-Connect/Bitbox/pull/277", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/688", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/636", - "https://github.com/GSSoC24/Postman-Challenge/pull/2946" - ], - "pr_dates": [ - "2024-10-21", - "2024-10-23", - "2024-10-26", - "2024-10-27", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141659365?u=1eb4f6c9f35a682f031faaba0dd94f7c4fd6279b&v=4", - "login": "iarmaanx", - "url": "https://github.com/iarmaanx", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/747", - "https://github.com/anuragverma108/SwapReads/pull/3131", - "https://github.com/ayush-that/FinVeda/pull/1850", - "https://github.com/ayush-that/FinVeda/pull/1500", - "https://github.com/iamrahulmahato/master-web-development/pull/1612", - "https://github.com/Vin205/Enyanjyoti/pull/354", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/903", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/778", - "https://github.com/GSSoC24/Postman-Challenge/pull/2398" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-17", - "2024-10-18", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140742468?v=4", - "login": "Uvesh99", - "url": "https://github.com/Uvesh99", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1210", - "https://github.com/ajay-dhangar/algo/pull/1045", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/628", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/613", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/472", - "https://github.com/GSSoC24/Postman-Challenge/pull/2986" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122305104?v=4", - "login": "anshika-1102", - "url": "https://github.com/anshika-1102", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/534", - "https://github.com/OpenTekHub/blockchain/pull/60", - "https://github.com/multiverseweb/Dataverse/pull/62", - "https://github.com/vansh-codes/ChaosWeb/pull/136", - "https://github.com/vansh-codes/ChaosWeb/pull/62", - "https://github.com/GSSoC24/Postman-Challenge/pull/2487" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-09", - "2024-10-11", - "2024-10-16", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144695016?u=30774bc759442e312cce3e3e3ea9d629c956bca5&v=4", - "login": "sajalgarg45", - "url": "https://github.com/sajalgarg45", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/474", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/459", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/450", - "https://github.com/iamrahulmahato/master-web-development/pull/1636", - "https://github.com/iamrahulmahato/master-web-development/pull/1537", - "https://github.com/iamrahulmahato/master-web-development/pull/1468", - "https://github.com/GSSoC24/Postman-Challenge/pull/1773" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-21", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172313590?u=df4473c153e4e82aa443ca1df5697f23fae3cc5d&v=4", - "login": "Ashish-Patnaik", - "url": "https://github.com/Ashish-Patnaik", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/296", - "https://github.com/ankit071105/Ticket-Booking/pull/475", - "https://github.com/anuragverma108/SwapReads/pull/3954", - "https://github.com/ayush-that/FinVeda/pull/1940", - "https://github.com/iamrahulmahato/master-web-development/pull/1657", - "https://github.com/iamrahulmahato/master-web-development/pull/1397", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/604", - "https://github.com/UTSAVS26/PyVerse/pull/789", - "https://github.com/GSSoC24/Postman-Challenge/pull/2334" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131185756?u=dd76023363a7b52d47a43700963f02870b513306&v=4", - "login": "JOSHITHA6", - "url": "https://github.com/JOSHITHA6", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4164", - "https://github.com/vishanurag/Canvas-Editor/pull/1027", - "https://github.com/iamrahulmahato/master-web-development/pull/826", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/417", - "https://github.com/recodehive/Scrape-ML/pull/295", - "https://github.com/multiverseweb/Dataverse/pull/106", - "https://github.com/GSSoC24/Postman-Challenge/pull/2748" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-10", - "2024-10-24", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155288849?u=aa5014d8434adb2442b0d094bcf2534be5b043ec&v=4", - "login": "Swati-in", - "url": "https://github.com/Swati-in", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3568", - "https://github.com/ayush-that/FinVeda/pull/1219", - "https://github.com/dhairyagothi/StationGuide/pull/371", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/163", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/501", - "https://github.com/UTSAVS26/PyVerse/pull/704", - "https://github.com/GSSoC24/Postman-Challenge/pull/2574" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-21", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156794486?v=4", - "login": "GauriSachan", - "url": "https://github.com/GauriSachan", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/67", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/52", - "https://github.com/multiverseweb/Dataverse/pull/65", - "https://github.com/multiverseweb/Dataverse/pull/9", - "https://github.com/Vimall03/Alimento/pull/61", - "https://github.com/GVishnudhasan/NoDueProject/pull/47", - "https://github.com/GSSoC24/Postman-Challenge/pull/2229" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111112495?u=6c119b6fc8e2b611c0f0290246fcfeeb6dc00205&v=4", - "login": "Ayushjhawar8", - "url": "https://github.com/Ayushjhawar8", - "score": 610, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/kom-senapati/bot-verse/pull/157", - "https://github.com/kom-senapati/bot-verse/pull/114", - "https://github.com/kom-senapati/bot-verse/pull/108", - "https://github.com/kom-senapati/bot-verse/pull/47", - "https://github.com/kom-senapati/bot-verse/pull/44", - "https://github.com/kom-senapati/bot-verse/pull/43", - "https://github.com/GSSoC24/Postman-Challenge/pull/1742" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-15", - "2024-10-16", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180765195?u=b61632e4bebbd54dfd53b773b087aae88e4aff98&v=4", - "login": "MasirJafri1", - "url": "https://github.com/MasirJafri1", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/784", - "https://github.com/ANSHIKA-26/WordWise/pull/503", - "https://github.com/ANSHIKA-26/WordWise/pull/276", - "https://github.com/ayush-that/FinVeda/pull/2056", - "https://github.com/ayush-that/FinVeda/pull/1282", - "https://github.com/ayush-that/FinVeda/pull/1105", - "https://github.com/GSSoC24/Postman-Challenge/pull/2112" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-24", - "2024-10-25" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120931967?u=87d81fe42f6bc0eda7df1e2d31396639caa90683&v=4", - "login": "JahnavikaGopalbvrith", - "url": "https://github.com/JahnavikaGopalbvrith", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ramsey99/Admin_Dashboard/pull/38", - "https://github.com/vishanurag/Canvas-Editor/pull/190", - "https://github.com/dohinaf/basic-icecream-website/pull/180", - "https://github.com/iamrahulmahato/master-web-development/pull/1736", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1276", - "https://github.com/GSSoC24/Postman-Challenge/pull/2359" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-08", - "2024-10-25", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161145698?u=750deb98e1decea65f2980045dcfcaede15cba37&v=4", - "login": "RB137", - "url": "https://github.com/RB137", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3896", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/534", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/508", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/148", - "https://github.com/recodehive/machine-learning-repos/pull/1558", - "https://github.com/recodehive/machine-learning-repos/pull/1516", - "https://github.com/GSSoC24/Postman-Challenge/pull/2395" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176521591?v=4", - "login": "Tanushree084", - "url": "https://github.com/Tanushree084", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/327", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/339", - "https://github.com/dohinaf/basic-icecream-website/pull/348", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/253", - "https://github.com/iamrahulmahato/master-web-development/pull/1218", - "https://github.com/vansh-codes/ChaosWeb/pull/104", - "https://github.com/GSSoC24/Postman-Challenge/pull/2606" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-13", - "2024-10-14", - "2024-10-17", - "2024-10-28", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140224513?u=7f512d8a626bde64c5beea17eca96d3883f07699&v=4", - "login": "Shadyx6", - "url": "https://github.com/Shadyx6", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/711", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/432", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/426", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/285", - "https://github.com/GSSoC24/Postman-Challenge/pull/2590" - ], - "pr_dates": ["2024-10-12", "2024-10-18", "2024-10-28", "2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99534945?v=4", - "login": "Abhigaba", - "url": "https://github.com/Abhigaba", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/272", - "https://github.com/soham0005/ElectroKart/pull/261", - "https://github.com/soham0005/ElectroKart/pull/53", - "https://github.com/soham0005/ElectroKart/pull/46", - "https://github.com/GSSoC24/Postman-Challenge/pull/2573" - ], - "pr_dates": ["2024-10-05", "2024-10-20", "2024-10-22", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70253408?u=bd0295766f6265ea453ec69b9658d2140db37ad3&v=4", - "login": "halcyon-past", - "url": "https://github.com/halcyon-past", - "score": 605, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/157", - "https://github.com/UTSAVS26/PyVerse/pull/106", - "https://github.com/UTSAVS26/PyVerse/pull/83", - "https://github.com/UTSAVS26/PyVerse/pull/77", - "https://github.com/GSSoC24/Postman-Challenge/pull/1872" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-06", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165547764?u=e72140e5dba65a564c07a88155fe5f50e5d9b43e&v=4", - "login": "sriharsha0x1", - "url": "https://github.com/sriharsha0x1", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/223", - "https://github.com/anuragverma108/SwapReads/pull/3889", - "https://github.com/Code-Social/official-website/pull/325", - "https://github.com/mdazfar2/Ezyshop/pull/891", - "https://github.com/multiverseweb/Dataverse/pull/130", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/696", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/665", - "https://github.com/GSSoC24/Postman-Challenge/pull/2621" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-13", - "2024-10-21", - "2024-10-22", - "2024-10-25", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176995332?u=6a639e5b7d37ba397fe6fa6b1409bb564b8f05ba&v=4", - "login": "vedhcet-07", - "url": "https://github.com/vedhcet-07", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/294", - "https://github.com/ajay-dhangar/algo/pull/62", - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/76", - "https://github.com/AlgoGenesis/C/pull/389", - "https://github.com/samyakmaitre/eventmint/pull/144", - "https://github.com/recodehive/machine-learning-repos/pull/1319", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/68", - "https://github.com/GSSoC24/Postman-Challenge/pull/2282" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63269542?u=de983e348aa8b820ffdd59324e773b2d43ef1e87&v=4", - "login": "RishabhRawatt", - "url": "https://github.com/RishabhRawatt", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/210", - "https://github.com/Scribbie-Notes/notes-app/pull/299", - "https://github.com/Scribbie-Notes/notes-app/pull/250", - "https://github.com/GSSoC24/Postman-Challenge/pull/2918" - ], - "pr_dates": ["2024-10-21", "2024-10-26", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153543231?u=372cb32e54e767ece0bb8516a8522c870c06afc8&v=4", - "login": "harshpareshbhaigosalya", - "url": "https://github.com/harshpareshbhaigosalya", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/61", - "https://github.com/dohinaf/basic-icecream-website/pull/130", - "https://github.com/Anjaliavv51/Retro/pull/547", - "https://github.com/Anjaliavv51/Retro/pull/175", - "https://github.com/iamrahulmahato/master-web-development/pull/361", - "https://github.com/GSSoC24/Postman-Challenge/pull/2332" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-14", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151675979?v=4", - "login": "TanmayKalra09", - "url": "https://github.com/TanmayKalra09", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/27", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/7", - "https://github.com/dhairyagothi/StationGuide/pull/382", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/488", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/60", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/17", - "https://github.com/param-code/counter-app/pull/238", - "https://github.com/GSSoC24/Postman-Challenge/pull/2639" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-22", - "2024-10-23", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153073510?u=4806e24065baa8d57c987103a4cc3ae6b678ad18&v=4", - "login": "Aditya90456", - "url": "https://github.com/Aditya90456", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/741", - "https://github.com/jahnvisahni31/DesignDeck/pull/186", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1037", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/304", - "https://github.com/apu52/Travel_Website/pull/1538", - "https://github.com/GSSoC24/Postman-Challenge/pull/2413" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123357539?u=f6a0f81f77afc4e97be05234da3930466161a4d1&v=4", - "login": "Sancharisingh", - "url": "https://github.com/Sancharisingh", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/1010", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/306", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/342", - "https://github.com/GSSoC24/Postman-Challenge/pull/2235" - ], - "pr_dates": ["2024-10-21", "2024-10-22", "2024-10-24", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143670812?v=4", - "login": "srivishnu2805", - "url": "https://github.com/srivishnu2805", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1172", - "https://github.com/ayush-that/FinVeda/pull/1123", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/152", - "https://github.com/vansh-codes/ChaosWeb/pull/131", - "https://github.com/GSSoC24/Postman-Challenge/pull/2315" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162836471?u=d1e82d149371f8c7d7530ad97b01c87cb639c4ec&v=4", - "login": "Pratik-Tech-Wizard", - "url": "https://github.com/Pratik-Tech-Wizard", - "score": 600, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/645", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/627", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/580", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/573", - "https://github.com/recodehive/machine-learning-repos/pull/1589", - "https://github.com/recodehive/machine-learning-repos/pull/1584", - "https://github.com/recodehive/machine-learning-repos/pull/1557", - "https://github.com/GSSoC24/Postman-Challenge/pull/2390" - ], - "pr_dates": [ - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129646171?v=4", - "login": "rahulbamnuya", - "url": "https://github.com/rahulbamnuya", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/839", - "https://github.com/aditya-bhaumik/Pathsphere/pull/601", - "https://github.com/anuragverma108/SwapReads/pull/3292", - "https://github.com/anuragverma108/SwapReads/pull/3076", - "https://github.com/ayush-that/FinVeda/pull/2328", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/798", - "https://github.com/iamrahulmahato/master-web-development/pull/1924", - "https://github.com/iamrahulmahato/master-web-development/pull/1675", - "https://github.com/GSSoC24/Postman-Challenge/pull/1788" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-19", - "2024-10-20", - "2024-10-23", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151530482?u=38e9a677002da6598bf91add220d6045934bb36c&v=4", - "login": "Sujal1201", - "url": "https://github.com/Sujal1201", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/211", - "https://github.com/aditya-bhaumik/Pathsphere/pull/200", - "https://github.com/ANSHIKA-26/WordWise/pull/140", - "https://github.com/vishanurag/Canvas-Editor/pull/229", - "https://github.com/ayush-that/FinVeda/pull/1658", - "https://github.com/dohinaf/basic-icecream-website/pull/121", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/142", - "https://github.com/GSSoC24/Postman-Challenge/pull/2525", - "https://github.com/kvcops/KV-Nexus/pull/12" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-20", - "2024-10-25", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114791914?u=b0f0a9d2976f5fa5818b980b0673010897c572f2&v=4", - "login": "Gopal0Gupta", - "url": "https://github.com/Gopal0Gupta", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1675", - "https://github.com/ajay-dhangar/algo/pull/661", - "https://github.com/ajay-dhangar/algo/pull/514", - "https://github.com/ajay-dhangar/algo/pull/487", - "https://github.com/ajay-dhangar/algo/pull/429", - "https://github.com/ajay-dhangar/algo/pull/327", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/68", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/56", - "https://github.com/GSSoC24/Postman-Challenge/pull/2811" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170360041?u=ea608b010402db03083efb1daf5813feeaaa2ae6&v=4", - "login": "Aasthaa10", - "url": "https://github.com/Aasthaa10", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1230", - "https://github.com/ajay-dhangar/algo/pull/1225", - "https://github.com/anuragverma108/SwapReads/pull/3175", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/230", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/166", - "https://github.com/iamrahulmahato/master-web-development/pull/1850", - "https://github.com/iamrahulmahato/master-web-development/pull/1848", - "https://github.com/recodehive/machine-learning-repos/pull/1308", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/502", - "https://github.com/GSSoC24/Postman-Challenge/pull/2552" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-16", - "2024-10-23", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69787135?u=abfb1b887f19c6b631c4e806c50ca6dc1ecce9de&v=4", - "login": "Rahul7raj", - "url": "https://github.com/Rahul7raj", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/171", - "https://github.com/Luson045/medi-connect/pull/297", - "https://github.com/SanchitGeez/Investra/pull/42", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/35", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/34", - "https://github.com/GSSoC24/Postman-Challenge/pull/2256" - ], - "pr_dates": ["2024-10-04", "2024-10-07", "2024-10-08", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175486899?v=4", - "login": "RhiyaBhat", - "url": "https://github.com/RhiyaBhat", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/146", - "https://github.com/anuragverma108/SwapReads/pull/3606", - "https://github.com/anuragverma108/SwapReads/pull/3513", - "https://github.com/anuragverma108/SwapReads/pull/3505", - "https://github.com/anuragverma108/SwapReads/pull/3326", - "https://github.com/ayush-that/FinVeda/pull/2584", - "https://github.com/GSSoC24/Postman-Challenge/pull/2419" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-26", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155374856?v=4", - "login": "Muskan-bhatt249", - "url": "https://github.com/Muskan-bhatt249", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/50", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/192", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/46", - "https://github.com/satyam8932/genieai/pull/30", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/31", - "https://github.com/tanishaness/SPROCTOR/pull/13", - "https://github.com/tanishaness/SPROCTOR/pull/5", - "https://github.com/tanishaness/SPROCTOR/pull/4", - "https://github.com/AmateursLeague/sneaky-package/pull/81", - "https://github.com/GSSoC24/Postman-Challenge/pull/2791" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130243413?v=4", - "login": "akansha204", - "url": "https://github.com/akansha204", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/677", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/111", - "https://github.com/iamrahulmahato/master-web-development/pull/1839", - "https://github.com/GSSoC24/Postman-Challenge/pull/2738" - ], - "pr_dates": ["2024-10-06", "2024-10-18", "2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142515794?v=4", - "login": "ganjivamshiii", - "url": "https://github.com/ganjivamshiii", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/226", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/83", - "https://github.com/mansiruhil13/Bobble-AI/pull/583", - "https://github.com/GSSoC24/Postman-Challenge/pull/2440" - ], - "pr_dates": ["2024-10-08", "2024-10-11", "2024-10-13", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89463068?u=cf143f88a22e041e7c037c0c4e41ec3aebfc0afe&v=4", - "login": "iAmDiksha", - "url": "https://github.com/iAmDiksha", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/810", - "https://github.com/Anjaliavv51/Retro/pull/171", - "https://github.com/AlgoGenesis/C/pull/163", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/97", - "https://github.com/GSSoC24/Postman-Challenge/pull/2451" - ], - "pr_dates": ["2024-10-04", "2024-10-07", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118257126?v=4", - "login": "Varsha567", - "url": "https://github.com/Varsha567", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/15", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/56", - "https://github.com/tanishaness/SPROCTOR/pull/15", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/99", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/65", - "https://github.com/GSSoC24/Postman-Challenge/pull/2410" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-14", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179954813?u=6f211ab202f046da6b9884034360ec25ea821e7f&v=4", - "login": "EvanSingee", - "url": "https://github.com/EvanSingee", - "score": 595, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamparas0/TIC-TAC-TOE/pull/364", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/171", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/164", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/157", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/137", - "https://github.com/GSSoC24/Postman-Challenge/pull/2697" - ], - "pr_dates": [ - "2024-10-21", - "2024-10-22", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/19876675?u=c8e7e26e9717d79c502df0e5b63092ac7fb11326&v=4", - "login": "shibasarkar", - "url": "https://github.com/shibasarkar", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/99", - "https://github.com/Luson045/medi-connect/pull/204", - "https://github.com/Luson045/medi-connect/pull/182", - "https://github.com/Luson045/medi-connect/pull/173", - "https://github.com/Luson045/medi-connect/pull/167", - "https://github.com/Luson045/medi-connect/pull/148", - "https://github.com/GSSoC24/Postman-Challenge/pull/2004" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-23", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156917684?u=03e566b986cfd2803dad079e51a74d9194ce1496&v=4", - "login": "sumitkumar9128", - "url": "https://github.com/sumitkumar9128", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/38", - "https://github.com/codeaashu/DevDisplay/pull/286", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/251", - "https://github.com/iamrahulmahato/master-web-development/pull/1120", - "https://github.com/vansh-codes/ChaosWeb/pull/182", - "https://github.com/GSSoC24/Postman-Challenge/pull/2156" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-10", - "2024-10-13", - "2024-10-16", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124272314?u=fd20e44afc8e385299d708b683665070536e101f&v=4", - "login": "anadisharma121", - "url": "https://github.com/anadisharma121", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/746", - "https://github.com/anuragverma108/SwapReads/pull/3719", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/254", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/602", - "https://github.com/GSSoC24/Postman-Challenge/pull/1731" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-10", - "2024-10-14", - "2024-10-16", - "2024-10-18" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147203563?v=4", - "login": "Kunj05", - "url": "https://github.com/Kunj05", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1241", - "https://github.com/ajay-dhangar/algo/pull/1150", - "https://github.com/Luson045/medi-connect/pull/49", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/38", - "https://github.com/iamrahulmahato/master-web-development/pull/334", - "https://github.com/multiverseweb/Dataverse/pull/6", - "https://github.com/GSSoC24/Postman-Challenge/pull/2205" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-21", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145892931?u=ab90c14056f6955abb11b14da8a00be03d7d4da9&v=4", - "login": "shivanjalikarande", - "url": "https://github.com/shivanjalikarande", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/377", - "https://github.com/codeaashu/DevDisplay/pull/440", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/999", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/974", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/179", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/322", - "https://github.com/GSSoC24/Postman-Challenge/pull/3010" - ], - "pr_dates": [ - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-10-30", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111789884?u=624981e0871ed6635ba2abb9b19407599c149d0d&v=4", - "login": "govindbairi", - "url": "https://github.com/govindbairi", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1263", - "https://github.com/anuragverma108/SwapReads/pull/3893", - "https://github.com/Bitbox-Connect/Bitbox/pull/286", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1798", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1204", - "https://github.com/iamrahulmahato/master-web-development/pull/1538", - "https://github.com/GSSoC24/Postman-Challenge/pull/2648" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143414991?v=4", - "login": "Abhi9shinde", - "url": "https://github.com/Abhi9shinde", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/669", - "https://github.com/vishanurag/Canvas-Editor/pull/300", - "https://github.com/Bitbox-Connect/Bitbox/pull/56", - "https://github.com/swarooppatilx/scruter/pull/97", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/418", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/321", - "https://github.com/GSSoC24/Postman-Challenge/pull/2923" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156679198?u=fbbea5d6e27610ea5c1ecc0bea0751da26836f7c&v=4", - "login": "paridhi1114", - "url": "https://github.com/paridhi1114", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4110", - "https://github.com/ayush-that/FinVeda/pull/2262", - "https://github.com/GSSoC24/Postman-Challenge/pull/2494" - ], - "pr_dates": ["2024-10-26", "2024-10-27"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123018603?u=a39bb59798e4d298a1bf543dc6f9b8c2fa45bf1d&v=4", - "login": "akanksha1055", - "url": "https://github.com/akanksha1055", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3277", - "https://github.com/anuragverma108/SwapReads/pull/3276", - "https://github.com/dohinaf/basic-icecream-website/pull/508", - "https://github.com/recodehive/awesome-github-profiles/pull/872", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/387", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/377", - "https://github.com/GSSoC24/Postman-Challenge/pull/2650" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-16", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166861248?u=3cc4ea1ed7db4e845e77ccab8b9910f8c970becf&v=4", - "login": "divyalakshmi0", - "url": "https://github.com/divyalakshmi0", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3022", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/180", - "https://github.com/AlgoGenesis/C/pull/1459", - "https://github.com/AlgoGenesis/C/pull/1391", - "https://github.com/AlgoGenesis/C/pull/1151", - "https://github.com/AlgoGenesis/C/pull/764", - "https://github.com/AlgoGenesis/C/pull/685", - "https://github.com/AlgoGenesis/C/pull/437", - "https://github.com/AlgoGenesis/C/pull/348", - "https://github.com/GSSoC24/Postman-Challenge/pull/1854" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-22", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83232962?u=5f1b2e180d7d60078d412bb467319dc8dc8e52d4&v=4", - "login": "hamzathul", - "url": "https://github.com/hamzathul", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/860", - "https://github.com/ayush-that/FinVeda/pull/1503", - "https://github.com/iamrahulmahato/master-web-development/pull/1177", - "https://github.com/vansh-codes/ChaosWeb/pull/119", - "https://github.com/VigneshDevHub/CampX/pull/149", - "https://github.com/GSSoC24/Postman-Challenge/pull/1795" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-14", - "2024-10-15", - "2024-10-18", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136051483?u=6a84a80f20f4568294e8108bb48f8bc573d4920b&v=4", - "login": "anushkaa-dubey", - "url": "https://github.com/anushkaa-dubey", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/391", - "https://github.com/dhairyagothi/StationGuide/pull/222", - "https://github.com/dhairyagothi/StationGuide/pull/146", - "https://github.com/AlgoGenesis/C/pull/1139", - "https://github.com/GSSoC24/Postman-Challenge/pull/2671" - ], - "pr_dates": ["2024-10-08", "2024-10-12", "2024-10-22", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95460188?u=bf835d20588276254f8a246ebee960910e706a47&v=4", - "login": "MitulSonagara", - "url": "https://github.com/MitulSonagara", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/110", - "https://github.com/Harshdev098/Research-Nexas/pull/81", - "https://github.com/himeshparashar/Social-Morph/pull/60", - "https://github.com/himeshparashar/Social-Morph/pull/59", - "https://github.com/GSSoC24/Postman-Challenge/pull/2052" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-13", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138239913?u=91952305831efbbff95b6d47e0298ceb44bd93bd&v=4", - "login": "ananas304", - "url": "https://github.com/ananas304", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/591", - "https://github.com/recodehive/machine-learning-repos/pull/1522", - "https://github.com/recodehive/machine-learning-repos/pull/1475", - "https://github.com/recodehive/machine-learning-repos/pull/1439", - "https://github.com/GSSoC24/Postman-Challenge/pull/2049" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-17", - "2024-10-20", - "2024-10-21", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143310914?u=10c973e7ec9e019563c03491b390b1f6abd6dccb&v=4", - "login": "Jayesh-Waghmare", - "url": "https://github.com/Jayesh-Waghmare", - "score": 590, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1127", - "https://github.com/recodehive/awesome-github-profiles/pull/1040", - "https://github.com/recodehive/awesome-github-profiles/pull/987", - "https://github.com/recodehive/awesome-github-profiles/pull/981", - "https://github.com/recodehive/awesome-github-profiles/pull/964", - "https://github.com/recodehive/awesome-github-profiles/pull/960", - "https://github.com/GSSoC24/Postman-Challenge/pull/2898" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-20", - "2024-10-23", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69794677?u=bd2413013478a24bb2c48169eda7c2e2a1f46d0a&v=4", - "login": "KashishJuneja101003", - "url": "https://github.com/KashishJuneja101003", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/995", - "https://github.com/ajay-dhangar/algo/pull/830", - "https://github.com/Kushal997-das/Project-Guidance/pull/1531", - "https://github.com/Kushal997-das/Project-Guidance/pull/1516", - "https://github.com/Kushal997-das/Project-Guidance/pull/1425", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1137", - "https://github.com/AlgoGenesis/C/pull/1076", - "https://github.com/yashasvini121/predictive-calc/pull/116", - "https://github.com/GSSoC24/Postman-Challenge/pull/2589" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-16", - "2024-10-19", - "2024-10-20", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148078708?v=4", - "login": "LNischala", - "url": "https://github.com/LNischala", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/723", - "https://github.com/ANSHIKA-26/WordWise/pull/772", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/972", - "https://github.com/ayush-that/FinVeda/pull/1134", - "https://github.com/ayush-that/FinVeda/pull/1088", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/268", - "https://github.com/GSSoC24/Postman-Challenge/pull/2706" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-20", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127117868?u=89832ec9291c50f448cf49375710154273862772&v=4", - "login": "INam1995", - "url": "https://github.com/INam1995", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/343", - "https://github.com/dohinaf/basic-icecream-website/pull/505", - "https://github.com/param-code/counter-app/pull/84", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1439", - "https://github.com/PriyaGhosal/BuddyTrail/pull/586", - "https://github.com/ayerhssb/Appointment-booking-app/pull/70", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/26", - "https://github.com/vanshchauhan21/CryptoTracker/pull/55", - "https://github.com/GSSoC24/Postman-Challenge/pull/2421" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-12", - "2024-10-18", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126139519?u=29f3ce69017623515c6bc93dfe367aebdc8844dc&v=4", - "login": "Sivasaiklu", - "url": "https://github.com/Sivasaiklu", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/636", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/286", - "https://github.com/ayush-that/FinVeda/pull/1739", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/548", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/546", - "https://github.com/AlgoGenesis/C/pull/1231", - "https://github.com/iamrahulmahato/master-web-development/pull/1439", - "https://github.com/GSSoC24/Postman-Challenge/pull/1787" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-25", - "2024-10-26" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161489017?v=4", - "login": "Harshitha-Annam", - "url": "https://github.com/Harshitha-Annam", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/393", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/377", - "https://github.com/mansiruhil13/Bobble-AI/pull/369", - "https://github.com/iamrahulmahato/master-web-development/pull/527", - "https://github.com/GSSoC24/Postman-Challenge/pull/2013" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-11", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154724710?u=8ff8dc21cf8cda38fe4c13570554f6259a1d92c4&v=4", - "login": "charrviwadhwa", - "url": "https://github.com/charrviwadhwa", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4320", - "https://github.com/anuragverma108/SwapReads/pull/4226", - "https://github.com/anuragverma108/SwapReads/pull/4194", - "https://github.com/anuragverma108/SwapReads/pull/4152", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1002", - "https://github.com/iamrahulmahato/master-web-development/pull/1934", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/678", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1090", - "https://github.com/GSSoC24/Postman-Challenge/pull/2147", - "https://github.com/GSSoC24/Postman-Challenge/pull/1717" - ], - "pr_dates": [ - "2024-09-06", - "2024-10-24", - "2024-10-28", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153050125?v=4", - "login": "PoojaKanagaraj06", - "url": "https://github.com/PoojaKanagaraj06", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/166", - "https://github.com/arjunatapadkar/codeteria/pull/118", - "https://github.com/iamrahulmahato/master-web-development/pull/1916", - "https://github.com/iamrahulmahato/master-web-development/pull/1908", - "https://github.com/iamrahulmahato/master-web-development/pull/1874", - "https://github.com/iamrahulmahato/master-web-development/pull/1756", - "https://github.com/GVishnudhasan/NoDueProject/pull/77", - "https://github.com/GSSoC24/Postman-Challenge/pull/1990" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-16", - "2024-10-23", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116359939?u=6f4ab679ea497f63459a7d6794025734d776fac4&v=4", - "login": "adityapandey23", - "url": "https://github.com/adityapandey23", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arpittiwari24/YourNextSaas.online/pull/15", - "https://github.com/himeshparashar/Social-Morph/pull/23", - "https://github.com/himeshparashar/Social-Morph/pull/20", - "https://github.com/Puskar-Roy/create-my-api/pull/56", - "https://github.com/Puskar-Roy/create-my-api/pull/32", - "https://github.com/rahulsainlll/git-trace/pull/57", - "https://github.com/rahulsainlll/git-trace/pull/46", - "https://github.com/GSSoC24/Postman-Challenge/pull/2866" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147091465?v=4", - "login": "anirudh-248", - "url": "https://github.com/anirudh-248", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/80", - "https://github.com/UTSAVS26/PySnippets/pull/99", - "https://github.com/UTSAVS26/PyVerse/pull/260", - "https://github.com/UTSAVS26/PyVerse/pull/230", - "https://github.com/GSSoC24/Postman-Challenge/pull/2614" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-09", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169763021?u=b8b742e0a22a002fc5c41e43d0be605996502033&v=4", - "login": "eshalshaikh07", - "url": "https://github.com/eshalshaikh07", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/56", - "https://github.com/Bitbox-Connect/Bitbox/pull/102", - "https://github.com/jahnvisahni31/DesignDeck/pull/63", - "https://github.com/iamrahulmahato/master-web-development/pull/750", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/54", - "https://github.com/Soujanya2004/wanderlust-2024/pull/79", - "https://github.com/vansh-codes/ChaosWeb/pull/94", - "https://github.com/GSSoC24/Postman-Challenge/pull/2783" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-29", - "2024-10-30" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136875712?u=3b5cad1fa6131c661b75c451205f7da668ea20f8&v=4", - "login": "Vaibhavkumar5158", - "url": "https://github.com/Vaibhavkumar5158", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/380", - "https://github.com/dhairyagothi/StationGuide/pull/261", - "https://github.com/dohinaf/basic-icecream-website/pull/433", - "https://github.com/dohinaf/basic-icecream-website/pull/143", - "https://github.com/GSSoC24/Postman-Challenge/pull/2505" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-10", - "2024-10-15", - "2024-10-22", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126577744?u=23f4e703d204ad5a504e18103eefb32fe0d7bc58&v=4", - "login": "pradyumna14", - "url": "https://github.com/pradyumna14", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/984", - "https://github.com/apu52/METAVERSE/pull/1322", - "https://github.com/apu52/METAVERSE/pull/1320", - "https://github.com/UTSAVS26/PyVerse/pull/770", - "https://github.com/UTSAVS26/PyVerse/pull/768", - "https://github.com/GSSoC24/Postman-Challenge/pull/2405" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171162522?v=4", - "login": "KrishnaMohanty08", - "url": "https://github.com/KrishnaMohanty08", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/816", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/169", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/168", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/328", - "https://github.com/GSSoC24/Postman-Challenge/pull/2427" - ], - "pr_dates": ["2024-10-12", "2024-10-16", "2024-10-26", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152715005?v=4", - "login": "Ananyashetty7", - "url": "https://github.com/Ananyashetty7", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1845", - "https://github.com/iamrahulmahato/master-web-development/pull/1820", - "https://github.com/UTSAVS26/PyVerse/pull/393", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1258", - "https://github.com/GSSoC24/Postman-Challenge/pull/2692" - ], - "pr_dates": ["2024-10-09", "2024-10-27", "2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127370497?u=49f08791d4d2de42293aab4db93a21b3a8477d8a&v=4", - "login": "Amnyadav", - "url": "https://github.com/Amnyadav", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/286", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/232", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/219", - "https://github.com/apu52/METAVERSE/pull/1340", - "https://github.com/GSSoC24/Postman-Challenge/pull/2995" - ], - "pr_dates": ["2024-10-11", "2024-10-14", "2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150573213?u=bced8bd15e207f7a513a1152cbd7bd26b8e86670&v=4", - "login": "Farhan-Ahmad01", - "url": "https://github.com/Farhan-Ahmad01", - "score": 585, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/90", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/86", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/60", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/44", - "https://github.com/GSSoC24/Postman-Challenge/pull/2637" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-10", - "2024-10-11", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124600225?u=b4fbbd56cdeeb84dec7f6fbf84834a0d39084ff9&v=4", - "login": "Mahak-Codes", - "url": "https://github.com/Mahak-Codes", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1087", - "https://github.com/ajay-dhangar/algo/pull/1086", - "https://github.com/ajay-dhangar/algo/pull/941", - "https://github.com/ajay-dhangar/algo/pull/940", - "https://github.com/ajay-dhangar/algo/pull/831", - "https://github.com/ajay-dhangar/algo/pull/814", - "https://github.com/ajay-dhangar/algo/pull/812", - "https://github.com/iamrahulmahato/master-web-development/pull/1358", - "https://github.com/GSSoC24/Postman-Challenge/pull/2136" - ], - "pr_dates": ["2024-10-16", "2024-10-17", "2024-10-20", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71945388?u=b0ebf40b887bac8b9a174ddccbd6aeb7bff2519f&v=4", - "login": "oebelus", - "url": "https://github.com/oebelus", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/9", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/31", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/26", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/33", - "https://github.com/GSSoC24/Postman-Challenge/pull/1948" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-09", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141239484?v=4", - "login": "agarwalbhargavi", - "url": "https://github.com/agarwalbhargavi", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/452", - "https://github.com/ankit071105/Ticket-Booking/pull/619", - "https://github.com/anuragverma108/SwapReads/pull/4048", - "https://github.com/anuragverma108/SwapReads/pull/4045", - "https://github.com/ayush-that/FinVeda/pull/1982", - "https://github.com/ayush-that/FinVeda/pull/1835", - "https://github.com/c0sm0void/ReVot/pull/103", - "https://github.com/GSSoC24/Postman-Challenge/pull/2366", - "https://github.com/kvcops/KV-Nexus/pull/13" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-26" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138098021?u=8445568ad4eae65f0e02563f463bf70b82712a71&v=4", - "login": "shivi13102", - "url": "https://github.com/shivi13102", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/143", - "https://github.com/UTSAVS26/PyVerse/pull/691", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1156", - "https://github.com/GSSoC24/Postman-Challenge/pull/2765" - ], - "pr_dates": ["2024-10-15", "2024-10-17", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130130937?u=96a6ca79572aacd54e457041de01c626a44b6618&v=4", - "login": "Sambashivarao-Boyina", - "url": "https://github.com/Sambashivarao-Boyina", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/458", - "https://github.com/codeaashu/DevDisplay/pull/421", - "https://github.com/codeaashu/DevDisplay/pull/414", - "https://github.com/GSSoC24/Postman-Challenge/pull/2566" - ], - "pr_dates": ["2024-10-24", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128764530?u=308f17d77f9988231be052a41623b6f5ab31b4ef&v=4", - "login": "Kaibalya27", - "url": "https://github.com/Kaibalya27", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/581", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/541", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/530", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/516", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/487", - "https://github.com/GSSoC24/Postman-Challenge/pull/2317" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168556741?u=28387791b1add57665d53d6c1bdeff25515a0280&v=4", - "login": "smartfellow1234", - "url": "https://github.com/smartfellow1234", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kota-Karthik/twinTrim/pull/121", - "https://github.com/Kota-Karthik/twinTrim/pull/42", - "https://github.com/Kota-Karthik/twinTrim/pull/39", - "https://github.com/Kota-Karthik/twinTrim/pull/36", - "https://github.com/prrockzed/nvimDev/pull/27", - "https://github.com/GSSoC24/Postman-Challenge/pull/1808" - ], - "pr_dates": ["2024-10-02", "2024-10-15", "2024-10-17", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140084295?u=c7f69ce5deb0c1a2b063276b0c71ca4eecfafe6e&v=4", - "login": "neyhere07", - "url": "https://github.com/neyhere07", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1559", - "https://github.com/Kushal997-das/Project-Guidance/pull/1512", - "https://github.com/Kushal997-das/Project-Guidance/pull/1416", - "https://github.com/GSSoC24/Postman-Challenge/pull/2473" - ], - "pr_dates": ["2024-10-10", "2024-10-19", "2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182425428?u=2ff6219a136b983daecdab3dbc83654bc2fcee7e&v=4", - "login": "ABHISIKTAcommits", - "url": "https://github.com/ABHISIKTAcommits", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/938", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/165", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/20", - "https://github.com/swarooppatilx/scruter/pull/60", - "https://github.com/visheshrwl/Uber-like/pull/35", - "https://github.com/GSSoC24/Postman-Challenge/pull/2562" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-09", - "2024-10-17", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181838474?v=4", - "login": "mohammedanaf", - "url": "https://github.com/mohammedanaf", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1564", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/591", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/242", - "https://github.com/GSSoC24/Postman-Challenge/pull/2403" - ], - "pr_dates": ["2024-10-09", "2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105061589?u=0040522109c75a4329cb28d268b2137aa6d8ce95&v=4", - "login": "shreyasparaj", - "url": "https://github.com/shreyasparaj", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1458", - "https://github.com/UTSAVS26/PyVerse/pull/898", - "https://github.com/UTSAVS26/PyVerse/pull/765", - "https://github.com/UTSAVS26/PyVerse/pull/733", - "https://github.com/UTSAVS26/PyVerse/pull/659", - "https://github.com/GSSoC24/Postman-Challenge/pull/2369" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-20", - "2024-10-21", - "2024-10-25", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121609855?u=7a628bb57cc08c58e213b80612a334f469af6d3b&v=4", - "login": "rahulvarma2005", - "url": "https://github.com/rahulvarma2005", - "score": 580, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/165", - "https://github.com/soham0005/ElectroKart/pull/128", - "https://github.com/soham0005/ElectroKart/pull/60", - "https://github.com/GSSoC24/Postman-Challenge/pull/2316" - ], - "pr_dates": ["2024-10-06", "2024-10-10", "2024-10-13", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166730422?u=e69c2fd76cb33e1a8565d03d5ae7ee45b2911fd1&v=4", - "login": "Krishnamverma951", - "url": "https://github.com/Krishnamverma951", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1087", - "https://github.com/vishanurag/Canvas-Editor/pull/338", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/344", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/191", - "https://github.com/PriyaGhosal/BuddyTrail/pull/233", - "https://github.com/07sumit1002/CabRental/pull/183", - "https://github.com/GSSoC24/Postman-Challenge/pull/2900" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151960291?v=4", - "login": "rohir1132yadav", - "url": "https://github.com/rohir1132yadav", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/793", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/26", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/68", - "https://github.com/mansiruhil13/Bobble-AI/pull/769", - "https://github.com/andoriyaprashant/DevDocsHub/pull/99", - "https://github.com/Trisha-tech/OnlineBookSales/pull/432", - "https://github.com/GSSoC24/Postman-Challenge/pull/3044" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-11", - "2024-10-15", - "2024-10-17", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150636101?v=4", - "login": "Nelcy17", - "url": "https://github.com/Nelcy17", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1439", - "https://github.com/ajay-dhangar/algo/pull/1349", - "https://github.com/anuragverma108/SwapReads/pull/4027", - "https://github.com/multiverseweb/CodeIt/pull/246", - "https://github.com/GSSoC24/Postman-Challenge/pull/2528", - "https://github.com/kvcops/KV-Nexus/pull/42", - "https://github.com/kvcops/KV-Nexus/pull/27" - ], - "pr_dates": ["2024-10-26", "2024-10-27"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108697331?u=0be24ed3ba09b114f5d537a07c52ae2aacf3ca4e&v=4", - "login": "4F24L", - "url": "https://github.com/4F24L", - "score": 575, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/219", - "https://github.com/ajay-dhangar/algo/pull/218", - "https://github.com/ANSHIKA-26/WordWise/pull/1207", - "https://github.com/ANSHIKA-26/WordWise/pull/253", - "https://github.com/ANSHIKA-26/WordWise/pull/226", - "https://github.com/ANSHIKA-26/WordWise/pull/183", - "https://github.com/anuragverma108/SwapReads/pull/3762", - "https://github.com/anuragverma108/SwapReads/pull/3647", - "https://github.com/vishanurag/Canvas-Editor/pull/135", - "https://github.com/ayush-that/FinVeda/pull/1108", - "https://github.com/ayush-that/FinVeda/pull/1066", - "https://github.com/mdazfar2/Ezyshop/pull/260", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/636", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/618", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/147", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/122", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/102", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/358", - "https://github.com/Luson045/medi-connect/pull/271", - "https://github.com/mansiruhil13/Bobble-AI/pull/776", - "https://github.com/mansiruhil13/Bobble-AI/pull/618", - "https://github.com/mansiruhil13/Bobble-AI/pull/434", - "https://github.com/mansiruhil13/Bobble-AI/pull/413", - "https://github.com/mansiruhil13/Bobble-AI/pull/411", - "https://github.com/mansiruhil13/Bobble-AI/pull/377", - "https://github.com/mansiruhil13/Bobble-AI/pull/361", - "https://github.com/mansiruhil13/Bobble-AI/pull/343", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/110", - "https://github.com/PriyaGhosal/BuddyTrail/pull/983", - "https://github.com/PriyaGhosal/BuddyTrail/pull/933", - "https://github.com/PriyaGhosal/BuddyTrail/pull/833", - "https://github.com/iamrahulmahato/master-web-development/pull/1406", - "https://github.com/iamrahulmahato/master-web-development/pull/1395", - "https://github.com/iamrahulmahato/master-web-development/pull/296", - "https://github.com/iamrahulmahato/master-web-development/pull/279", - "https://github.com/iamrahulmahato/master-web-development/pull/261", - "https://github.com/SaranshBangar/Daneizo/pull/115", - "https://github.com/SaranshBangar/Daneizo/pull/100", - "https://github.com/SaranshBangar/Daneizo/pull/58", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/256", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/333" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154585091?v=4", - "login": "Akki-58", - "url": "https://github.com/Akki-58", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/52", - "https://github.com/ajay-dhangar/algo/pull/19", - "https://github.com/sanjay-kv/Open-source-Practice/pull/197", - "https://github.com/GSSoC24/Postman-Challenge/pull/2930" - ], - "pr_dates": ["2024-05-10", "2024-10-02", "2024-10-04", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99851764?u=352ac9afcba753697dcd0e6af6867d3981ea58e4&v=4", - "login": "sagarbendale2004", - "url": "https://github.com/sagarbendale2004", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3312", - "https://github.com/anuragverma108/SwapReads/pull/3309", - "https://github.com/anuragverma108/SwapReads/pull/3218", - "https://github.com/Anjaliavv51/Retro/pull/492", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/486", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/456", - "https://github.com/GSSoC24/Postman-Challenge/pull/2722" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157238544?u=a895c3aec9cab0de18e494b4e080c7690e99b7eb&v=4", - "login": "akshattiwarii", - "url": "https://github.com/akshattiwarii", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/187", - "https://github.com/recodehive/machine-learning-repos/pull/1519", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/720", - "https://github.com/GSSoC24/Postman-Challenge/pull/2543" - ], - "pr_dates": ["2024-10-05", "2024-10-16", "2024-10-21", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/80464993?u=8a5ead94fd865e30c39c9b494f7e970609490b71&v=4", - "login": "DarshanKrishna-DK", - "url": "https://github.com/DarshanKrishna-DK", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/1121", - "https://github.com/mansiruhil13/Bobble-AI/pull/835", - "https://github.com/07sumit1002/CabRental/pull/281", - "https://github.com/GSSoC24/Postman-Challenge/pull/2817" - ], - "pr_dates": ["2024-10-07", "2024-10-16", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84591027?u=39baa6404099b15f2cec02f2e360dd24fcf39e30&v=4", - "login": "pranusri1903", - "url": "https://github.com/pranusri1903", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/227", - "https://github.com/param-code/counter-app/pull/207", - "https://github.com/07sumit1002/CabRental/pull/478", - "https://github.com/07sumit1002/CabRental/pull/302", - "https://github.com/GSSoC24/Postman-Challenge/pull/2227" - ], - "pr_dates": ["2024-10-08", "2024-10-19", "2024-10-21", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117425933?u=bf8ed3f793d0c378d67a42a4c9c33d044af8bc4c&v=4", - "login": "biswa2005", - "url": "https://github.com/biswa2005", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/663", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/660", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/612", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/583", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/526", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/484", - "https://github.com/GSSoC24/Postman-Challenge/pull/2330" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-23", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180070281?u=e68c850d22802a5038afd3e72ac73b6af174df65&v=4", - "login": "Anushka-kar", - "url": "https://github.com/Anushka-kar", - "score": 575, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1206", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1205", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1180", - "https://github.com/GSSoC24/Postman-Challenge/pull/2356" - ], - "pr_dates": ["2024-10-19", "2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115576990?v=4", - "login": "Sameeratweb", - "url": "https://github.com/Sameeratweb", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/188", - "https://github.com/anuragverma108/SwapReads/pull/3007", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/152", - "https://github.com/samyakmaitre/eventmint/pull/342", - "https://github.com/samyakmaitre/eventmint/pull/289", - "https://github.com/samyakmaitre/eventmint/pull/164", - "https://github.com/samyakmaitre/eventmint/pull/154", - "https://github.com/samyakmaitre/eventmint/pull/62", - "https://github.com/recodehive/machine-learning-repos/pull/1565", - "https://github.com/UTSAVS26/PyVerse/pull/843", - "https://github.com/GSSoC24/Postman-Challenge/pull/1982" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-09", - "2024-10-13", - "2024-10-14", - "2024-10-17", - "2024-10-23", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170945841?v=4", - "login": "BVaishnavi15", - "url": "https://github.com/BVaishnavi15", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/175", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/147", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/124", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/350", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/279", - "https://github.com/GSSoC24/Postman-Challenge/pull/2564" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-13", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149037331?v=4", - "login": "Iampratyush004", - "url": "https://github.com/Iampratyush004", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/344", - "https://github.com/iamrahulmahato/master-web-development/pull/1005", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/154", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/56", - "https://github.com/GSSoC24/Postman-Challenge/pull/2298" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-04", - "2024-10-11", - "2024-10-13", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149046088?u=bc5862013724cef70b45858c82847a359bc10fa4&v=4", - "login": "yasheela-alla", - "url": "https://github.com/yasheela-alla", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/100", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/29", - "https://github.com/Ratnesh-Team/Rehabify/pull/48", - "https://github.com/AmateursLeague/sneaky-package/pull/91", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/75", - "https://github.com/GSSoC24/Postman-Challenge/pull/1931" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171610177?v=4", - "login": "Mrunali01", - "url": "https://github.com/Mrunali01", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/725", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/952", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/913", - "https://github.com/recodehive/awesome-github-profiles/pull/1166", - "https://github.com/GSSoC24/Postman-Challenge/pull/2453" - ], - "pr_dates": ["2024-10-25", "2024-10-26", "2024-10-27", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142388242?v=4", - "login": "VanshGarg06", - "url": "https://github.com/VanshGarg06", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/960", - "https://github.com/vishanurag/Canvas-Editor/pull/649", - "https://github.com/ayush-that/FinVeda/pull/2096", - "https://github.com/AlgoGenesis/C/pull/1315", - "https://github.com/GSSoC24/Postman-Challenge/pull/2976" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-17", - "2024-10-26", - "2024-10-27", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119479391?u=9a526d8028bc2910bba1242d52e8b8b847123515&v=4", - "login": "puneeth072003", - "url": "https://github.com/puneeth072003", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/293", - "https://github.com/anuj123upadhyay/MegaBlog/pull/291", - "https://github.com/Trisha-tech/OnlineBookSales/pull/497", - "https://github.com/Trisha-tech/OnlineBookSales/pull/347", - "https://github.com/GSSoC24/Postman-Challenge/pull/2454" - ], - "pr_dates": ["2024-10-07", "2024-10-16", "2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147732624?v=4", - "login": "SiddarthaKarri", - "url": "https://github.com/SiddarthaKarri", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3173", - "https://github.com/PriyaGhosal/BuddyTrail/pull/445", - "https://github.com/iamrahulmahato/master-web-development/pull/917", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/333", - "https://github.com/GSSoC24/Postman-Challenge/pull/2724" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-12", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144975933?u=76724b42f608c94976f0280a2343be85972528fb&v=4", - "login": "Theboycut05", - "url": "https://github.com/Theboycut05", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1748", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1003", - "https://github.com/recodehive/awesome-github-profiles/pull/990", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/725", - "https://github.com/GSSoC24/Postman-Challenge/pull/2226" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-24", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178164785?v=4", - "login": "tanishirai", - "url": "https://github.com/tanishirai", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1351", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/131", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/329", - "https://github.com/vanshchauhan21/CryptoTracker/pull/69", - "https://github.com/vanshchauhan21/CryptoTracker/pull/52", - "https://github.com/GSSoC24/Postman-Challenge/pull/2907" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-16", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139607627?v=4", - "login": "Shreya-1305", - "url": "https://github.com/Shreya-1305", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/193", - "https://github.com/divyansh-2005/FinNews/pull/182", - "https://github.com/GSSoC24/Postman-Challenge/pull/2516" - ], - "pr_dates": ["2024-10-14", "2024-10-15", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143409270?u=b43689e802f27d3460466961a0e9dc5126e63453&v=4", - "login": "Mr-DK07", - "url": "https://github.com/Mr-DK07", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/42", - "https://github.com/PriyaGhosal/BuddyTrail/pull/163", - "https://github.com/vansh-codes/ChaosWeb/pull/81", - "https://github.com/vansh-codes/ChaosWeb/pull/41", - "https://github.com/GSSoC24/Postman-Challenge/pull/1895" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166757928?u=bf629ca748c80aefe2b233b5f0fad23da19f3ab9&v=4", - "login": "Piyush-t24", - "url": "https://github.com/Piyush-t24", - "score": 570, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Webaddicted91/Visieum2.0/pull/78", - "https://github.com/Webaddicted91/Visieum2.0/pull/52", - "https://github.com/GSSoC24/Postman-Challenge/pull/1824" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109466557?u=97ac0e7d78d0509c6b03f1ce441eb4f2842b2e6b&v=4", - "login": "Nimrat0199", - "url": "https://github.com/Nimrat0199", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/99", - "https://github.com/jinx-vi-0/passop/pull/67", - "https://github.com/jinx-vi-0/passop/pull/35", - "https://github.com/jinx-vi-0/passop/pull/27", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/246", - "https://github.com/GSSoC24/Postman-Challenge/pull/2005" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-14", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184351568?u=450f8a4360322a28d992dbe342b82a34856bafb1&v=4", - "login": "KGupta2601", - "url": "https://github.com/KGupta2601", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1640", - "https://github.com/ANSHIKA-26/WordWise/pull/1024", - "https://github.com/c0sm0void/ReVot/pull/108", - "https://github.com/soham0005/ElectroKart/pull/283", - "https://github.com/Scribbie-Notes/notes-app/pull/200", - "https://github.com/GSSoC24/Postman-Challenge/pull/2482" - ], - "pr_dates": ["2024-10-16", "2024-10-26", "2024-10-27", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127383096?u=36d628d807c7345ec7fe0207ef345a200824338d&v=4", - "login": "OmmDevgoswami", - "url": "https://github.com/OmmDevgoswami", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/790", - "https://github.com/c0sm0void/ReVot/pull/94", - "https://github.com/PriyaGhosal/BuddyTrail/pull/988", - "https://github.com/PriyaGhosal/BuddyTrail/pull/689", - "https://github.com/UTSAVS26/PyVerse/pull/678", - "https://github.com/GSSoC24/Postman-Challenge/pull/2166" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153417068?v=4", - "login": "Kratik1093", - "url": "https://github.com/Kratik1093", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/38", - "https://github.com/ajay-dhangar/algo/pull/16", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/209", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/45", - "https://github.com/Anjaliavv51/Retro/pull/176", - "https://github.com/tushargupta1504/Medical-Website/pull/150", - "https://github.com/GSSoC24/Postman-Challenge/pull/2290" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158683308?u=a2adab44751f8802d9224b435f3016e3809a8c9c&v=4", - "login": "GyanaPrakashSahoo7853", - "url": "https://github.com/GyanaPrakashSahoo7853", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/329", - "https://github.com/Kushal997-das/Project-Guidance/pull/1457", - "https://github.com/tushargupta1504/Medical-Website/pull/610", - "https://github.com/GSSoC24/Postman-Challenge/pull/1897" - ], - "pr_dates": ["2024-10-13", "2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142209650?u=4620392ea5aee18a2add4eb5eeef4173c9a482dc&v=4", - "login": "priyanshaggarwal001", - "url": "https://github.com/priyanshaggarwal001", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/47", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/45", - "https://github.com/ombhojane/explainableai/pull/101", - "https://github.com/sk66641/AquaGuardians/pull/29", - "https://github.com/sk66641/AquaGuardians/pull/19", - "https://github.com/GSSoC24/Postman-Challenge/pull/2910", - "https://github.com/GSSoC24/Postman-Challenge/pull/2871" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-07", - "2024-10-10", - "2024-10-14", - "2024-10-30", - "2024-10-31" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150253719?u=c1e714eec44475af7c3b5a3b194364ee6c15473a&v=4", - "login": "harshgupta2125", - "url": "https://github.com/harshgupta2125", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/808", - "https://github.com/ankit071105/Ticket-Booking/pull/780", - "https://github.com/ankit071105/Ticket-Booking/pull/586", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/420", - "https://github.com/iamrahulmahato/master-web-development/pull/993", - "https://github.com/GSSoC24/Postman-Challenge/pull/2599" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-23", - "2024-10-24", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93467337?v=4", - "login": "SandhyaSankararaman", - "url": "https://github.com/SandhyaSankararaman", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/511", - "https://github.com/vishanurag/Canvas-Editor/pull/759", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/741", - "https://github.com/GSSoC24/Postman-Challenge/pull/2397" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-21", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140665310?u=c2523ac01941f42e0202757e3342fbd8aab21e2e&v=4", - "login": "LaibaKhalil61", - "url": "https://github.com/LaibaKhalil61", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4064", - "https://github.com/anuragverma108/SwapReads/pull/3776", - "https://github.com/anuragverma108/SwapReads/pull/3760", - "https://github.com/anuragverma108/SwapReads/pull/3749", - "https://github.com/anuragverma108/SwapReads/pull/3730", - "https://github.com/GSSoC24/Postman-Challenge/pull/2646" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-26", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115721290?u=4c51d9d816aad16c0894be50490d4c2c3827862e&v=4", - "login": "manikdamle", - "url": "https://github.com/manikdamle", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3471", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/517", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/369", - "https://github.com/mansiruhil13/Bobble-AI/pull/278", - "https://github.com/mansiruhil13/Bobble-AI/pull/273", - "https://github.com/GSSoC24/Postman-Challenge/pull/1981" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-12", - "2024-10-14", - "2024-10-15", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182593635?u=fffc8c8589da8780119683a21894ca75487f87f5&v=4", - "login": "KartikSaxena19", - "url": "https://github.com/KartikSaxena19", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/719", - "https://github.com/ombhojane/explainableai/pull/41", - "https://github.com/AlgoGenesis/C/pull/449", - "https://github.com/GSSoC24/Postman-Challenge/pull/1963" - ], - "pr_dates": ["2024-10-03", "2024-10-10", "2024-10-19", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144300640?u=41233ca353a127828d0183f28c2338bff92569de&v=4", - "login": "jatinkaushik-jk", - "url": "https://github.com/jatinkaushik-jk", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/231", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/629", - "https://github.com/4darsh-Dev/DecenTrade/pull/128", - "https://github.com/GSSoC24/Postman-Challenge/pull/1980" - ], - "pr_dates": ["2024-10-12", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137044290?u=1c52fcc094aaf52cc782b669b7f399cf6b923247&v=4", - "login": "MrityunjaySingh09", - "url": "https://github.com/MrityunjaySingh09", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/400", - "https://github.com/dhairyagothi/StationGuide/pull/387", - "https://github.com/dhairyagothi/StationGuide/pull/29", - "https://github.com/GSSoC24/Postman-Challenge/pull/2672" - ], - "pr_dates": ["2024-10-01", "2024-10-22", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113229572?u=74b5a0d8e90d631fc5ef8f7c3eb2fd7d848c4369&v=4", - "login": "maniacedoc", - "url": "https://github.com/maniacedoc", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/434", - "https://github.com/PriyaGhosal/BuddyTrail/pull/918", - "https://github.com/PriyaGhosal/BuddyTrail/pull/540", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/511", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/393", - "https://github.com/GSSoC24/Postman-Challenge/pull/1750" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-17" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175953741?u=035740b34219eecbdb9310f97e9992cb19211b1e&v=4", - "login": "bhavanireddy57", - "url": "https://github.com/bhavanireddy57", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/455", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/186", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/257", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/40", - "https://github.com/vansh-codes/ChaosWeb/pull/37", - "https://github.com/GSSoC24/Postman-Challenge/pull/2007" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135952646?u=fffe87fc211dd443b7dbb161a38b7f20f16549b0&v=4", - "login": "Mayukh-Mandal2005", - "url": "https://github.com/Mayukh-Mandal2005", - "score": 565, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/234", - "https://github.com/Anjaliavv51/Retro/pull/222", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/482", - "https://github.com/GSSoC24/Postman-Challenge/pull/2701" - ], - "pr_dates": ["2024-10-05", "2024-10-16", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155739971?v=4", - "login": "aakanshimalik", - "url": "https://github.com/aakanshimalik", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/729", - "https://github.com/vishanurag/Canvas-Editor/pull/612", - "https://github.com/vishanurag/Canvas-Editor/pull/607", - "https://github.com/ayush-that/FinVeda/pull/1696", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/580", - "https://github.com/multiverseweb/CodeIt/pull/220", - "https://github.com/GSSoC24/Postman-Challenge/pull/2667" - ], - "pr_dates": [ - "2024-10-15", - "2024-10-16", - "2024-10-20", - "2024-10-22", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120390344?u=b56b5f1aa8be2986db52d730f7c3249fcac8b2f9&v=4", - "login": "Grandhi-Harshitha", - "url": "https://github.com/Grandhi-Harshitha", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1661", - "https://github.com/ajay-dhangar/algo/pull/1345", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1285", - "https://github.com/GSSoC24/Postman-Challenge/pull/2110" - ], - "pr_dates": ["2024-10-24", "2024-10-27", "2024-10-30", "2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120378233?v=4", - "login": "itbindu", - "url": "https://github.com/itbindu", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/132", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/91", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/49", - "https://github.com/GSSoC24/Postman-Challenge/pull/2683" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-09", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160831982?u=ad41baa6fe63ddcd647b822db54c5c3a4d2f79f5&v=4", - "login": "AmanPatre", - "url": "https://github.com/AmanPatre", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/737", - "https://github.com/ANSHIKA-26/WordWise/pull/722", - "https://github.com/ANSHIKA-26/WordWise/pull/509", - "https://github.com/anuragverma108/SwapReads/pull/3184", - "https://github.com/AlgoGenesis/C/pull/615", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/349", - "https://github.com/GSSoC24/Postman-Challenge/pull/2781" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146866457?u=027ab69eca6486933731eb352c63992d192ebb06&v=4", - "login": "aadhi-i", - "url": "https://github.com/aadhi-i", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4021", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/55", - "https://github.com/dohinaf/basic-icecream-website/pull/19", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/170", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/56", - "https://github.com/apu52/Travel_Website/pull/1530", - "https://github.com/GSSoC24/Postman-Challenge/pull/2828" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-07", - "2024-10-18", - "2024-10-26", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130135533?v=4", - "login": "fluid111", - "url": "https://github.com/fluid111", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/968", - "https://github.com/Kota-Karthik/twinTrim/pull/111", - "https://github.com/multiverseweb/CodeIt/pull/208", - "https://github.com/GSSoC24/Postman-Challenge/pull/2536" - ], - "pr_dates": ["2024-10-10", "2024-10-21", "2024-10-26", "2024-10-27"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183261112?u=2a32a3071a188c44e4c6563151f07e3c3fdcf4b2&v=4", - "login": "aashutosh585", - "url": "https://github.com/aashutosh585", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/349", - "https://github.com/Code-Social/official-website/pull/310", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/622", - "https://github.com/GSSoC24/Postman-Challenge/pull/2396" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-22", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158725366?v=4", - "login": "AyutheCoder", - "url": "https://github.com/AyutheCoder", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/196", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/107", - "https://github.com/mansiruhil13/Bobble-AI/pull/416", - "https://github.com/GSSoC24/Postman-Challenge/pull/2777" - ], - "pr_dates": ["2024-10-02", "2024-10-06", "2024-10-08", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122341923?u=ff388b630acb87485936e29a502e6ad4d2ba54de&v=4", - "login": "Maryam0330", - "url": "https://github.com/Maryam0330", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/198", - "https://github.com/c0sm0void/ReVot/pull/79", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/119", - "https://github.com/GSSoC24/Postman-Challenge/pull/2296" - ], - "pr_dates": ["2024-10-12", "2024-10-13", "2024-10-15", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119002315?u=88b7afd3d5a42d0ea21b20e8f97735fe153ff72b&v=4", - "login": "RiteshS1", - "url": "https://github.com/RiteshS1", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/145", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/76", - "https://github.com/iamrahulmahato/master-web-development/pull/109", - "https://github.com/GSSoC24/Postman-Challenge/pull/1730" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140509669?u=4456ffff3d93d7130e8dc18a698b2968ac14c7f7&v=4", - "login": "khushidadwal", - "url": "https://github.com/khushidadwal", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/25", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/420", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/415", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/383", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/342", - "https://github.com/UTSAVS26/PyVerse/pull/660", - "https://github.com/GSSoC24/Postman-Challenge/pull/2029" - ], - "pr_dates": ["2024-10-14", "2024-10-16", "2024-10-17", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132190262?v=4", - "login": "nisarg107", - "url": "https://github.com/nisarg107", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jiggy9/JCT/pull/82", - "https://github.com/Jiggy9/JCT/pull/33", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1187", - "https://github.com/GSSoC24/Postman-Challenge/pull/2814" - ], - "pr_dates": ["2024-10-08", "2024-10-20", "2024-10-22", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71967787?v=4", - "login": "Stuti333", - "url": "https://github.com/Stuti333", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1576", - "https://github.com/AlgoGenesis/C/pull/1481", - "https://github.com/yashasvini121/predictive-calc/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/1956" - ], - "pr_dates": ["2024-10-05", "2024-10-23", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178473368?u=923028fe075bd50a2876f7646a95e4dbabcf2876&v=4", - "login": "akansha-02", - "url": "https://github.com/akansha-02", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/232", - "https://github.com/07sumit1002/CabRental/pull/455", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/138", - "https://github.com/GSSoC24/Postman-Challenge/pull/2600" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-18", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123228827?u=5511dbdee05f3b3db1cc7414f52d0d8821a4a839&v=4", - "login": "SKG24", - "url": "https://github.com/SKG24", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1377", - "https://github.com/AlgoGenesis/C/pull/1252", - "https://github.com/recodehive/awesome-github-profiles/pull/967", - "https://github.com/UTSAVS26/PyVerse/pull/944", - "https://github.com/UTSAVS26/PyVerse/pull/910", - "https://github.com/UTSAVS26/PyVerse/pull/891", - "https://github.com/GSSoC24/Postman-Challenge/pull/2649" - ], - "pr_dates": ["2024-10-19", "2024-10-26", "2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135634085?v=4", - "login": "Jetshree", - "url": "https://github.com/Jetshree", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1786", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1557", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1016", - "https://github.com/GSSoC24/Postman-Challenge/pull/3105" - ], - "pr_dates": ["2024-10-18", "2024-10-26", "2024-10-30", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161701360?u=bc689de6f4b4beb05db3f8e834856adaf05be2e7&v=4", - "login": "saksham-1304", - "url": "https://github.com/saksham-1304", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1156", - "https://github.com/recodehive/awesome-github-profiles/pull/1135", - "https://github.com/recodehive/awesome-github-profiles/pull/1050", - "https://github.com/GSSoC24/Postman-Challenge/pull/2305" - ], - "pr_dates": ["2024-10-23", "2024-10-25", "2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98489478?u=5385eb3d78bdaadb2f197fe3bf02d27150c4451b&v=4", - "login": "GLITCH-in-MATRIX9", - "url": "https://github.com/GLITCH-in-MATRIX9", - "score": 560, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/220", - "https://github.com/soham0005/ElectroKart/pull/218", - "https://github.com/soham0005/ElectroKart/pull/183", - "https://github.com/GSSoC24/Postman-Challenge/pull/2486" - ], - "pr_dates": ["2024-10-13", "2024-10-15", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143445468?u=1a1d45b46774e9090aabbe3b4519701f10159157&v=4", - "login": "soham0028", - "url": "https://github.com/soham0028", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/693", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/354", - "https://github.com/jahnvisahni31/DesignDeck/pull/107", - "https://github.com/soham0005/ElectroKart/pull/178", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/570", - "https://github.com/GSSoC24/Postman-Challenge/pull/2602" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165669207?v=4", - "login": "mansi066", - "url": "https://github.com/mansi066", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1580", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/410", - "https://github.com/GSSoC24/Postman-Challenge/pull/2513" - ], - "pr_dates": ["2024-10-27", "2024-10-28", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115357567?u=b1555ecc472887cf0f5df7b79def00bbed68e309&v=4", - "login": "mehendisil2004", - "url": "https://github.com/mehendisil2004", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4109", - "https://github.com/vishanurag/Canvas-Editor/pull/839", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/805", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/588", - "https://github.com/GSSoC24/Postman-Challenge/pull/2082" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-23", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111375547?u=f6b23955fbd326fe521cc5bb5ea76bdc728642fe&v=4", - "login": "aarch34", - "url": "https://github.com/aarch34", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/348", - "https://github.com/swarooppatilx/scruter/pull/187", - "https://github.com/GSSoC24/Postman-Challenge/pull/3080" - ], - "pr_dates": ["2024-10-17", "2024-10-22", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121166926?u=d739ebe2cf39c8a50adc82ed3dd38d5ce2c8a8d7&v=4", - "login": "PRathod27", - "url": "https://github.com/PRathod27", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/341", - "https://github.com/soham0005/ElectroKart/pull/259", - "https://github.com/GSSoC24/Postman-Challenge/pull/2253" - ], - "pr_dates": ["2024-10-20", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115057561?v=4", - "login": "RandomSummer", - "url": "https://github.com/RandomSummer", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/60", - "https://github.com/yashasvini121/predictive-calc/pull/132", - "https://github.com/GSSoC24/Postman-Challenge/pull/2982" - ], - "pr_dates": ["2024-10-12", "2024-10-17", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114846137?u=78dcc81e35e631556b4c0f85cb37882e034c963f&v=4", - "login": "kottarivaibhav", - "url": "https://github.com/kottarivaibhav", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/my-calendar-app/pull/26", - "https://github.com/divyansh-2005/my-calendar-app/pull/11", - "https://github.com/divyansh-2005/my-calendar-app/pull/8", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/519", - "https://github.com/GSSoC24/Postman-Challenge/pull/1909" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112682897?u=b08102182c85c82f343b0aafb61a429a0393bc79&v=4", - "login": "sujeet9682", - "url": "https://github.com/sujeet9682", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/883", - "https://github.com/samyakmaitre/eventmint/pull/480", - "https://github.com/samyakmaitre/eventmint/pull/479", - "https://github.com/samyakmaitre/eventmint/pull/450", - "https://github.com/GSSoC24/Postman-Challenge/pull/3050" - ], - "pr_dates": ["2024-10-25", "2024-10-27", "2024-10-31", "2024-11-01"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121280025?v=4", - "login": "Soumya0927", - "url": "https://github.com/Soumya0927", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/677", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/673", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/667", - "https://github.com/yashasvini121/predictive-calc/pull/194", - "https://github.com/GSSoC24/Postman-Challenge/pull/2610" - ], - "pr_dates": ["2024-10-28", "2024-10-29", "2024-10-30"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167601810?u=2851900a5d4295747e7edc8360ca60dbf908e47c&v=4", - "login": "Baig-fatema", - "url": "https://github.com/Baig-fatema", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/713", - "https://github.com/AlgoGenesis/C/pull/616", - "https://github.com/iamrahulmahato/master-web-development/pull/1682", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/694", - "https://github.com/GSSoC24/Postman-Challenge/pull/2622" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-14", - "2024-10-24", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148750291?u=1b60b12e82cba1931ae70f8d70ec180b57606e7e&v=4", - "login": "Abbas7120", - "url": "https://github.com/Abbas7120", - "score": 555, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/102", - "https://github.com/recodehive/awesome-github-profiles/pull/1173", - "https://github.com/GSSoC24/Postman-Challenge/pull/2019" - ], - "pr_dates": ["2024-10-03", "2024-10-23", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90645484?u=8efe38c2fbe1630ec54c8a45e54ec20f76c9dce7&v=4", - "login": "Siddhart2004", - "url": "https://github.com/Siddhart2004", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/928", - "https://github.com/ajay-dhangar/algo/pull/850", - "https://github.com/iamrahulmahato/master-web-development/pull/1607", - "https://github.com/iamrahulmahato/master-web-development/pull/1525", - "https://github.com/apu52/Travel_Website/pull/1533", - "https://github.com/GSSoC24/Postman-Challenge/pull/2417" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144465422?v=4", - "login": "verma2402", - "url": "https://github.com/verma2402", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1566", - "https://github.com/ANSHIKA-26/WordWise/pull/1456", - "https://github.com/ANSHIKA-26/WordWise/pull/1185", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/51", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/40", - "https://github.com/GSSoC24/Postman-Challenge/pull/2343" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-25", - "2024-10-26", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104294992?u=b5c5cd11dbee326c7f12964358206de85abc2e33&v=4", - "login": "hiteashgupta1", - "url": "https://github.com/hiteashgupta1", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1140", - "https://github.com/ANSHIKA-26/WordWise/pull/229", - "https://github.com/ANSHIKA-26/WordWise/pull/118", - "https://github.com/GSSoC24/Postman-Challenge/pull/2809" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-18", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139432649?u=5ff9833df4ea5b35d30a36f852d65aca63bf82e6&v=4", - "login": "psanyalaich", - "url": "https://github.com/psanyalaich", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/236", - "https://github.com/recodehive/machine-learning-repos/pull/1564", - "https://github.com/recodehive/machine-learning-repos/pull/1507", - "https://github.com/UTSAVS26/PyVerse/pull/824", - "https://github.com/UTSAVS26/PyVerse/pull/723", - "https://github.com/GSSoC24/Postman-Challenge/pull/2470" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-20", - "2024-10-24", - "2024-10-25", - "2024-10-26" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134909263?u=306dc5ff6fd1a1b2839102b7a55bc1ff8fa30c25&v=4", - "login": "LegendCK", - "url": "https://github.com/LegendCK", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1575", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/460", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/133", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/49", - "https://github.com/apu52/Travel_Website/pull/1602", - "https://github.com/GSSoC24/Postman-Challenge/pull/2062" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-23", - "2024-10-28", - "2024-10-29", - "2024-10-30" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104666507?u=95dd458961fdd51d4de25f6d9c2569b0831e7f2e&v=4", - "login": "Praju2002", - "url": "https://github.com/Praju2002", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Soujanya2004/wanderlust-2024/pull/38", - "https://github.com/VigneshDevHub/CampX/pull/152", - "https://github.com/GSSoC24/Postman-Challenge/pull/1873" - ], - "pr_dates": ["2024-10-07", "2024-10-12", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160756794?u=6cd84918cf998b83714fe8e76bd5db68645b508c&v=4", - "login": "saismrutiranjan18", - "url": "https://github.com/saismrutiranjan18", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Soujanya2004/wanderlust-2024/pull/18", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/301", - "https://github.com/GSSoC24/Postman-Challenge/pull/2744" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153143167?u=796616056ca1967400ea6bfb25751e46d2617ab9&v=4", - "login": "PratikMane0112", - "url": "https://github.com/PratikMane0112", - "score": 550, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/4darsh-Dev/DecenTrade/pull/46", - "https://github.com/vanshchauhan21/CryptoTracker/pull/61", - "https://github.com/GSSoC24/Postman-Challenge/pull/1923" - ], - "pr_dates": ["2024-10-17", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156937864?u=1ff88625ebdaefd44e46442addf0ddf1f91d5867&v=4", - "login": "8721111", - "url": "https://github.com/8721111", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/485", - "https://github.com/GSSoC24/Postman-Challenge/pull/2664" - ], - "pr_dates": ["2024-10-29", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84196704?v=4", - "login": "Pratzybha", - "url": "https://github.com/Pratzybha", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/961", - "https://github.com/GSSoC24/Postman-Challenge/pull/2091" - ], - "pr_dates": ["2024-10-24", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134507152?u=44896e796032725d8973a0aa4d424d7dd4d6b3fd&v=4", - "login": "we-nita", - "url": "https://github.com/we-nita", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/663", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/654", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/679", - "https://github.com/GSSoC24/Postman-Challenge/pull/2634" - ], - "pr_dates": ["2024-10-15", "2024-10-17", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123585663?u=95b83e2aeaab7e8317686b65b6d0d2372957e7a0&v=4", - "login": "sahhoArjun097", - "url": "https://github.com/sahhoArjun097", - "score": 545, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/620", - "https://github.com/aditya-bhaumik/Pathsphere/pull/381", - "https://github.com/aditya-bhaumik/Pathsphere/pull/344", - "https://github.com/aditya-bhaumik/Pathsphere/pull/63", - "https://github.com/aditya-bhaumik/Pathsphere/pull/43", - "https://github.com/aditya-bhaumik/Pathsphere/pull/10", - "https://github.com/GarimaSingh0109/WasteManagment/pull/382", - "https://github.com/GarimaSingh0109/WasteManagment/pull/379", - "https://github.com/GarimaSingh0109/WasteManagment/pull/375", - "https://github.com/GarimaSingh0109/WasteManagment/pull/350", - "https://github.com/GarimaSingh0109/WasteManagment/pull/339", - "https://github.com/GarimaSingh0109/WasteManagment/pull/275", - "https://github.com/GarimaSingh0109/WasteManagment/pull/257", - "https://github.com/GarimaSingh0109/WasteManagment/pull/244", - "https://github.com/GarimaSingh0109/WasteManagment/pull/241", - "https://github.com/GarimaSingh0109/WasteManagment/pull/214", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/362", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/317", - "https://github.com/tushargupta1504/Medical-Website/pull/48", - "https://github.com/Vin205/Enyanjyoti/pull/98", - "https://github.com/Vin205/Enyanjyoti/pull/63", - "https://github.com/Vin205/Enyanjyoti/pull/35", - "https://github.com/Vin205/Enyanjyoti/pull/17", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/21", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/343", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/239", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/162", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/160" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-20", - "2024-10-21" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128205241?u=2d25ef19ff19fb00bb9539c4978a1d12c237ac12&v=4", - "login": "Meetpidev", - "url": "https://github.com/Meetpidev", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/949", - "https://github.com/Open-Code-Crafters/FitFlex/pull/408", - "https://github.com/mansiruhil13/Bobble-AI/pull/963", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/510", - "https://github.com/GSSoC24/Postman-Challenge/pull/3034" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138988501?u=e443638aa5cb95c2a777f3f17e01d0a410c69eab&v=4", - "login": "sambedan1", - "url": "https://github.com/sambedan1", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/559", - "https://github.com/vishanurag/Canvas-Editor/pull/963", - "https://github.com/AlgoGenesis/C/pull/1406", - "https://github.com/GSSoC24/Postman-Challenge/pull/3077" - ], - "pr_dates": ["2024-10-26", "2024-10-27", "2024-10-29", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89507255?u=fedb1be57458cebeec1ee944e4d6aa8bb801109b&v=4", - "login": "razputshivanshu", - "url": "https://github.com/razputshivanshu", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/76", - "https://github.com/GSSoC24/Postman-Challenge/pull/2529" - ], - "pr_dates": ["2024-10-04", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150283338?u=d06ba354746606f5621b9f256647dd6ff93a44dc&v=4", - "login": "Prachiikhar25", - "url": "https://github.com/Prachiikhar25", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1585", - "https://github.com/vishanurag/Canvas-Editor/pull/991", - "https://github.com/vishanurag/Canvas-Editor/pull/261", - "https://github.com/GSSoC24/Postman-Challenge/pull/2225" - ], - "pr_dates": ["2024-10-06", "2024-10-24", "2024-10-27", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152975718?u=2574387bdabf77b3d45ccce92671172962654712&v=4", - "login": "sachinggsingh", - "url": "https://github.com/sachinggsingh", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1099", - "https://github.com/vishanurag/Canvas-Editor/pull/938", - "https://github.com/Code-Social/official-website/pull/447", - "https://github.com/GSSoC24/Postman-Challenge/pull/2550" - ], - "pr_dates": ["2024-10-25", "2024-10-27", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178921109?u=f85025514b4d8bbce80ef890fbbb3e9434d659ef&v=4", - "login": "Aazib-at-hub", - "url": "https://github.com/Aazib-at-hub", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1075", - "https://github.com/andoriyaprashant/DevDocsHub/pull/107", - "https://github.com/PriyaGhosal/BuddyTrail/pull/793", - "https://github.com/GSSoC24/Postman-Challenge/pull/1993" - ], - "pr_dates": ["2024-10-10", "2024-10-15", "2024-10-17", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173945962?u=ade7eb603f3286edbbf5188ca4d9ee50502a1f1a&v=4", - "login": "omjadhav18", - "url": "https://github.com/omjadhav18", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/BamaCharanChhandogi/READMEasy/pull/47", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/134", - "https://github.com/multiverseweb/CodeIt/pull/25", - "https://github.com/GSSoC24/Postman-Challenge/pull/1830" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-07", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145976235?u=368f02d77211c498ec88008d910fa5b664d54449&v=4", - "login": "Utkarsha156", - "url": "https://github.com/Utkarsha156", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/973", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/820", - "https://github.com/recodehive/awesome-github-profiles/pull/1011", - "https://github.com/GSSoC24/Postman-Challenge/pull/2604" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121992255?u=3f6b69307aa2ef0fa16f8ae9e79474d523e9d2a2&v=4", - "login": "RanitDERIA", - "url": "https://github.com/RanitDERIA", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Megh2005/Med-o-Next/pull/97", - "https://github.com/param-code/counter-app/pull/235", - "https://github.com/VigneshDevHub/CampX/pull/137", - "https://github.com/GSSoC24/Postman-Challenge/pull/2009" - ], - "pr_dates": ["2024-10-09", "2024-10-15", "2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164517953?v=4", - "login": "poojabagodi", - "url": "https://github.com/poojabagodi", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1954", - "https://github.com/iamrahulmahato/master-web-development/pull/1696", - "https://github.com/iamrahulmahato/master-web-development/pull/404", - "https://github.com/Soujanya2004/wanderlust-2024/pull/213", - "https://github.com/GSSoC24/Postman-Challenge/pull/2507" - ], - "pr_dates": ["2024-10-05", "2024-10-24", "2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159716085?v=4", - "login": "Shreyansh-G", - "url": "https://github.com/Shreyansh-G", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Akasxh/Terrain-Recognition/pull/29", - "https://github.com/GSSoC24/Postman-Challenge/pull/2742" - ], - "pr_dates": ["2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181590429?u=6855a278a4508ab2954ad4d45de31188c73602cf&v=4", - "login": "patiltrupti6105", - "url": "https://github.com/patiltrupti6105", - "score": 545, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/32", - "https://github.com/GSSoC24/Postman-Challenge/pull/2643" - ], - "pr_dates": ["2024-10-06", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167575288?u=472a03ea9ecbc9c652233dbb56a334689693b089&v=4", - "login": "1754riya", - "url": "https://github.com/1754riya", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/721", - "https://github.com/ANSHIKA-26/WordWise/pull/1029", - "https://github.com/ANSHIKA-26/WordWise/pull/1023", - "https://github.com/ayush-that/FinVeda/pull/1327", - "https://github.com/GSSoC24/Postman-Challenge/pull/2399" - ], - "pr_dates": ["2024-10-16", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153702696?u=979309792810e18a7c9673ff9b7bba6da1562b31&v=4", - "login": "ChetanSingh14", - "url": "https://github.com/ChetanSingh14", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1034", - "https://github.com/ajay-dhangar/algo/pull/1023", - "https://github.com/Code-Social/official-website/pull/323", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/140", - "https://github.com/GSSoC24/Postman-Challenge/pull/2135" - ], - "pr_dates": ["2024-10-19", "2024-10-21", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147143243?u=709d159fcf7dd1f6ff29640ec2c6d9cfa39d348a&v=4", - "login": "Devaki01", - "url": "https://github.com/Devaki01", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/205", - "https://github.com/vishanurag/Canvas-Editor/pull/160", - "https://github.com/mdazfar2/Ezyshop/pull/106", - "https://github.com/Vin205/Enyanjyoti/pull/45", - "https://github.com/GSSoC24/Postman-Challenge/pull/1879" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-07", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119858761?v=4", - "login": "devanshaggarwal03", - "url": "https://github.com/devanshaggarwal03", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1398", - "https://github.com/anuragverma108/SwapReads/pull/3754", - "https://github.com/iamrahulmahato/master-web-development/pull/1936", - "https://github.com/recodehive/awesome-github-profiles/pull/1020", - "https://github.com/GSSoC24/Postman-Challenge/pull/2386" - ], - "pr_dates": ["2024-10-19", "2024-10-22", "2024-10-25", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144675544?v=4", - "login": "Jerusha547", - "url": "https://github.com/Jerusha547", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/179", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/135", - "https://github.com/dohinaf/basic-icecream-website/pull/454", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/544", - "https://github.com/GSSoC24/Postman-Challenge/pull/2638" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-11", - "2024-10-13", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164842537?u=eea0fceb76dea677b589a86153626bf962ffd1e7&v=4", - "login": "parteekxo", - "url": "https://github.com/parteekxo", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/kom-senapati/bot-verse/pull/137", - "https://github.com/kom-senapati/bot-verse/pull/95", - "https://github.com/kom-senapati/bot-verse/pull/93", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/392", - "https://github.com/GSSoC24/Postman-Challenge/pull/1858" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-19", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136791401?u=08f670e943d462b73452b68d813713d3887f2aa0&v=4", - "login": "ayushijainn111", - "url": "https://github.com/ayushijainn111", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/216", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/156", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/131", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/34", - "https://github.com/GSSoC24/Postman-Challenge/pull/2740" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-08", - "2024-10-11", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103061474?u=0ecd946acd8030966bc548472eec8e56243e007e&v=4", - "login": "nithinrvs", - "url": "https://github.com/nithinrvs", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/Scrape-ML/pull/299", - "https://github.com/recodehive/Scrape-ML/pull/293", - "https://github.com/TenzDelek/DearDiary/pull/25", - "https://github.com/vansh-codes/Gityzer/pull/53", - "https://github.com/GSSoC24/Postman-Challenge/pull/1875" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-22", - "2024-10-26", - "2024-10-30", - "2024-10-31" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137729176?u=a8139b38158489301e6d47e3ad865485fb944f74&v=4", - "login": "Jivanjamadar", - "url": "https://github.com/Jivanjamadar", - "score": 540, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/apu52/METAVERSE/pull/1293", - "https://github.com/UTSAVS26/PyVerse/pull/847", - "https://github.com/UTSAVS26/PyVerse/pull/752", - "https://github.com/UTSAVS26/PyVerse/pull/692", - "https://github.com/GSSoC24/Postman-Challenge/pull/1986" - ], - "pr_dates": ["2024-10-17", "2024-10-20", "2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129390867?u=a51aa1bee5e0d29930611a68e613071a7b44546d&v=4", - "login": "ag21o9", - "url": "https://github.com/ag21o9", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/48", - "https://github.com/Kota-Karthik/twinTrim/pull/63", - "https://github.com/GSSoC24/Postman-Challenge/pull/2675" - ], - "pr_dates": ["2024-10-04", "2024-10-09", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145034107?u=886beb41d2d052bace82b4324822734dae98451f&v=4", - "login": "awhyshll", - "url": "https://github.com/awhyshll", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/962", - "https://github.com/aditya-bhaumik/Pathsphere/pull/957", - "https://github.com/GSSoC24/Postman-Challenge/pull/2776" - ], - "pr_dates": ["2024-10-22", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/56585080?u=7839e6a995f151f21c909cf859b9f1fb7b49a047&v=4", - "login": "PRASHANTSWAROOP001", - "url": "https://github.com/PRASHANTSWAROOP001", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/152", - "https://github.com/AlgoGenesis/C/pull/608", - "https://github.com/GSSoC24/Postman-Challenge/pull/1936" - ], - "pr_dates": ["2024-10-07", "2024-10-12", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98573923?u=add5e2b0e58feb8556960000735d2cfb4457d87c&v=4", - "login": "suhaib-lone", - "url": "https://github.com/suhaib-lone", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/133", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/70", - "https://github.com/GSSoC24/Postman-Challenge/pull/2212" - ], - "pr_dates": ["2024-10-05", "2024-10-13", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96575564?v=4", - "login": "MOHINI1403", - "url": "https://github.com/MOHINI1403", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/137", - "https://github.com/divyansh-2005/my-calendar-app/pull/44", - "https://github.com/GSSoC24/Postman-Challenge/pull/2668" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146419909?u=b1273a4da34f615aa7a836a9e50b1de062fd2731&v=4", - "login": "surajgoraicse", - "url": "https://github.com/surajgoraicse", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/5", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/78", - "https://github.com/GSSoC24/Postman-Challenge/pull/3043" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139348491?u=164974d9db120020ad62d0ae108a5d2880c0bd56&v=4", - "login": "swamimalode07", - "url": "https://github.com/swamimalode07", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anki2003ta/Museum/pull/107", - "https://github.com/GarimaSingh0109/WasteManagment/pull/228", - "https://github.com/GSSoC24/Postman-Challenge/pull/1849" - ], - "pr_dates": ["2024-10-08", "2024-10-11", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114466262?u=fe052721de5aace3ad3b87802336506f6d07c305&v=4", - "login": "murali127", - "url": "https://github.com/murali127", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3191", - "https://github.com/apu52/Travel_Website/pull/1600", - "https://github.com/GSSoC24/Postman-Challenge/pull/2938" - ], - "pr_dates": ["2024-10-10", "2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182801318?u=1fcdf6a73560fe1d0b7e0cc2e42fd3ede2d8c94d&v=4", - "login": "gayu999Code", - "url": "https://github.com/gayu999Code", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/21", - "https://github.com/Bhanu-code/OpenUIMS/pull/8", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/23", - "https://github.com/GSSoC24/Postman-Challenge/pull/2415" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-08", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162007699?u=913aa5af991995b05e051c30a615354c6b7ba162&v=4", - "login": "vedant3337", - "url": "https://github.com/vedant3337", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/262", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1244", - "https://github.com/GSSoC24/Postman-Challenge/pull/2981" - ], - "pr_dates": ["2024-10-27", "2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169290548?v=4", - "login": "Mahy-31", - "url": "https://github.com/Mahy-31", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/156", - "https://github.com/ayush-that/FinVeda/pull/1131", - "https://github.com/GSSoC24/Postman-Challenge/pull/2261" - ], - "pr_dates": ["2024-10-04", "2024-10-12", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122042809?u=0b21b70e6ba40f7d5122c94a06f798e64cfcd0f3&v=4", - "login": "imDarshanGK", - "url": "https://github.com/imDarshanGK", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/307", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/91", - "https://github.com/GSSoC24/Postman-Challenge/pull/1832" - ], - "pr_dates": ["2024-10-09", "2024-10-17", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143527276?u=58da777d6ea98f16a477158660e286b4b30053cc&v=4", - "login": "ak-0283", - "url": "https://github.com/ak-0283", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2586", - "https://github.com/Akshat111111/NexTrade/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/2626" - ], - "pr_dates": ["2024-10-23", "2024-10-28", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177039422?v=4", - "login": "Anushka-200617", - "url": "https://github.com/Anushka-200617", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/542", - "https://github.com/Vin205/Enyanjyoti/pull/471", - "https://github.com/GSSoC24/Postman-Challenge/pull/2645" - ], - "pr_dates": ["2024-10-14", "2024-10-22", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177343822?u=7a07ec4fef97289d5f92f3bec03a752367fc7f04&v=4", - "login": "gurliv21", - "url": "https://github.com/gurliv21", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/89", - "https://github.com/recodehive/machine-learning-repos/pull/1340", - "https://github.com/GSSoC24/Postman-Challenge/pull/1850" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181631373?v=4", - "login": "SatyaD012", - "url": "https://github.com/SatyaD012", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/113", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1100", - "https://github.com/GSSoC24/Postman-Challenge/pull/1891" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135409547?u=32e8ccfbde7ac0b2e3830aa1cc15d7f9ed7a4454&v=4", - "login": "anshika-verma05", - "url": "https://github.com/anshika-verma05", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/450", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/127", - "https://github.com/GSSoC24/Postman-Challenge/pull/1810" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137895306?u=95f08a12d2ddfa6b89b308609cdd72fd3a822238&v=4", - "login": "Ryadav0654", - "url": "https://github.com/Ryadav0654", - "score": 535, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/203", - "https://github.com/TejasNasre/nexmeet/pull/207", - "https://github.com/GSSoC24/Postman-Challenge/pull/2502" - ], - "pr_dates": ["2024-10-08", "2024-10-25", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129350236?u=a7260adedf411f17acd3e33b0decce3ea5d72675&v=4", - "login": "vishantrathi", - "url": "https://github.com/vishantrathi", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1685", - "https://github.com/ajay-dhangar/algo/pull/1684", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/664", - "https://github.com/GSSoC24/Postman-Challenge/pull/3115" - ], - "pr_dates": ["2024-10-31", "2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109586296?v=4", - "login": "mudasirmurtaza", - "url": "https://github.com/mudasirmurtaza", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/52", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/42", - "https://github.com/andoriyaprashant/DevDocsHub/pull/17", - "https://github.com/GSSoC24/Postman-Challenge/pull/3104" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110610024?u=bafacaa3b6127a894e8fb6fc20f502f0d482b767&v=4", - "login": "Nitinreddy09", - "url": "https://github.com/Nitinreddy09", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/686", - "https://github.com/ankit071105/Ticket-Booking/pull/685", - "https://github.com/ankit071105/Ticket-Booking/pull/659", - "https://github.com/GSSoC24/Postman-Challenge/pull/2319" - ], - "pr_dates": ["2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137524477?u=645048375f6737bb96f86a9bbd6ef1db7aba0d34&v=4", - "login": "HarshS16", - "url": "https://github.com/HarshS16", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/515", - "https://github.com/codeaashu/DevDisplay/pull/377", - "https://github.com/recodehive/awesome-github-profiles/pull/1056", - "https://github.com/GSSoC24/Postman-Challenge/pull/2615" - ], - "pr_dates": ["2024-10-21", "2024-10-22", "2024-10-24", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145797233?u=ae954d15e1afbfa068b88db9a9f65788e03767a9&v=4", - "login": "PREM-A261", - "url": "https://github.com/PREM-A261", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/124", - "https://github.com/anuragverma108/SwapReads/pull/2948", - "https://github.com/iamrahulmahato/master-web-development/pull/95", - "https://github.com/GSSoC24/Postman-Challenge/pull/2998" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-04", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166910542?v=4", - "login": "Rupali1104", - "url": "https://github.com/Rupali1104", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/373", - "https://github.com/iamrahulmahato/master-web-development/pull/1391", - "https://github.com/UTSAVS26/PyVerse/pull/729", - "https://github.com/GSSoC24/Postman-Challenge/pull/2947" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-21", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155888152?v=4", - "login": "vidhi-github", - "url": "https://github.com/vidhi-github", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1662", - "https://github.com/Luson045/medi-connect/pull/518", - "https://github.com/Megh2005/Med-o-Next/pull/131", - "https://github.com/GSSoC24/Postman-Challenge/pull/2232" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116245589?u=24d43e8e0a6d46b09d72862ad277283b5fe42ffb&v=4", - "login": "Kamini8707", - "url": "https://github.com/Kamini8707", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1520", - "https://github.com/AlgoGenesis/C/pull/1413", - "https://github.com/AlgoGenesis/C/pull/1140", - "https://github.com/GSSoC24/Postman-Challenge/pull/2670" - ], - "pr_dates": ["2024-10-22", "2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105481974?u=ad32a539305d90a6a055eb7d361e1205b9be1ed0&v=4", - "login": "ishant025", - "url": "https://github.com/ishant025", - "score": 530, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/325", - "https://github.com/UTSAVS26/PyVerse/pull/236", - "https://github.com/UTSAVS26/PyVerse/pull/173", - "https://github.com/GSSoC24/Postman-Challenge/pull/1738" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-07", "2024-10-08"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98112914?u=2d71ffd7a8bcc266d720c4caf71c0a507054112f&v=4", - "login": "zul132", - "url": "https://github.com/zul132", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/943", - "https://github.com/GSSoC24/Postman-Challenge/pull/2700" - ], - "pr_dates": ["2024-10-23", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98889077?v=4", - "login": "Alpha1zln", - "url": "https://github.com/Alpha1zln", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/950", - "https://github.com/GSSoC24/Postman-Challenge/pull/2660" - ], - "pr_dates": ["2024-10-18", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125207797?u=81f4aa6012268a0531bbeeee2a9a9a81bc1ed6c8&v=4", - "login": "Arpin007", - "url": "https://github.com/Arpin007", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/229", - "https://github.com/GSSoC24/Postman-Challenge/pull/3102" - ], - "pr_dates": ["2024-10-14", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102048798?u=38a49dbb9a812cc6e895acf02ebb034fd1fa0fc0&v=4", - "login": "Mandy1200", - "url": "https://github.com/Mandy1200", - "score": 525, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/630", - "https://github.com/ankit071105/Ticket-Booking/pull/622", - "https://github.com/ankit071105/Ticket-Booking/pull/621", - "https://github.com/ankit071105/Ticket-Booking/pull/599", - "https://github.com/ankit071105/Ticket-Booking/pull/593", - "https://github.com/ankit071105/Ticket-Booking/pull/589", - "https://github.com/ankit071105/Ticket-Booking/pull/562", - "https://github.com/ankit071105/Ticket-Booking/pull/416", - "https://github.com/ankit071105/Ticket-Booking/pull/414", - "https://github.com/ankit071105/Ticket-Booking/pull/377", - "https://github.com/ankit071105/Ticket-Booking/pull/376", - "https://github.com/ankit071105/Ticket-Booking/pull/232", - "https://github.com/ankit071105/Ticket-Booking/pull/214", - "https://github.com/ankit071105/Ticket-Booking/pull/184", - "https://github.com/ankit071105/Ticket-Booking/pull/56", - "https://github.com/ankit071105/Ticket-Booking/pull/22", - "https://github.com/recodehive/awesome-github-profiles/pull/963", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/63", - "https://github.com/subhadipbhowmik/bio-branch/pull/110" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-11", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-23", - "2024-10-24", - "2024-10-25" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126875242?u=31ae924f2dd835c5a60013313e24d5c498a7c9a0&v=4", - "login": "itsshreyanigam", - "url": "https://github.com/itsshreyanigam", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/156", - "https://github.com/GSSoC24/Postman-Challenge/pull/2633" - ], - "pr_dates": ["2024-10-03", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149760460?v=4", - "login": "Vivisteria11", - "url": "https://github.com/Vivisteria11", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3690", - "https://github.com/GSSoC24/Postman-Challenge/pull/2960" - ], - "pr_dates": ["2024-10-18", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145205952?v=4", - "login": "tanishkagarg1911", - "url": "https://github.com/tanishkagarg1911", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/49", - "https://github.com/GSSoC24/Postman-Challenge/pull/2569" - ], - "pr_dates": ["2024-10-02", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109548248?u=4aec7f87e1d7175c2171da380d7956219dbbb5fa&v=4", - "login": "swethapadmavathimukku", - "url": "https://github.com/swethapadmavathimukku", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/206", - "https://github.com/GSSoC24/Postman-Challenge/pull/2260" - ], - "pr_dates": ["2024-10-06", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162537017?u=a632b7797305ff72cac6fe62107fdd71faa20512&v=4", - "login": "Shalinis19137", - "url": "https://github.com/Shalinis19137", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/26", - "https://github.com/mansiruhil13/Bobble-AI/pull/109", - "https://github.com/GSSoC24/Postman-Challenge/pull/3046" - ], - "pr_dates": ["2024-10-04", "2024-10-14", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109802850?v=4", - "login": "19Sonali", - "url": "https://github.com/19Sonali", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/254", - "https://github.com/GSSoC24/Postman-Challenge/pull/2471" - ], - "pr_dates": ["2024-10-07", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131527756?u=240c2a8b3236bbd2ab7adaf13187ea482d41d87d&v=4", - "login": "Nikitaganeshbabu", - "url": "https://github.com/Nikitaganeshbabu", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/195", - "https://github.com/GSSoC24/Postman-Challenge/pull/1941" - ], - "pr_dates": ["2024-10-07", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90525214?v=4", - "login": "mraghavi", - "url": "https://github.com/mraghavi", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamparas0/TIC-TAC-TOE/pull/343", - "https://github.com/GSSoC24/Postman-Challenge/pull/1881" - ], - "pr_dates": ["2024-10-20", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157715929?u=30df02de4d39b73b8db06a20df204aa9c059a6a8&v=4", - "login": "AbrerAsif07", - "url": "https://github.com/AbrerAsif07", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1406", - "https://github.com/GSSoC24/Postman-Challenge/pull/2495" - ], - "pr_dates": ["2024-10-23", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157600170?u=d3102867c7088ec6c149c3ec7a0b76d6142aaa6d&v=4", - "login": "sadafhukkeri", - "url": "https://github.com/sadafhukkeri", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/218", - "https://github.com/GSSoC24/Postman-Challenge/pull/2511" - ], - "pr_dates": ["2024-10-07", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113034088?u=0865ac88a08a666d677b424c583c26585b630422&v=4", - "login": "anshumanat", - "url": "https://github.com/anshumanat", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/565", - "https://github.com/GSSoC24/Postman-Challenge/pull/3003" - ], - "pr_dates": ["2024-10-06", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119775910?u=aaa84886e86897e9300933f2de8138d10924ec69&v=4", - "login": "abhishekkrjha2811", - "url": "https://github.com/abhishekkrjha2811", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/76", - "https://github.com/GSSoC24/Postman-Challenge/pull/2327" - ], - "pr_dates": ["2024-10-01", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92354021?u=bc2f0307629dce4e12dbaab0021700adeff38291&v=4", - "login": "KusumPareek99", - "url": "https://github.com/KusumPareek99", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/159", - "https://github.com/GSSoC24/Postman-Challenge/pull/2090" - ], - "pr_dates": ["2024-10-07", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161558039?v=4", - "login": "swayum1004", - "url": "https://github.com/swayum1004", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1034", - "https://github.com/GSSoC24/Postman-Challenge/pull/2961" - ], - "pr_dates": ["2024-10-23", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175220283?u=a3fee55bcf3358ee939917729e826dad66a42b74&v=4", - "login": "extremecoder-rgb", - "url": "https://github.com/extremecoder-rgb", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/SurajPratap10/Imagine_AI/pull/1171", - "https://github.com/GSSoC24/Postman-Challenge/pull/1791" - ], - "pr_dates": ["2024-10-08", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153725052?v=4", - "login": "thlghs", - "url": "https://github.com/thlghs", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/118", - "https://github.com/GSSoC24/Postman-Challenge/pull/2968" - ], - "pr_dates": ["2024-10-11", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155215926?u=55b565b63d47b0f12b3e9f3b5dcb306734f4429e&v=4", - "login": "Jyothishree2k5", - "url": "https://github.com/Jyothishree2k5", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/CodeIt/pull/160", - "https://github.com/GSSoC24/Postman-Challenge/pull/2157" - ], - "pr_dates": ["2024-10-15", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65646203?u=a75275fbb7261aa7ea07ec94115847c9eb330a16&v=4", - "login": "ShudarsanRegmi", - "url": "https://github.com/ShudarsanRegmi", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/86", - "https://github.com/GSSoC24/Postman-Challenge/pull/2682" - ], - "pr_dates": ["2024-10-09", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167693268?u=0c143c872ab698a98c8adf212918ec9f18dc9ee0&v=4", - "login": "priyanshi-codes", - "url": "https://github.com/priyanshi-codes", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vin205/Enyanjyoti/pull/84", - "https://github.com/GSSoC24/Postman-Challenge/pull/1811" - ], - "pr_dates": ["2024-10-06", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125494916?u=cb0835a499315fa0d3036d3b9ffe99423652db0c&v=4", - "login": "subodhkangale07", - "url": "https://github.com/subodhkangale07", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Yashgabani845/hiring-portal/pull/280", - "https://github.com/GSSoC24/Postman-Challenge/pull/2822" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137250561?u=35ffa8a9c5347b0d9dbf60fb6f9d9e97cff34d94&v=4", - "login": "AnleaMJ", - "url": "https://github.com/AnleaMJ", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/29", - "https://github.com/GSSoC24/Postman-Challenge/pull/1821" - ], - "pr_dates": ["2024-10-04", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142134689?u=3d3554e4998799719dfe051694d87488cf404664&v=4", - "login": "itsaartii", - "url": "https://github.com/itsaartii", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/322", - "https://github.com/GSSoC24/Postman-Challenge/pull/2851" - ], - "pr_dates": ["2024-10-21", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123751071?v=4", - "login": "NagasaiPraneeth", - "url": "https://github.com/NagasaiPraneeth", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vanshchauhan21/CryptoTracker/pull/105", - "https://github.com/GSSoC24/Postman-Challenge/pull/1851" - ], - "pr_dates": ["2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152727349?v=4", - "login": "greeshma275", - "url": "https://github.com/greeshma275", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1269", - "https://github.com/GSSoC24/Postman-Challenge/pull/2695" - ], - "pr_dates": ["2024-10-29", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78529538?u=6ba6e617454c4cda22b517109f3c0f7c77463263&v=4", - "login": "adiiiii13", - "url": "https://github.com/adiiiii13", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1268", - "https://github.com/GSSoC24/Postman-Challenge/pull/3059" - ], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126310461?v=4", - "login": "shreyank-reddy", - "url": "https://github.com/shreyank-reddy", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1266", - "https://github.com/GSSoC24/Postman-Challenge/pull/2990" - ], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168916170?u=3ee96635d0cd9dc90904828de1b7e26a2fb00ea9&v=4", - "login": "VBhanusr", - "url": "https://github.com/VBhanusr", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1261", - "https://github.com/GSSoC24/Postman-Challenge/pull/2424" - ], - "pr_dates": ["2024-10-26", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120377977?v=4", - "login": "it221291", - "url": "https://github.com/it221291", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1255", - "https://github.com/GSSoC24/Postman-Challenge/pull/2766" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120767314?v=4", - "login": "Kavyasrigopireddy", - "url": "https://github.com/Kavyasrigopireddy", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1254", - "https://github.com/GSSoC24/Postman-Challenge/pull/2474" - ], - "pr_dates": ["2024-10-26", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142340540?u=24ba4f4e3e308e1c33d9cd47a5ee1f4cd8e69f60&v=4", - "login": "PadmasreeSangani", - "url": "https://github.com/PadmasreeSangani", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1253", - "https://github.com/GSSoC24/Postman-Challenge/pull/2349" - ], - "pr_dates": ["2024-10-25", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120735549?v=4", - "login": "akulla007", - "url": "https://github.com/akulla007", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1251", - "https://github.com/GSSoC24/Postman-Challenge/pull/2189" - ], - "pr_dates": ["2024-10-24", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123935910?v=4", - "login": "amrutha1215", - "url": "https://github.com/amrutha1215", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1250", - "https://github.com/GSSoC24/Postman-Challenge/pull/3071" - ], - "pr_dates": ["2024-10-30", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142029942?u=ac4005b99cfa1ce46907dc538353d92e117440dd&v=4", - "login": "Ranj8521Kumar", - "url": "https://github.com/Ranj8521Kumar", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1230", - "https://github.com/GSSoC24/Postman-Challenge/pull/2402" - ], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184013203?v=4", - "login": "Samridha0305", - "url": "https://github.com/Samridha0305", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1210", - "https://github.com/GSSoC24/Postman-Challenge/pull/2355" - ], - "pr_dates": ["2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176937722?v=4", - "login": "fah-04", - "url": "https://github.com/fah-04", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1204", - "https://github.com/GSSoC24/Postman-Challenge/pull/2347", - "https://github.com/GSSoC24/Postman-Challenge/pull/1748" - ], - "pr_dates": ["2024-10-11", "2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131377126?u=4dbe4d694b8bebab8805114bd017ca260e9929a6&v=4", - "login": "harshita2303", - "url": "https://github.com/harshita2303", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1181", - "https://github.com/GSSoC24/Postman-Challenge/pull/2611" - ], - "pr_dates": ["2024-10-19", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146073201?u=0389af44ea180a0db772987f6e693c473902e885&v=4", - "login": "Sridevi0321", - "url": "https://github.com/Sridevi0321", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1147", - "https://github.com/GSSoC24/Postman-Challenge/pull/1950" - ], - "pr_dates": ["2024-10-15", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171418825?u=79a1cf34c7d1ae847412ca1f804e320899855bea&v=4", - "login": "theritwik", - "url": "https://github.com/theritwik", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1142", - "https://github.com/GSSoC24/Postman-Challenge/pull/2940" - ], - "pr_dates": ["2024-10-14", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146655904?u=2ede781a36e390f689abf660044e8686a47ed7ca&v=4", - "login": "aniii09", - "url": "https://github.com/aniii09", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1119", - "https://github.com/GSSoC24/Postman-Challenge/pull/2984" - ], - "pr_dates": ["2024-10-07", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124905387?u=3af7f81de27eb6481c72d0f94257c39e6b02ddf7&v=4", - "login": "Sibangi-2911", - "url": "https://github.com/Sibangi-2911", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1112", - "https://github.com/GSSoC24/Postman-Challenge/pull/2825" - ], - "pr_dates": ["2024-10-06", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164873550?u=fa07b026d3b90e8e45ebcff6561be56c6953fc48&v=4", - "login": "Prabh-84", - "url": "https://github.com/Prabh-84", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1104", - "https://github.com/GSSoC24/Postman-Challenge/pull/2015" - ], - "pr_dates": ["2024-10-04", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132129385?v=4", - "login": "Varshitha713", - "url": "https://github.com/Varshitha713", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1092", - "https://github.com/GSSoC24/Postman-Challenge/pull/1885" - ], - "pr_dates": ["2024-10-02", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161660281?u=9cc7d97fb0dc8c7b530a31d4706351aa8e35f20f&v=4", - "login": "PiyushG29", - "url": "https://github.com/PiyushG29", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/535", - "https://github.com/GSSoC24/Postman-Challenge/pull/2964" - ], - "pr_dates": ["2024-05-11", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123013327?u=dc81c46422eccdf3b07aaf8f84d49e110874ff1d&v=4", - "login": "PayalKumari10", - "url": "https://github.com/PayalKumari10", - "score": 525, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/393", - "https://github.com/GSSoC24/Postman-Challenge/pull/1964" - ], - "pr_dates": ["2024-05-10", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139145505?v=4", - "login": "Khushi-51", - "url": "https://github.com/Khushi-51", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/626", - "https://github.com/iamrahulmahato/master-web-development/pull/299", - "https://github.com/GSSoC24/Postman-Challenge/pull/3096" - ], - "pr_dates": ["2024-10-03", "2024-10-13", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168345642?v=4", - "login": "krishaarya", - "url": "https://github.com/krishaarya", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/749", - "https://github.com/ankit071105/Ticket-Booking/pull/743", - "https://github.com/GSSoC24/Postman-Challenge/pull/2383" - ], - "pr_dates": ["2024-10-25", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144903933?u=f20f6bb0e63bd3cc211adea9c8f3bf88007a2163&v=4", - "login": "swati-204", - "url": "https://github.com/swati-204", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3429", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1592", - "https://github.com/GSSoC24/Postman-Challenge/pull/2264" - ], - "pr_dates": ["2024-10-14", "2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160380902?u=949bac344e78a1b9142cda1ac7087424923226a4&v=4", - "login": "Adityazzzzz", - "url": "https://github.com/Adityazzzzz", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3250", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/391", - "https://github.com/GSSoC24/Postman-Challenge/pull/2116" - ], - "pr_dates": ["2024-10-11", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153439668?v=4", - "login": "itsHarsh2", - "url": "https://github.com/itsHarsh2", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1100", - "https://github.com/vishanurag/Canvas-Editor/pull/1084", - "https://github.com/GSSoC24/Postman-Challenge/pull/2888" - ], - "pr_dates": ["2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108922810?u=7e254b2574e16b51f5412fee1923ca508b1da67b&v=4", - "login": "Kshitijasharma", - "url": "https://github.com/Kshitijasharma", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/210", - "https://github.com/Code-Social/official-website/pull/340", - "https://github.com/GSSoC24/Postman-Challenge/pull/2023" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109097194?u=346d3d49950af5d4a7784fa6963a999e822f0ef8&v=4", - "login": "dipeshkumar799", - "url": "https://github.com/dipeshkumar799", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/254", - "https://github.com/samyakmaitre/eventmint/pull/389", - "https://github.com/GSSoC24/Postman-Challenge/pull/2378" - ], - "pr_dates": ["2024-10-16", "2024-10-19", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168094736?u=d627a84fd16dd8361b2218a7429b7eee2990278c&v=4", - "login": "puneet426", - "url": "https://github.com/puneet426", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/465", - "https://github.com/codeaashu/DevDisplay/pull/384", - "https://github.com/GSSoC24/Postman-Challenge/pull/2522" - ], - "pr_dates": ["2024-10-22", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88896128?v=4", - "login": "dhruvveragiwala", - "url": "https://github.com/dhruvveragiwala", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/228", - "https://github.com/apu52/Travel_Website/pull/1545", - "https://github.com/GSSoC24/Postman-Challenge/pull/2623" - ], - "pr_dates": ["2024-10-20", "2024-10-25", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167445277?v=4", - "login": "RitikaMaha", - "url": "https://github.com/RitikaMaha", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1682", - "https://github.com/recodehive/awesome-github-profiles/pull/1102", - "https://github.com/GSSoC24/Postman-Challenge/pull/2972" - ], - "pr_dates": ["2024-10-20", "2024-10-26", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176499191?u=8bf7b1b530016a6c7a267bc8e83fca925f53eaab&v=4", - "login": "Kratika-Solanki", - "url": "https://github.com/Kratika-Solanki", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/112", - "https://github.com/mdazfar2/Ezyshop/pull/81", - "https://github.com/GSSoC24/Postman-Challenge/pull/2802" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182531877?u=3799473e1659f0c9195c05095afc062cdaafbba7&v=4", - "login": "sanjanamb06", - "url": "https://github.com/sanjanamb06", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/413", - "https://github.com/iamrahulmahato/master-web-development/pull/1472", - "https://github.com/GSSoC24/Postman-Challenge/pull/1835" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148478644?u=cc72c425271ae86860be53209b5724f74e503451&v=4", - "login": "Zubaida0113", - "url": "https://github.com/Zubaida0113", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/165", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/312", - "https://github.com/apu52/Travel_Website/pull/1607", - "https://github.com/GSSoC24/Postman-Challenge/pull/1975" - ], - "pr_dates": ["2024-10-11", "2024-10-18", "2024-10-23", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147494302?u=4005f8df29c4d130ec31a79bfef980a5d1f72b45&v=4", - "login": "vermu490", - "url": "https://github.com/vermu490", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/686", - "https://github.com/recodehive/machine-learning-repos/pull/1598", - "https://github.com/GSSoC24/Postman-Challenge/pull/1887" - ], - "pr_dates": ["2024-10-22", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132455480?u=42a3168a0ebd005eee661fd53d62855de2363b5d&v=4", - "login": "Susmita0202", - "url": "https://github.com/Susmita0202", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/443", - "https://github.com/AlgoGenesis/C/pull/1242", - "https://github.com/andoriyaprashant/DevDocsHub/pull/125", - "https://github.com/GSSoC24/Postman-Challenge/pull/2631" - ], - "pr_dates": ["2024-10-22", "2024-10-25", "2024-10-26", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121210708?u=16d2fb09ac932e6981dd944e3545296703c8ea8c&v=4", - "login": "pranavbafna586", - "url": "https://github.com/pranavbafna586", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1373", - "https://github.com/TejasNasre/nexmeet/pull/101", - "https://github.com/GSSoC24/Postman-Challenge/pull/1945" - ], - "pr_dates": ["2024-10-14", "2024-10-23", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184480489?v=4", - "login": "PreetiTamana", - "url": "https://github.com/PreetiTamana", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1523", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1488", - "https://github.com/GSSoC24/Postman-Challenge/pull/1912" - ], - "pr_dates": ["2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150506367?v=4", - "login": "Durgeshwar-AI", - "url": "https://github.com/Durgeshwar-AI", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/411", - "https://github.com/samyakmaitre/eventmint/pull/466", - "https://github.com/GSSoC24/Postman-Challenge/pull/2237" - ], - "pr_dates": ["2024-10-09", "2024-10-24", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98865320?u=09ac2c44332fd4abc6c853dd164de5b6d777ee7a&v=4", - "login": "priyanshu5ingh", - "url": "https://github.com/priyanshu5ingh", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1086", - "https://github.com/recodehive/awesome-github-profiles/pull/1009", - "https://github.com/GSSoC24/Postman-Challenge/pull/2151" - ], - "pr_dates": ["2024-10-21", "2024-10-24", "2024-10-25"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156653934?u=401a08c7eeb0eb33d3d480fe4952554ef8598722&v=4", - "login": "Pragyaa3", - "url": "https://github.com/Pragyaa3", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/400", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/358", - "https://github.com/GSSoC24/Postman-Challenge/pull/2035" - ], - "pr_dates": ["2024-10-12", "2024-10-14", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140606473?u=d3b1e03736c887e8b3da92518ff259fee119e9be&v=4", - "login": "BhavikaPachauri", - "url": "https://github.com/BhavikaPachauri", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vimall03/Alimento/pull/169", - "https://github.com/Vimall03/Alimento/pull/39", - "https://github.com/GSSoC24/Postman-Challenge/pull/1757" - ], - "pr_dates": ["2024-10-05", "2024-10-19", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137290646?u=866d4274d4f88014b8742fe395df826540c517b3&v=4", - "login": "TheUsefulNerd", - "url": "https://github.com/TheUsefulNerd", - "score": 520, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/672", - "https://github.com/UTSAVS26/PyVerse/pull/582", - "https://github.com/GSSoC24/Postman-Challenge/pull/1951" - ], - "pr_dates": ["2024-10-14", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169146901?v=4", - "login": "Dishaaa-T", - "url": "https://github.com/Dishaaa-T", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1651", - "https://github.com/GSSoC24/Postman-Challenge/pull/3116" - ], - "pr_dates": ["2024-10-30", "2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128416031?u=0eebfd9743766a69e2435260d8bb8ce0d0610557&v=4", - "login": "paramveer665", - "url": "https://github.com/paramveer665", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/64", - "https://github.com/GSSoC24/Postman-Challenge/pull/1806" - ], - "pr_dates": ["2024-10-03", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76397616?u=e63eeaf799b78e73d6b38964b1c58ee5d038cbaf&v=4", - "login": "P4R1H", - "url": "https://github.com/P4R1H", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/204", - "https://github.com/GSSoC24/Postman-Challenge/pull/1863" - ], - "pr_dates": ["2024-10-22", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165887184?v=4", - "login": "DevROHIT11", - "url": "https://github.com/DevROHIT11", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/821", - "https://github.com/GSSoC24/Postman-Challenge/pull/2932" - ], - "pr_dates": ["2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181556548?v=4", - "login": "Aayushibnsl", - "url": "https://github.com/Aayushibnsl", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/617", - "https://github.com/GSSoC24/Postman-Challenge/pull/2195" - ], - "pr_dates": ["2024-10-24", "2024-10-25"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/38945468?u=5c6e8bdd68f9d42b13d4096f9e0dfc1cbbee58cb&v=4", - "login": "AnuranjanJain", - "url": "https://github.com/AnuranjanJain", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/53", - "https://github.com/GSSoC24/Postman-Challenge/pull/3088" - ], - "pr_dates": ["2024-10-02", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140567453?v=4", - "login": "vibhorgupta09", - "url": "https://github.com/vibhorgupta09", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3947", - "https://github.com/GSSoC24/Postman-Challenge/pull/2084" - ], - "pr_dates": ["2024-10-23", "2024-10-24"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70149684?v=4", - "login": "simran0809", - "url": "https://github.com/simran0809", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3588", - "https://github.com/GSSoC24/Postman-Challenge/pull/2238" - ], - "pr_dates": ["2024-10-16", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119509166?v=4", - "login": "BigBang001", - "url": "https://github.com/BigBang001", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/72", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/772", - "https://github.com/GSSoC24/Postman-Challenge/pull/2966" - ], - "pr_dates": ["2024-10-06", "2024-10-19", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135646985?u=a285d790a2f5c9ec4cb96f177af3d8c43f242e6a&v=4", - "login": "deepakcs2003", - "url": "https://github.com/deepakcs2003", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryainguz/picwise.co/pull/98", - "https://github.com/GSSoC24/Postman-Challenge/pull/2868" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178194446?u=13af505b5df977b3343476bee0b4e81244835812&v=4", - "login": "ADURITEJA", - "url": "https://github.com/ADURITEJA", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/462", - "https://github.com/GSSoC24/Postman-Challenge/pull/2563" - ], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144149182?u=7b2dc755a0a2b6e12cea74ef40725add154ac17c&v=4", - "login": "Gokul-MK", - "url": "https://github.com/Gokul-MK", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/461", - "https://github.com/GSSoC24/Postman-Challenge/pull/2725" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178356585?u=f82a496f21fc62b8257c1f38fddf88520ff40241&v=4", - "login": "Snehshishdutta", - "url": "https://github.com/Snehshishdutta", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/448", - "https://github.com/GSSoC24/Postman-Challenge/pull/2307" - ], - "pr_dates": ["2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184800556?u=c3fab713870b5b41169aea3a5dae44748e54fa37&v=4", - "login": "sahare-mayur-0071", - "url": "https://github.com/sahare-mayur-0071", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/446", - "https://github.com/GSSoC24/Postman-Challenge/pull/1776" - ], - "pr_dates": ["2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141601266?v=4", - "login": "Shantanu-Tiwari", - "url": "https://github.com/Shantanu-Tiwari", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/425", - "https://github.com/GSSoC24/Postman-Challenge/pull/2690" - ], - "pr_dates": ["2024-10-25", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164195062?u=e07bdeb188602a5e580eae1f1f5430079b6079a1&v=4", - "login": "AryanMittal11", - "url": "https://github.com/AryanMittal11", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/375", - "https://github.com/GSSoC24/Postman-Challenge/pull/2477" - ], - "pr_dates": ["2024-10-22", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119666175?u=4b57d1cf0bf9a7bccbadb3bff23dffabe0a38c5f&v=4", - "login": "darshinihoney", - "url": "https://github.com/darshinihoney", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/362", - "https://github.com/GSSoC24/Postman-Challenge/pull/2361" - ], - "pr_dates": ["2024-10-21", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150266045?u=641bac371a06db19a01e173e9dae474baa50d155&v=4", - "login": "DevStudyBug", - "url": "https://github.com/DevStudyBug", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/978", - "https://github.com/GSSoC24/Postman-Challenge/pull/2807" - ], - "pr_dates": ["2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137594290?u=be9004fa8926210f3e37eeeee3a9861b654449fa&v=4", - "login": "nihalawasthi", - "url": "https://github.com/nihalawasthi", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/905", - "https://github.com/GSSoC24/Postman-Challenge/pull/2337" - ], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163981917?u=89f667be3bd4ab2531a16fa7e0ba8104568315bd&v=4", - "login": "harshpardeshi09", - "url": "https://github.com/harshpardeshi09", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/703", - "https://github.com/GSSoC24/Postman-Challenge/pull/2006" - ], - "pr_dates": ["2024-10-18", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136865818?u=f68b211c29ed90b4e4f150ac436eb3df29697975&v=4", - "login": "lakshay2425", - "url": "https://github.com/lakshay2425", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/32", - "https://github.com/GSSoC24/Postman-Challenge/pull/1848" - ], - "pr_dates": ["2024-10-02", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93543742?u=98f23a88f046003e9ee09f64ba0fdb29687b1d97&v=4", - "login": "hadifarousheen", - "url": "https://github.com/hadifarousheen", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/388", - "https://github.com/GSSoC24/Postman-Challenge/pull/1837" - ], - "pr_dates": ["2024-10-07", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140091907?v=4", - "login": "Boobeshkumar56", - "url": "https://github.com/Boobeshkumar56", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/OpenTekHub/blockchain/pull/54", - "https://github.com/GSSoC24/Postman-Challenge/pull/1942" - ], - "pr_dates": ["2024-10-03", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115455383?v=4", - "login": "Trumilnasit", - "url": "https://github.com/Trumilnasit", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/112", - "https://github.com/GSSoC24/Postman-Challenge/pull/1999" - ], - "pr_dates": ["2024-10-15", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118924053?v=4", - "login": "abhi9ab", - "url": "https://github.com/abhi9ab", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/211", - "https://github.com/GSSoC24/Postman-Challenge/pull/2736" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114978813?u=c2f7e04fd60a023bded934d77558a5561dc68a00&v=4", - "login": "Rajput-xv", - "url": "https://github.com/Rajput-xv", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/327", - "https://github.com/GSSoC24/Postman-Challenge/pull/1869" - ], - "pr_dates": ["2024-10-22", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95605633?u=1c085c56acb231fe30bbe978ea9aaac022c9ffc4&v=4", - "login": "ayushi2626", - "url": "https://github.com/ayushi2626", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/42", - "https://github.com/GSSoC24/Postman-Challenge/pull/2865" - ], - "pr_dates": ["2024-10-01", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130300957?u=71f2692404bd0625fde4b6c97024cf6b5cb5c3db&v=4", - "login": "Sefukamil20R", - "url": "https://github.com/Sefukamil20R", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/394", - "https://github.com/GSSoC24/Postman-Challenge/pull/3007" - ], - "pr_dates": ["2024-10-24", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181054907?v=4", - "login": "121hemank", - "url": "https://github.com/121hemank", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/1029", - "https://github.com/GSSoC24/Postman-Challenge/pull/2542" - ], - "pr_dates": ["2024-10-22", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95407849?u=226bcaa8246cbfcd8bcb0911ce12051dd0a12c2d&v=4", - "login": "HimanshuM685", - "url": "https://github.com/HimanshuM685", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1118", - "https://github.com/GSSoC24/Postman-Challenge/pull/2585" - ], - "pr_dates": ["2024-10-22", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172914890?u=3e567d373d6639736b8ef86ec68c49d3d00047b6&v=4", - "login": "VahantSharma", - "url": "https://github.com/VahantSharma", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/690", - "https://github.com/GSSoC24/Postman-Challenge/pull/2458" - ], - "pr_dates": ["2024-10-13", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156045676?v=4", - "login": "Rajata-Hegde", - "url": "https://github.com/Rajata-Hegde", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/422", - "https://github.com/GSSoC24/Postman-Challenge/pull/2815" - ], - "pr_dates": ["2024-10-09", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107236731?v=4", - "login": "Avidiptab17", - "url": "https://github.com/Avidiptab17", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/472", - "https://github.com/GSSoC24/Postman-Challenge/pull/1944" - ], - "pr_dates": ["2024-10-10", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76806897?u=5247116143850b7def69af467ba05ab055b5a569&v=4", - "login": "piyahub", - "url": "https://github.com/piyahub", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1948", - "https://github.com/GSSoC24/Postman-Challenge/pull/2039" - ], - "pr_dates": ["2024-10-23", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87639435?v=4", - "login": "MansiJangid", - "url": "https://github.com/MansiJangid", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1794", - "https://github.com/GSSoC24/Postman-Challenge/pull/2741" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133118520?v=4", - "login": "ArpitCS", - "url": "https://github.com/ArpitCS", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1639", - "https://github.com/GSSoC24/Postman-Challenge/pull/1878" - ], - "pr_dates": ["2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115726575?u=1b730b7df02e43eac6e13e1bfe1eba39367aa802&v=4", - "login": "Niladitya-coder", - "url": "https://github.com/Niladitya-coder", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1499", - "https://github.com/GSSoC24/Postman-Challenge/pull/2935" - ], - "pr_dates": ["2024-10-20", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97542658?u=d5f18339f06f49638186c127e10666438c30646a&v=4", - "login": "beRajeevKumar", - "url": "https://github.com/beRajeevKumar", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/448", - "https://github.com/GSSoC24/Postman-Challenge/pull/1777" - ], - "pr_dates": ["2024-10-18", "2024-10-19"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143863933?v=4", - "login": "himanshu-sheetlani", - "url": "https://github.com/himanshu-sheetlani", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/29", - "https://github.com/GSSoC24/Postman-Challenge/pull/2363" - ], - "pr_dates": ["2024-10-02", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95741837?u=c98bbf30393e9a4b164399a88968e42ac1c5a2d8&v=4", - "login": "stutxi", - "url": "https://github.com/stutxi", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/134", - "https://github.com/GSSoC24/Postman-Challenge/pull/1840" - ], - "pr_dates": ["2024-10-07", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177705772?u=244f355b24e2e666fcd089ab7b5cd469d8a4e6a3&v=4", - "login": "Darshan3690", - "url": "https://github.com/Darshan3690", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/942", - "https://github.com/GSSoC24/Postman-Challenge/pull/2652" - ], - "pr_dates": ["2024-10-19", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101510941?u=c5101b898f04f0740524263a9c57de819b9f70cf&v=4", - "login": "CGaneshKumar2002", - "url": "https://github.com/CGaneshKumar2002", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1595", - "https://github.com/GSSoC24/Postman-Challenge/pull/2844" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100836518?u=ed4ff69aa622b24377d357b340722ea383def241&v=4", - "login": "Dhruv-pahuja", - "url": "https://github.com/Dhruv-pahuja", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/daccotta-org/daccotta/pull/65", - "https://github.com/GSSoC24/Postman-Challenge/pull/2831" - ], - "pr_dates": ["2024-10-05", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156207386?u=9f5e9e75e35f17f67b0ef733be005cc6784a14d1&v=4", - "login": "VihaShomikha", - "url": "https://github.com/VihaShomikha", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/07sumit1002/CabRental/pull/424", - "https://github.com/GSSoC24/Postman-Challenge/pull/2620" - ], - "pr_dates": ["2024-10-15", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129669338?u=2269674c5d4873c0dcbf725dbd4225a4c78ed3e6&v=4", - "login": "khuushiie", - "url": "https://github.com/khuushiie", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/SurajPratap10/Imagine_AI/pull/1142", - "https://github.com/GSSoC24/Postman-Challenge/pull/2100" - ], - "pr_dates": ["2024-10-05", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141598781?v=4", - "login": "DevyanshiS", - "url": "https://github.com/DevyanshiS", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/307", - "https://github.com/GSSoC24/Postman-Challenge/pull/2915" - ], - "pr_dates": ["2024-10-11", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161740499?u=55d76968d642860351116f9f4efe4aae058659e9&v=4", - "login": "ayyanshaikh1", - "url": "https://github.com/ayyanshaikh1", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/409", - "https://github.com/GSSoC24/Postman-Challenge/pull/2532" - ], - "pr_dates": ["2024-10-12", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166048503?v=4", - "login": "glodh21", - "url": "https://github.com/glodh21", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/247", - "https://github.com/GSSoC24/Postman-Challenge/pull/2479" - ], - "pr_dates": ["2024-10-21", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156594333?u=96144aafed515b6f8c254262aead74ab5c592eea&v=4", - "login": "Richajaishwal0", - "url": "https://github.com/Richajaishwal0", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/93", - "https://github.com/GSSoC24/Postman-Challenge/pull/2721" - ], - "pr_dates": ["2024-10-09", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148456570?u=8dffabecdee0930b7dc7320891fc30115fa88e9a&v=4", - "login": "Su-creator-spec", - "url": "https://github.com/Su-creator-spec", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/56", - "https://github.com/GSSoC24/Postman-Challenge/pull/3084" - ], - "pr_dates": ["2024-10-08", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169937412?u=09f82a9e631ce1560a0681a95e8499e095695cc6&v=4", - "login": "msv6264", - "url": "https://github.com/msv6264", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/612", - "https://github.com/GSSoC24/Postman-Challenge/pull/2192" - ], - "pr_dates": ["2024-10-24", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174686609?u=300aa3070fbd7698b850c7ef9f985cbf7431c4fa&v=4", - "login": "dipalichourasia", - "url": "https://github.com/dipalichourasia", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/592", - "https://github.com/GSSoC24/Postman-Challenge/pull/2796" - ], - "pr_dates": ["2024-10-23", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142144367?v=4", - "login": "koricherlasupriya", - "url": "https://github.com/koricherlasupriya", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/550", - "https://github.com/GSSoC24/Postman-Challenge/pull/2854" - ], - "pr_dates": ["2024-10-20", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98510613?u=d7b8b9ef4d8f0698c828f069502b5da7b2eaba84&v=4", - "login": "bhat-shubham", - "url": "https://github.com/bhat-shubham", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1124", - "https://github.com/GSSoC24/Postman-Challenge/pull/2662" - ], - "pr_dates": ["2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135812485?u=6b72c879749c9e547c20e46ede7929f0a944e64a&v=4", - "login": "jhuma20", - "url": "https://github.com/jhuma20", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/apu52/Travel_Website/pull/1509", - "https://github.com/GSSoC24/Postman-Challenge/pull/2207" - ], - "pr_dates": ["2024-10-13", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139643616?v=4", - "login": "pranawk", - "url": "https://github.com/pranawk", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/948", - "https://github.com/GSSoC24/Postman-Challenge/pull/2719" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131350795?v=4", - "login": "amrutha-m206", - "url": "https://github.com/amrutha-m206", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/939", - "https://github.com/GSSoC24/Postman-Challenge/pull/2883" - ], - "pr_dates": ["2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163311970?v=4", - "login": "apoorvasj", - "url": "https://github.com/apoorvasj", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/908", - "https://github.com/GSSoC24/Postman-Challenge/pull/2428" - ], - "pr_dates": ["2024-10-26", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170353912?v=4", - "login": "Vaish-011", - "url": "https://github.com/Vaish-011", - "score": 510, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PyVerse/pull/653", - "https://github.com/GSSoC24/Postman-Challenge/pull/2861" - ], - "pr_dates": ["2024-10-16", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110541127?u=689115e3e3bb312cc73a04dc0acbc8b52e625ad5&v=4", - "login": "MKisKrazy", - "url": "https://github.com/MKisKrazy", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/12", - "https://github.com/GSSoC24/Postman-Challenge/pull/2954" - ], - "pr_dates": ["2024-10-03", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115030244?u=b93d36c80064dc6d9f00f78c2ed956a905de36d0&v=4", - "login": "PARVNEMA", - "url": "https://github.com/PARVNEMA", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/180", - "https://github.com/codeaashu/DevDisplay/pull/166", - "https://github.com/GSSoC24/Postman-Challenge/pull/1735" - ], - "pr_dates": ["2024-10-02", "2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145229487?u=814f23d6a44e9f2d8f432c8b8d73a9c8964653d6&v=4", - "login": "Pawnios", - "url": "https://github.com/Pawnios", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1594", - "https://github.com/GSSoC24/Postman-Challenge/pull/2731" - ], - "pr_dates": ["2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171041082?u=74f3fe203eb48230d461f93a15261b2ebd96213f&v=4", - "login": "kaabilcoder", - "url": "https://github.com/kaabilcoder", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1773", - "https://github.com/GSSoC24/Postman-Challenge/pull/2420" - ], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120199836?v=4", - "login": "Priyanka-is-on-github", - "url": "https://github.com/Priyanka-is-on-github", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3101"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115539563?v=4", - "login": "CamruthaV", - "url": "https://github.com/CamruthaV", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3098"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147889330?u=0a51db68e1c39103600cdaa5fc2a177fb07704c7&v=4", - "login": "Megh2005", - "url": "https://github.com/Megh2005", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3097"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178014920?v=4", - "login": "praneethaBrindavanam", - "url": "https://github.com/praneethaBrindavanam", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3095"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153279848?v=4", - "login": "Lakshmi-Lahari", - "url": "https://github.com/Lakshmi-Lahari", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3094"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181495944?u=0119848ce802cf294ca3de2f66dac6364721bb90&v=4", - "login": "Mohan-Murali-02", - "url": "https://github.com/Mohan-Murali-02", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3093"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145114909?v=4", - "login": "M-A-SAIADITHYAA", - "url": "https://github.com/M-A-SAIADITHYAA", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3091"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167340941?v=4", - "login": "agupta451", - "url": "https://github.com/agupta451", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3090"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164504711?v=4", - "login": "AbdulNasir05", - "url": "https://github.com/AbdulNasir05", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3089"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115938550?u=d90e0f16c12d2f966e4384104773caabc5045060&v=4", - "login": "Idiv03", - "url": "https://github.com/Idiv03", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3086"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176493940?u=761d21eb65a809f1a70bb12635a6e477bd156e27&v=4", - "login": "zafar-Alee", - "url": "https://github.com/zafar-Alee", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3085"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130856747?u=1896754cbf9b7af8b7caa5ce5353b005133450c2&v=4", - "login": "lakshyabajpai", - "url": "https://github.com/lakshyabajpai", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3082"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128505334?v=4", - "login": "astronautgold", - "url": "https://github.com/astronautgold", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3079"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182635361?v=4", - "login": "AsthaSingh22-8", - "url": "https://github.com/AsthaSingh22-8", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3078"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131939745?u=4f882fb8d9844d9325e8930e834749c723ea75ab&v=4", - "login": "RitikTiwari7379", - "url": "https://github.com/RitikTiwari7379", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3075"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107022238?v=4", - "login": "Abhilasha236", - "url": "https://github.com/Abhilasha236", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3073"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184761359?v=4", - "login": "ManiGaneshwari", - "url": "https://github.com/ManiGaneshwari", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3072"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184639525?v=4", - "login": "Hitesh-17h", - "url": "https://github.com/Hitesh-17h", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3070"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69157316?u=efebb7f6fc68187f57d86c55b1e6debdb865cc3e&v=4", - "login": "gits-up", - "url": "https://github.com/gits-up", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3069"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178267849?u=0e2c921017008d497aea77c4b0d57d23c367f9c8&v=4", - "login": "AyeshaShaikh-30", - "url": "https://github.com/AyeshaShaikh-30", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3068"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130211628?v=4", - "login": "IncharaIse", - "url": "https://github.com/IncharaIse", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3067"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145924651?u=f434775ee073003f9365e3e7c11d66d20a851166&v=4", - "login": "MVarun5", - "url": "https://github.com/MVarun5", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3066"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150221686?v=4", - "login": "anshgupta-456", - "url": "https://github.com/anshgupta-456", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3065"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100434905?v=4", - "login": "AryaEjoumalai", - "url": "https://github.com/AryaEjoumalai", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3064"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152073307?u=2b63b28301eab0b7f131316eb3b457f3f28acf45&v=4", - "login": "Debjoy26", - "url": "https://github.com/Debjoy26", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3063"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119778987?v=4", - "login": "Akshatha9108", - "url": "https://github.com/Akshatha9108", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3061"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110609967?u=df576e60d4b9c88f31381a471c665b89cd9cf4b1&v=4", - "login": "AyushK0808", - "url": "https://github.com/AyushK0808", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3056"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174241668?u=7ecf7de858e3ef1efb5662745703429152c0abdb&v=4", - "login": "Asmi1108", - "url": "https://github.com/Asmi1108", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3054"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165784261?u=8c169889b9606e38326910bcbe7bbc871e3ca45f&v=4", - "login": "UsamaGM", - "url": "https://github.com/UsamaGM", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3053"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169834302?v=4", - "login": "cjyotshnareddy", - "url": "https://github.com/cjyotshnareddy", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3051"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108659610?v=4", - "login": "Ektachasta", - "url": "https://github.com/Ektachasta", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3049"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152680449?u=a897d9319a092c2a0eb2abcb4b345a4d8a71dd71&v=4", - "login": "Praveen-koujalagi", - "url": "https://github.com/Praveen-koujalagi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3048"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159142797?v=4", - "login": "tejaswini29598", - "url": "https://github.com/tejaswini29598", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3047"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142911929?v=4", - "login": "Vkbansal90", - "url": "https://github.com/Vkbansal90", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3045"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166947747?v=4", - "login": "luckyxjx", - "url": "https://github.com/luckyxjx", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3039"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112306423?u=b0e2cdde08f60729130ab420421b8e277f7bf5f4&v=4", - "login": "Atul14258", - "url": "https://github.com/Atul14258", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3037"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137692710?u=a82ea98bc9017d2c1a7caadd52b27b3960ce4f30&v=4", - "login": "umarsayed12", - "url": "https://github.com/umarsayed12", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3035"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142742057?u=efd26ac61c26ce3259666ac74c8dcbd60af77b1b&v=4", - "login": "01-aniket-maity", - "url": "https://github.com/01-aniket-maity", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3033"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86182776?u=f9e1ed63de59e4854b6b46b8b1e3ef9599330199&v=4", - "login": "priyanshuchawda", - "url": "https://github.com/priyanshuchawda", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3032"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103926513?u=8769ff206fc42b640a5253b45539222281e03251&v=4", - "login": "piyusdev2006", - "url": "https://github.com/piyusdev2006", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3031"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83579154?u=57b915cfaf8e2eee48301ed626d55b30ace22353&v=4", - "login": "Afreen-2000", - "url": "https://github.com/Afreen-2000", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3030"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113470640?u=0446d6b0c98a0616eff2bcc8e874b04e76847dc5&v=4", - "login": "DC104", - "url": "https://github.com/DC104", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3028"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174729045?u=91ff561a3c213c55d4e426a22c9fe7c313ac5b9f&v=4", - "login": "mansa04", - "url": "https://github.com/mansa04", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3026"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155768157?v=4", - "login": "FarhanBijapur", - "url": "https://github.com/FarhanBijapur", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3025"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126370273?u=0f3a7d41856c0eedd65ef37fa1ad79850b804b63&v=4", - "login": "theadeshkumar03", - "url": "https://github.com/theadeshkumar03", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3024"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180136361?v=4", - "login": "KratiMishra21", - "url": "https://github.com/KratiMishra21", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3022"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173360271?u=caa739fddaf7848a35891caa6a9f0d4e4920e936&v=4", - "login": "divi-24", - "url": "https://github.com/divi-24", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3021"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183424271?v=4", - "login": "Shubrat111204", - "url": "https://github.com/Shubrat111204", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3020"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109455621?v=4", - "login": "Pager-dot", - "url": "https://github.com/Pager-dot", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3018"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119472117?u=ed20f8c39f7e9a305ac16372bd330e96174e80ec&v=4", - "login": "Raviraj73", - "url": "https://github.com/Raviraj73", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3015"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133094213?v=4", - "login": "Sivanandinisaravanakumar", - "url": "https://github.com/Sivanandinisaravanakumar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3013"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153629616?u=b5ac4c557bcf202a55fe4f670bfc11edae940857&v=4", - "login": "absolutely-sharad", - "url": "https://github.com/absolutely-sharad", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3012"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/56252619?u=fa34804aab355d51c349b923186f06b95819be12&v=4", - "login": "ghanshyam2005singh", - "url": "https://github.com/ghanshyam2005singh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3011"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146645347?u=12dcb2fb9fe194feaab2aa326ff189f4f1b640eb&v=4", - "login": "Gaurav-3002", - "url": "https://github.com/Gaurav-3002", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3008"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140621189?u=18ba6dc03a9a58a3c04ff46dda80ce203e1ff9c5&v=4", - "login": "sagarde7", - "url": "https://github.com/sagarde7", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3006"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175956040?u=2a9d78a8806afc432df1c8d83cf35293c81c577f&v=4", - "login": "SuRak35", - "url": "https://github.com/SuRak35", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3005"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110760231?u=f732b6688c50ba9fd873af719a7770ed9353cf56&v=4", - "login": "PRAteek-singHWY", - "url": "https://github.com/PRAteek-singHWY", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3004"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143818434?u=ee39b8037a5fa3b5809fee9ff17417156459a229&v=4", - "login": "Pratikpawar13", - "url": "https://github.com/Pratikpawar13", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3001"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143212538?v=4", - "login": "2ushar03", - "url": "https://github.com/2ushar03", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2996"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147972748?u=1794be24fedfe4799f652ebf27fed8f1daf72868&v=4", - "login": "tusharg2210", - "url": "https://github.com/tusharg2210", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2994"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164402917?v=4", - "login": "ayushfand", - "url": "https://github.com/ayushfand", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2993"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102574706?u=af2ee151f3277853cdf124efad32634699b3f91a&v=4", - "login": "devd-328", - "url": "https://github.com/devd-328", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2992"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88617041?u=9e0c0b2f2790bec0bf51b99d50cef97beef3e948&v=4", - "login": "Nayan2003", - "url": "https://github.com/Nayan2003", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2991"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110889789?u=6fecda82774cfb07594a9aed0533cf6cb5d627a8&v=4", - "login": "ujjwalgupta2021", - "url": "https://github.com/ujjwalgupta2021", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2989"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179959007?u=2e58e9b4c02bcb3b895e1c50dd6dee33dfd7a6fe&v=4", - "login": "anurag166", - "url": "https://github.com/anurag166", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2988"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130368638?u=6fe294db043cef344578822ccc8bc133cee12322&v=4", - "login": "menerucha", - "url": "https://github.com/menerucha", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2987"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112607918?u=9024748c0b5946aa87d13eb7052d5934aa2628f3&v=4", - "login": "donna2864", - "url": "https://github.com/donna2864", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2985"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138883345?v=4", - "login": "FawazKhan1011", - "url": "https://github.com/FawazKhan1011", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2983"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132141581?v=4", - "login": "HafsaIffath", - "url": "https://github.com/HafsaIffath", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2980"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168841679?v=4", - "login": "sujithachalla97", - "url": "https://github.com/sujithachalla97", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2979"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122915461?u=8cfbe4bc7c465a7d351be4a46cb7253fe8bde954&v=4", - "login": "Soumyadipgithub", - "url": "https://github.com/Soumyadipgithub", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2978"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144941389?v=4", - "login": "Scholarscribe", - "url": "https://github.com/Scholarscribe", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2974"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120010343?v=4", - "login": "RahZero0", - "url": "https://github.com/RahZero0", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2970"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166305520?v=4", - "login": "Ashmitha2606", - "url": "https://github.com/Ashmitha2606", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2969"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122036384?v=4", - "login": "nikita2999", - "url": "https://github.com/nikita2999", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2967"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174716175?v=4", - "login": "Ramharsh-aidev", - "url": "https://github.com/Ramharsh-aidev", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2965"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109206275?u=1aad5a6380159d4213ea9392afee9cc87981e444&v=4", - "login": "dhruvjaink07", - "url": "https://github.com/dhruvjaink07", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2959"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168756525?u=0ccc689657d9b916f66a29fb583b62091eba6854&v=4", - "login": "Soumita-Nag", - "url": "https://github.com/Soumita-Nag", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2958"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156777916?u=0f1982099c7acd80066289f87bf9b72c256a22a8&v=4", - "login": "SamPurna023", - "url": "https://github.com/SamPurna023", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2957"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98597780?v=4", - "login": "WarlockSimon", - "url": "https://github.com/WarlockSimon", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2955"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148219423?u=356a969dfa0399e526af918ba256900ea6398423&v=4", - "login": "sanikadesai76", - "url": "https://github.com/sanikadesai76", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2953"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118533500?v=4", - "login": "KANISHKSHUKLA", - "url": "https://github.com/KANISHKSHUKLA", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2952"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112684561?u=9323582d6eeb17676804a9a2070ea18dd0cb67fa&v=4", - "login": "RushikeshShelar", - "url": "https://github.com/RushikeshShelar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2948"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144555996?u=3aae9de341aafcbc84f108ad1245a84049f0ae8f&v=4", - "login": "abhishek-217", - "url": "https://github.com/abhishek-217", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2944"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140483749?u=709bf645f87d80446c945f36b1e807b2f6936d07&v=4", - "login": "VanshKirtishahi", - "url": "https://github.com/VanshKirtishahi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2942"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179377455?u=f169d2f2dee0a98b6d50106806753ba20c4e5898&v=4", - "login": "david-one8", - "url": "https://github.com/david-one8", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2941"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95441107?u=971245a2f14a50d5d1ddd5f4a6f8111c40c1e03c&v=4", - "login": "Wasif0787", - "url": "https://github.com/Wasif0787", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2939"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162432569?u=4cdf6e37fa785f38bd5d3e2e8ebd656b284b7fd9&v=4", - "login": "hardattmangrola", - "url": "https://github.com/hardattmangrola", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2936"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183380547?v=4", - "login": "Ayanshaikh313", - "url": "https://github.com/Ayanshaikh313", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2934"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182125622?v=4", - "login": "Shree4226", - "url": "https://github.com/Shree4226", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2933"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181858620?v=4", - "login": "Biswajit0972", - "url": "https://github.com/Biswajit0972", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2931"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158685334?u=a7bf505203af68ad869421007360f04d4d64d8cc&v=4", - "login": "Mallik-vinukonda", - "url": "https://github.com/Mallik-vinukonda", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2929"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178656341?v=4", - "login": "mdaiyaz940", - "url": "https://github.com/mdaiyaz940", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2928"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125912813?v=4", - "login": "SatyaSantosh11", - "url": "https://github.com/SatyaSantosh11", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2925"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115649441?u=cd44171168f91adaa64a3220c09812f3e4400118&v=4", - "login": "am-nimrah", - "url": "https://github.com/am-nimrah", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2924"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180170168?u=1c3bfa5a80496bb5e37fbb9fa933b18085d618db&v=4", - "login": "prabhatyadav4", - "url": "https://github.com/prabhatyadav4", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2920"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181959444?v=4", - "login": "Prajakta1926", - "url": "https://github.com/Prajakta1926", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2919"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166131044?u=aa765c37ced2c30f4da9a41c008c41a126c4cf8b&v=4", - "login": "prince2404", - "url": "https://github.com/prince2404", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2916"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181468967?v=4", - "login": "falak412", - "url": "https://github.com/falak412", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2914"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135723871?u=4b451cf3659238d07403442641e830e9e5b599bb&v=4", - "login": "Jeffrin2005", - "url": "https://github.com/Jeffrin2005", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2912"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116506457?v=4", - "login": "saurabh007007", - "url": "https://github.com/saurabh007007", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2909"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113221655?u=21f83374d75c6db4a98f17ccb3bef785dcaf70b6&v=4", - "login": "valay30", - "url": "https://github.com/valay30", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2905"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154235517?v=4", - "login": "harshitajain31", - "url": "https://github.com/harshitajain31", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2904"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143933429?v=4", - "login": "SrushtiBhujade", - "url": "https://github.com/SrushtiBhujade", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2903"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92662929?u=49ee92c29a772facdea571860c7e6702aedaeacb&v=4", - "login": "sarvo123", - "url": "https://github.com/sarvo123", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2901"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138151981?u=2d09d24ce834cb86fcb7759480ca8cb1fa2da008&v=4", - "login": "vishishtkapoor", - "url": "https://github.com/vishishtkapoor", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2899"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146841766?u=cc17fd4dcf2032c8f544817b1305f9c6642df9a8&v=4", - "login": "imsudiptaa", - "url": "https://github.com/imsudiptaa", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2897"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/64433400?u=cfccb0ef661e8e9905a8519763e3e3a6f0908db3&v=4", - "login": "samiha-akter", - "url": "https://github.com/samiha-akter", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2895"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108875873?v=4", - "login": "AR2706", - "url": "https://github.com/AR2706", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2894"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134867384?v=4", - "login": "Rohitkumar0056", - "url": "https://github.com/Rohitkumar0056", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2893"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93003941?u=241762024844b12f8f09eff93b2ce041d953878a&v=4", - "login": "Mohd-Farhan-Khan", - "url": "https://github.com/Mohd-Farhan-Khan", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2891"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158024289?v=4", - "login": "Shruti-Gorhe", - "url": "https://github.com/Shruti-Gorhe", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2890"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161135629?u=d9c7c98f0d0e2f34f526be88434c9cb385150f57&v=4", - "login": "Manas0204", - "url": "https://github.com/Manas0204", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2889"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89332752?u=c6104f0c5923a1429745fee23247b276d4adc44a&v=4", - "login": "Tejas-Santosh-Nalawade", - "url": "https://github.com/Tejas-Santosh-Nalawade", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2886"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176284315?u=0746a41261b51888c2410cbab77ef659178a012e&v=4", - "login": "harshshukla06", - "url": "https://github.com/harshshukla06", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2885"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170792182?v=4", - "login": "mousamighosh216", - "url": "https://github.com/mousamighosh216", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2882"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113021241?v=4", - "login": "muskiagrwal", - "url": "https://github.com/muskiagrwal", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2880"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/50767646?u=c3ae7436b94d6662a1b274a1e4b0f40f4c853a8e&v=4", - "login": "ashutoshak5386", - "url": "https://github.com/ashutoshak5386", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2879"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65727313?u=ef6901a1d19f29332da968b31ce44bbbe1bb233d&v=4", - "login": "Arun0A", - "url": "https://github.com/Arun0A", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2878"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154674714?v=4", - "login": "anu098jaiswal", - "url": "https://github.com/anu098jaiswal", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2877"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117428501?v=4", - "login": "Athirakadavath", - "url": "https://github.com/Athirakadavath", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2876"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88198828?u=cb2252b099d17e8d4ff2b9ace41f7eefb7ba411e&v=4", - "login": "SUMITXP10", - "url": "https://github.com/SUMITXP10", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2875"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175546424?v=4", - "login": "akshatkh18", - "url": "https://github.com/akshatkh18", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2874"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174444669?v=4", - "login": "Shabbir5152", - "url": "https://github.com/Shabbir5152", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2873"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153111309?u=8f13a18a82570ca7cec07ffc7fbc982f0efd876d&v=4", - "login": "ambitiouswithayush", - "url": "https://github.com/ambitiouswithayush", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2872"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119017831?u=c935e8e672598b81ee7bf1892c75d66120b54df2&v=4", - "login": "vvikassh", - "url": "https://github.com/vvikassh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2870"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167398365?u=1f67db9581f5b61d3b47bfe92af7bbd2b8c0579e&v=4", - "login": "SrihasRC", - "url": "https://github.com/SrihasRC", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2869"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100883248?u=8cf6909d49df5efdf9d3b272ce1e45cc0e51bb06&v=4", - "login": "AaryanPuri", - "url": "https://github.com/AaryanPuri", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2864"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166852118?u=9b4749eefd9473537fdddcccbf3417313d36f52b&v=4", - "login": "subhforcode", - "url": "https://github.com/subhforcode", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2863"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118996055?v=4", - "login": "Amulya-Codes", - "url": "https://github.com/Amulya-Codes", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2862"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183039426?u=b513be8bcbcc0efbe882a611986705536899b7b5&v=4", - "login": "rooteduser", - "url": "https://github.com/rooteduser", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2859"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116416791?u=9e7b9f458c0e7b7c1119b40638921ac4408a2293&v=4", - "login": "chandrasekhar-cherukuru", - "url": "https://github.com/chandrasekhar-cherukuru", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2858"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86043076?v=4", - "login": "Divya4879", - "url": "https://github.com/Divya4879", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2857"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145495748?u=aec71d22a8be7ff130520b438e81164effbae053&v=4", - "login": "firozkhan4", - "url": "https://github.com/firozkhan4", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2855"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146654725?v=4", - "login": "Rajshree-24", - "url": "https://github.com/Rajshree-24", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2853"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146654764?v=4", - "login": "Madhushree-2026", - "url": "https://github.com/Madhushree-2026", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2852"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174958596?u=1e3443609f6f508d8f30b5a2e3fab2bcb8a90677&v=4", - "login": "badmuffin", - "url": "https://github.com/badmuffin", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2850"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158125379?v=4", - "login": "arorasneha08", - "url": "https://github.com/arorasneha08", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2846"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182250237?u=2d7c6645a7dd90919c10929f350fd170806a84ee&v=4", - "login": "NishthaAgrawal26", - "url": "https://github.com/NishthaAgrawal26", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2843"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156945494?u=0ab058b10659f33347392d955855ff567f4d7730&v=4", - "login": "DishaMaity", - "url": "https://github.com/DishaMaity", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2834"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152707944?v=4", - "login": "SaiSiriChandana", - "url": "https://github.com/SaiSiriChandana", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2826"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148577835?u=c965f20f41711bd38a2ef2d79c7c2ff69f392d7c&v=4", - "login": "Yashwanthreddy1789", - "url": "https://github.com/Yashwanthreddy1789", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2824"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93670699?u=82f07ef2177d13334c6e992879b8351ff9c5f0bd&v=4", - "login": "pasamyagnesh", - "url": "https://github.com/pasamyagnesh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2823"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145916414?v=4", - "login": "NidaSyeda", - "url": "https://github.com/NidaSyeda", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2821"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134772713?u=31637dea0fcc5e3d94ac7ead36dc5ca8446e84d3&v=4", - "login": "tanu91112", - "url": "https://github.com/tanu91112", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2820"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147159825?u=19bffcdc7d6c3016b4f7a6f969bd5185dd732429&v=4", - "login": "ShaliniKashyap717", - "url": "https://github.com/ShaliniKashyap717", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2819"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183747843?v=4", - "login": "Jyotisingh-21", - "url": "https://github.com/Jyotisingh-21", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2818"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179158951?v=4", - "login": "Codewithezayush", - "url": "https://github.com/Codewithezayush", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2812"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122502249?u=82b008de7a3643922adb3c387ae673f982c064eb&v=4", - "login": "Ayush-23479", - "url": "https://github.com/Ayush-23479", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2808"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130833849?v=4", - "login": "DIVYAKRISHNASATYASRI", - "url": "https://github.com/DIVYAKRISHNASATYASRI", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2806"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184853669?u=283413e229560aaaec383e75c09b2025306f84ec&v=4", - "login": "Madhurbhatia01", - "url": "https://github.com/Madhurbhatia01", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2799"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135730052?u=5521ad6a93d2c9230873e40c7cda3afa16041f40&v=4", - "login": "Purnendu5804", - "url": "https://github.com/Purnendu5804", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2797"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163732854?u=1ede4a1718ca3c9e27d73e5e67fea0ab65d290f0&v=4", - "login": "akshat-2600", - "url": "https://github.com/akshat-2600", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2795"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147728364?u=56354bae712989f3735db7b484787cb4bbd310d7&v=4", - "login": "harshita1362", - "url": "https://github.com/harshita1362", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2794"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125567404?v=4", - "login": "poojapatil34", - "url": "https://github.com/poojapatil34", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2792"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179622387?v=4", - "login": "VarshniThiyagarajan", - "url": "https://github.com/VarshniThiyagarajan", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2790"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170445779?u=1a315a1469774539b221f88a8124b2b01661453c&v=4", - "login": "pinakviramgama", - "url": "https://github.com/pinakviramgama", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2789"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177227746?u=16bb881272eb4423e6709927229638eb6d6fde3c&v=4", - "login": "kaifprodeveloper", - "url": "https://github.com/kaifprodeveloper", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2788"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159622736?u=b75af1948ab930d30b7d71fb06de2dd40b6084ae&v=4", - "login": "gungun04", - "url": "https://github.com/gungun04", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2779"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162461631?u=2373276d00660211cd2e990bf31fff560586c5df&v=4", - "login": "kritzxd8", - "url": "https://github.com/kritzxd8", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2778"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147901612?u=99f88ece809f6de52bb1e5157fc968c3750af1ef&v=4", - "login": "Arunkoo", - "url": "https://github.com/Arunkoo", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2775"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109411443?u=eda099e3468dec4763502b1988cf29f688f9b550&v=4", - "login": "Githubak2002", - "url": "https://github.com/Githubak2002", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2773"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114645253?v=4", - "login": "armycodes", - "url": "https://github.com/armycodes", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2772"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142603343?u=01d413e47d891f2eeea8065cfcc1a96d0ceb6503&v=4", - "login": "SyntaxNova", - "url": "https://github.com/SyntaxNova", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2771"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144918841?u=0f6d578807eed1547e03db75b74611caba6e76fa&v=4", - "login": "Ashish-kharde1", - "url": "https://github.com/Ashish-kharde1", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2770", - "https://github.com/GSSoC24/Postman-Challenge/pull/2737" - ], - "pr_dates": ["2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168124697?u=dac94c1f0b88fd911a2f187516f4c0d375de8a80&v=4", - "login": "sharmeen17", - "url": "https://github.com/sharmeen17", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2768"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123797156?v=4", - "login": "Sravani-c1", - "url": "https://github.com/Sravani-c1", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2767"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123802770?v=4", - "login": "umadevi00", - "url": "https://github.com/umadevi00", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2763"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150531216?u=5680438f8ce2ac2e581863a870f1e70032e4b25a&v=4", - "login": "JITESH-KUMAR05", - "url": "https://github.com/JITESH-KUMAR05", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2762"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180135809?v=4", - "login": "ashishgujjar755g", - "url": "https://github.com/ashishgujjar755g", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2761"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115101622?v=4", - "login": "Atharva150", - "url": "https://github.com/Atharva150", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2760"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78470332?u=d927e9353f08639639d20d2a2beadb3d3195fa18&v=4", - "login": "gitarshmah", - "url": "https://github.com/gitarshmah", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2756"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/30715153?u=4a832b65211382c7c7abcfa5cda896a98fff8410&v=4", - "login": "sanjay-kv", - "url": "https://github.com/sanjay-kv", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2755"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111166993?u=599aee444d472865104a7e8b42909f0fc722ee77&v=4", - "login": "maliumesh1", - "url": "https://github.com/maliumesh1", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2751"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86461249?v=4", - "login": "Mmadan128", - "url": "https://github.com/Mmadan128", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2750"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/186485208?v=4", - "login": "pbharati15", - "url": "https://github.com/pbharati15", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2746"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113919293?v=4", - "login": "Ritwakar", - "url": "https://github.com/Ritwakar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2734"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153297974?u=17ab4a41f3c21dd1dcb83b627e4ee654881f2e4a&v=4", - "login": "Shashankckotagi", - "url": "https://github.com/Shashankckotagi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2733"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/185583240?u=7c6191356afd06de3c40dda9e4f20a6b4507d63d&v=4", - "login": "Mahadevprasad-DL", - "url": "https://github.com/Mahadevprasad-DL", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2730"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134329921?u=4b9e1d7d56684150382e78a98ddb95c75e3c7e3e&v=4", - "login": "alankrit98", - "url": "https://github.com/alankrit98", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2729"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174030285?v=4", - "login": "harika12b8", - "url": "https://github.com/harika12b8", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2728"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120006509?u=c92bf83def9717fe03a2d6818f09407993c6e4d1&v=4", - "login": "KASHISH17RAMANI", - "url": "https://github.com/KASHISH17RAMANI", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2727"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87605928?u=fe6e003361dc3cb421464a266d492c13051fd77a&v=4", - "login": "DineshK3012", - "url": "https://github.com/DineshK3012", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2723"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173047603?v=4", - "login": "VinikDhariwal", - "url": "https://github.com/VinikDhariwal", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2718"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173048018?v=4", - "login": "TarunaAgrawal13", - "url": "https://github.com/TarunaAgrawal13", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2717"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114171601?u=db54fc17df9e8784f7b8e8cbd1cd20d254e1b526&v=4", - "login": "debugger-rana", - "url": "https://github.com/debugger-rana", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2715"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131552074?v=4", - "login": "airajfatima", - "url": "https://github.com/airajfatima", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2713"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183604668?u=992b261a23f7038e8a0de5729f1896d3bf99c6cf&v=4", - "login": "Arushi28-hub", - "url": "https://github.com/Arushi28-hub", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2711"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184336652?u=d86f06e480b3f91c1c4a5d1733195982cff61a34&v=4", - "login": "Shivamupadhyay09", - "url": "https://github.com/Shivamupadhyay09", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2710", - "https://github.com/GSSoC24/Postman-Challenge/pull/2703" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183977031?v=4", - "login": "CodewithAsh10", - "url": "https://github.com/CodewithAsh10", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2707"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118844690?u=26cbba128474b291b6ebe19a6f8d6b15586e464b&v=4", - "login": "Chaitali1105", - "url": "https://github.com/Chaitali1105", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2704"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163166255?u=37a78bed1e74afed6d259ad6025aa9c5088b7f5f&v=4", - "login": "sahi19484", - "url": "https://github.com/sahi19484", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2688"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132187577?u=197be01ca335c7e2e164aef94e432faa1fb2fd8a&v=4", - "login": "juniorcoder02", - "url": "https://github.com/juniorcoder02", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2686"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143613219?v=4", - "login": "Aaryan-Sharma-5", - "url": "https://github.com/Aaryan-Sharma-5", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2684"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99265885?v=4", - "login": "namitha-27", - "url": "https://github.com/namitha-27", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2681"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145830910?u=7b1fc00d1c95489b437b25670b2e5bc59f8a15ae&v=4", - "login": "princerxj", - "url": "https://github.com/princerxj", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2680"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120474107?v=4", - "login": "geediginjalaankitha", - "url": "https://github.com/geediginjalaankitha", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2679"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183410966?v=4", - "login": "Satvik-Sharma511", - "url": "https://github.com/Satvik-Sharma511", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2678"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162113357?v=4", - "login": "raghzzzspace", - "url": "https://github.com/raghzzzspace", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2677"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137612261?u=44269c5828f6097d293643061c0291b09b711afc&v=4", - "login": "AnotherOnlineUser", - "url": "https://github.com/AnotherOnlineUser", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2676"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123366500?v=4", - "login": "Tejasri-B9", - "url": "https://github.com/Tejasri-B9", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2661"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162735469?u=6f4115d41cd13f72cfd76df94767fffd4842b933&v=4", - "login": "Savvythelegend", - "url": "https://github.com/Savvythelegend", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2656"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159121322?v=4", - "login": "eternal-casuist", - "url": "https://github.com/eternal-casuist", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2655"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177404030?u=ecb60851ed67007dd1e498b2e096fe7056941502&v=4", - "login": "vinitk1509", - "url": "https://github.com/vinitk1509", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2654"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116634403?v=4", - "login": "pranavi2", - "url": "https://github.com/pranavi2", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2653"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183197763?u=710b2e950f9e6dcb83fd0059aa5700da314087b5&v=4", - "login": "rohit-debnath24", - "url": "https://github.com/rohit-debnath24", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2651"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78196471?v=4", - "login": "prathamhanda", - "url": "https://github.com/prathamhanda", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2644"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172184302?u=9e49d9b537f286afb58e92a44becfbd6965a7ee0&v=4", - "login": "29akeshvimt", - "url": "https://github.com/29akeshvimt", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2640"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177567651?u=ff69992191c939d6a65be7d776c701d810ceddd8&v=4", - "login": "BDutta18", - "url": "https://github.com/BDutta18", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2635"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163138693?u=93ed38cf11004b73a79a7e088928c694316c9baf&v=4", - "login": "Tanav21", - "url": "https://github.com/Tanav21", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2629"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120378231?v=4", - "login": "KrishnaPriyaKanduri", - "url": "https://github.com/KrishnaPriyaKanduri", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2627"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178979342?u=fcc49c006bd3aebf0ab8d2483463dde9abebdcb9&v=4", - "login": "N-PCs", - "url": "https://github.com/N-PCs", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2625"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121001103?v=4", - "login": "Sneharatnakaram", - "url": "https://github.com/Sneharatnakaram", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2618"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169450602?u=ef64b8680f5367e16406a22dc6cfcf29e8e8fa80&v=4", - "login": "SamXop123", - "url": "https://github.com/SamXop123", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2609"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144595808?v=4", - "login": "Himanshu-Ahirwar", - "url": "https://github.com/Himanshu-Ahirwar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2607"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155750280?v=4", - "login": "prakhar1304", - "url": "https://github.com/prakhar1304", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2603"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167406719?u=2610e0f402558af3bedd9b3b337b1351060c4fd3&v=4", - "login": "prachhii31", - "url": "https://github.com/prachhii31", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2601", - "https://github.com/GSSoC24/Postman-Challenge/pull/2059" - ], - "pr_dates": ["2024-10-23", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127872628?v=4", - "login": "anu2126", - "url": "https://github.com/anu2126", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2596"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145024652?u=58b044d99695fa2cf86646f5dfe53ca7046fbbaa&v=4", - "login": "sahil-luthra-000", - "url": "https://github.com/sahil-luthra-000", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2595"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132948936?u=1f33166a4080e2d4cc18ac574df9b9b4329ee740&v=4", - "login": "jeevan10017", - "url": "https://github.com/jeevan10017", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2593"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114021101?u=56ccb9f1961394bb086818daffaa6302710598c3&v=4", - "login": "harsh7274v", - "url": "https://github.com/harsh7274v", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2592"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183693724?v=4", - "login": "guruashish-dev", - "url": "https://github.com/guruashish-dev", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2591"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184362173?u=26cf37dfaab3c013df735b8bc6e75a8641a15803&v=4", - "login": "Aman8471", - "url": "https://github.com/Aman8471", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2586"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124908532?v=4", - "login": "karthikeyan-v-max", - "url": "https://github.com/karthikeyan-v-max", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2584"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147343685?u=4b774bf54bc433e28de1c9fe628d33474825b62d&v=4", - "login": "G-DURGANJALI", - "url": "https://github.com/G-DURGANJALI", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2583"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67745953?u=720d40194b628ce466b5948150a11883d1c55fbf&v=4", - "login": "karn-cyber", - "url": "https://github.com/karn-cyber", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2582"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118960683?u=0f54c9482f3d5ae033f72ce564884f4ad5255997&v=4", - "login": "AJ-AYUSHMAN", - "url": "https://github.com/AJ-AYUSHMAN", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2579"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143023082?u=091ebbc00296c1aaa58799797580d91abd18a987&v=4", - "login": "AmulyaJain2004", - "url": "https://github.com/AmulyaJain2004", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2577"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147244706?u=0fe44610e70718fa53bd6f8333a30cc8b0512aa7&v=4", - "login": "LekkalaPoojitha", - "url": "https://github.com/LekkalaPoojitha", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2572"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161142067?v=4", - "login": "shrirakshapoojary", - "url": "https://github.com/shrirakshapoojary", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2571"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153607519?v=4", - "login": "akshayansg", - "url": "https://github.com/akshayansg", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2570"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168760039?u=55320b9c7d99c01da5941b15efb6e2b1a101c340&v=4", - "login": "NANDAGOPALNG", - "url": "https://github.com/NANDAGOPALNG", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2568"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155295434?v=4", - "login": "ramakandivalasa", - "url": "https://github.com/ramakandivalasa", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2557"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127622980?v=4", - "login": "CodeWithSatyaPrakash", - "url": "https://github.com/CodeWithSatyaPrakash", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2555"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110047193?v=4", - "login": "SahilMalavi", - "url": "https://github.com/SahilMalavi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2551"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170246112?v=4", - "login": "rohiths08", - "url": "https://github.com/rohiths08", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2549"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81956230?u=e6c2c0ac6c46f382b6a996788bd7e8a0386b7cbd&v=4", - "login": "Ashism766", - "url": "https://github.com/Ashism766", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2544"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122038094?v=4", - "login": "Anitha-3", - "url": "https://github.com/Anitha-3", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2541"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135983263?v=4", - "login": "prathamesh424", - "url": "https://github.com/prathamesh424", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2540"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151806514?u=7a9cfe3f9dc7df2bff87528f516063f29ba5cc09&v=4", - "login": "Supraja-Gao", - "url": "https://github.com/Supraja-Gao", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2538"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76847709?u=18c58f9532711dcc7c4c5b4f7520c9a19f74d4b5&v=4", - "login": "manastiwari99", - "url": "https://github.com/manastiwari99", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2537"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153940251?u=5d4ebd84f7294ebf53a5db57e38deb2c044170ed&v=4", - "login": "Slsowmya12", - "url": "https://github.com/Slsowmya12", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2534"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142833275?u=67e335ad073e2d06e33a67681b5d7396db23f38f&v=4", - "login": "Maheshwari-Love", - "url": "https://github.com/Maheshwari-Love", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2530"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164716426?u=cc5fb57e3d2ff989d8370054aa7d15f0a0cfc0db&v=4", - "login": "shivamyadavrgipt", - "url": "https://github.com/shivamyadavrgipt", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2524"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176363952?u=161213d9b0abcd1c15a16f9c3a95da5d81abb37c&v=4", - "login": "rebel1321", - "url": "https://github.com/rebel1321", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2519"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180548572?v=4", - "login": "zahramaryam09", - "url": "https://github.com/zahramaryam09", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2510"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170077950?u=dec3b8b619f88280db2b8d52d1b9d7cd5aa5a2e8&v=4", - "login": "priyanshu-guptaji", - "url": "https://github.com/priyanshu-guptaji", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2504"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131171229?v=4", - "login": "Venkat-737", - "url": "https://github.com/Venkat-737", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2501"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168621281?v=4", - "login": "SSrushti-s", - "url": "https://github.com/SSrushti-s", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2499"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119618428?u=af989107bb386a5d88900e694ac9447d685eed01&v=4", - "login": "sadique-2004", - "url": "https://github.com/sadique-2004", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2497"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92094239?u=3a4feca15d7363ac4314e07c3c6ce6ca36defe77&v=4", - "login": "lirena00", - "url": "https://github.com/lirena00", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2491"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156895477?v=4", - "login": "2004shweta", - "url": "https://github.com/2004shweta", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2489"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183223542?v=4", - "login": "AgarwalSneh", - "url": "https://github.com/AgarwalSneh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2485"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146743628?u=c27cfeb15dfc0aaff5e9b7e185bee90aab349081&v=4", - "login": "Jomon-J", - "url": "https://github.com/Jomon-J", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2484"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147379602?u=8ff8b21366cf5da5acff1bdb295cd86bec63ce58&v=4", - "login": "vikingmanas", - "url": "https://github.com/vikingmanas", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2475"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178933572?v=4", - "login": "Dipika005", - "url": "https://github.com/Dipika005", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2463", - "https://github.com/GSSoC24/Postman-Challenge/pull/2172" - ], - "pr_dates": ["2024-10-24", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104073199?u=a13dbeeb593581cd5cd923a6affaaadc33bda026&v=4", - "login": "Aditya-PS-05", - "url": "https://github.com/Aditya-PS-05", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2462"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111866289?u=f8e1e271f0eee2ce700211342f24331c04fb6a21&v=4", - "login": "aravraj147", - "url": "https://github.com/aravraj147", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2460"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128473473?v=4", - "login": "AryanGupta001", - "url": "https://github.com/AryanGupta001", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2456"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167692648?u=83167848c0e005b698505310cfdb4f4803590462&v=4", - "login": "pranavc13", - "url": "https://github.com/pranavc13", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2455"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118355505?v=4", - "login": "MeenakshiPramod", - "url": "https://github.com/MeenakshiPramod", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2449"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/40319687?u=d3d40958eb7217d34f62d55d8c7ce514d6e0e3c3&v=4", - "login": "SupriyaGo", - "url": "https://github.com/SupriyaGo", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2448"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102216277?u=f36c57a82b60ef3c295d53d27dd22b1a24fd4f47&v=4", - "login": "Shrutika006", - "url": "https://github.com/Shrutika006", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2446"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175683292?v=4", - "login": "jyotsnakaruturi", - "url": "https://github.com/jyotsnakaruturi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2445"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157871677?v=4", - "login": "Yuktanemade", - "url": "https://github.com/Yuktanemade", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2441"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120451407?v=4", - "login": "KashishSinghania", - "url": "https://github.com/KashishSinghania", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2438"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168455181?u=85720a33d0b2fdfbf6d69d0a71806b3c0fc8fcf3&v=4", - "login": "YashiGarg016", - "url": "https://github.com/YashiGarg016", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2422"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158186223?v=4", - "login": "SheetalEdu", - "url": "https://github.com/SheetalEdu", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2409"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145866801?u=9a3be45cc8ab433dfb97677405f176e4b4087dce&v=4", - "login": "Aditiiii-pathak", - "url": "https://github.com/Aditiiii-pathak", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2382"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137915305?u=37dfd19a81668055985a0574730d476bc7a0163b&v=4", - "login": "adityamanapure", - "url": "https://github.com/adityamanapure", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2377"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179600803?v=4", - "login": "27-MANISH", - "url": "https://github.com/27-MANISH", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2375"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140900915?u=3e598f5dede8c96c4e4d275adb54b8e757fb3d85&v=4", - "login": "Yashu04", - "url": "https://github.com/Yashu04", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2373"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/186333641?v=4", - "login": "Madhusudan2005", - "url": "https://github.com/Madhusudan2005", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2372"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183894251?v=4", - "login": "Sumantrini48", - "url": "https://github.com/Sumantrini48", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2354"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170077104?u=b231818dece6f417d4d07737436ede34c3768aa5&v=4", - "login": "Shaanif600", - "url": "https://github.com/Shaanif600", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2352"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136483704?u=09a2f234d0b366f19301548dc4a53117098d8136&v=4", - "login": "i-shivii", - "url": "https://github.com/i-shivii", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2351"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69665338?v=4", - "login": "19wh1a05a6", - "url": "https://github.com/19wh1a05a6", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2342"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148248885?v=4", - "login": "Piyush01-672", - "url": "https://github.com/Piyush01-672", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2340"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181441765?u=0ef4212791b48e01d714b483120cccfa74de7d94&v=4", - "login": "auraCodesKM", - "url": "https://github.com/auraCodesKM", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2333"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/185827034?v=4", - "login": "AnweshaBhattacharjee7", - "url": "https://github.com/AnweshaBhattacharjee7", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2326"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175548170?u=a85115b3e8289f3d606529e8b40e1dda38ab72f4&v=4", - "login": "aryy8", - "url": "https://github.com/aryy8", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2318"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151595793?u=d91fa9fbec4e339ba5a1a0fb2c05d2fe2d11a80c&v=4", - "login": "rajnish032", - "url": "https://github.com/rajnish032", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2304"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113125998?v=4", - "login": "satyam0827", - "url": "https://github.com/satyam0827", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2291"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113651257?v=4", - "login": "Areeb-Ak", - "url": "https://github.com/Areeb-Ak", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2286"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98935583?u=f5f784cfbd48f3ff62da3eb364befafe4c9d52be&v=4", - "login": "ahasunos", - "url": "https://github.com/ahasunos", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2271"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176146223?u=358663eb0ca658190503c989f2215c8aa4e3ff72&v=4", - "login": "Payel647", - "url": "https://github.com/Payel647", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2263"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75741204?v=4", - "login": "Daksh-Aggarwal", - "url": "https://github.com/Daksh-Aggarwal", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2262"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149887676?v=4", - "login": "calmdownpari", - "url": "https://github.com/calmdownpari", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2258"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111334418?u=c0be907d715d1a8a80adc1c7e163c0af9ff20b11&v=4", - "login": "Lahu19", - "url": "https://github.com/Lahu19", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2254"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159951770?v=4", - "login": "Aditya620321", - "url": "https://github.com/Aditya620321", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2245"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113296063?u=252c04fc4d567fcdcbfbc948dfd4e6bfc4cac3c1&v=4", - "login": "jadhavsunny23", - "url": "https://github.com/jadhavsunny23", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2242"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134489391?v=4", - "login": "Deshmukh-Ayush", - "url": "https://github.com/Deshmukh-Ayush", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2233"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98145879?v=4", - "login": "kushal34712", - "url": "https://github.com/kushal34712", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2215", - "https://github.com/GSSoC24/Postman-Challenge/pull/2093", - "https://github.com/GSSoC24/Postman-Challenge/pull/1862" - ], - "pr_dates": ["2024-10-22", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147394163?v=4", - "login": "Khushi-Mahato", - "url": "https://github.com/Khushi-Mahato", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2210"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154582886?v=4", - "login": "PalankiMeghana", - "url": "https://github.com/PalankiMeghana", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2198"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138234094?v=4", - "login": "Sohini-Ghosh2004", - "url": "https://github.com/Sohini-Ghosh2004", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2193"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183585970?v=4", - "login": "leepakshi22", - "url": "https://github.com/leepakshi22", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2187"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144540796?u=8ba245e33533bdb95d9ec1195899ef974bdc42b5&v=4", - "login": "tanushac", - "url": "https://github.com/tanushac", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2185"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134530150?u=6f26179dd70eeef4407849b5baa969731b700713&v=4", - "login": "Ariesjeev", - "url": "https://github.com/Ariesjeev", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2182"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168364647?v=4", - "login": "Spandeeee", - "url": "https://github.com/Spandeeee", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2181"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184746421?u=80d0feac1ad23d9d3eed3ba645a31052adc40c59&v=4", - "login": "SHRINIVAS-05", - "url": "https://github.com/SHRINIVAS-05", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2175"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137556464?v=4", - "login": "Garv2079", - "url": "https://github.com/Garv2079", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2167"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175296974?u=1c2bbf55759ecd724172acdc20cd85cc1d84c9d8&v=4", - "login": "AkCode2005", - "url": "https://github.com/AkCode2005", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2152"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95921636?u=9a2a5ba50aa31ce96169368aaba054958c61d702&v=4", - "login": "AnkurRam2002", - "url": "https://github.com/AnkurRam2002", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2150"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100463454?u=8d2927b4aafed84bcd45de9ad984e968fd9ff5a8&v=4", - "login": "Vignesh025", - "url": "https://github.com/Vignesh025", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2149"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138959280?v=4", - "login": "tsujit74", - "url": "https://github.com/tsujit74", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2145"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120378098?v=4", - "login": "KATTAMANASWINIREDDY", - "url": "https://github.com/KATTAMANASWINIREDDY", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2139"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153375074?u=38fc114ec7f40cede51dddd16920195bed8ff31f&v=4", - "login": "DINES-04", - "url": "https://github.com/DINES-04", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2127"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138714091?v=4", - "login": "AkshayNagamalla", - "url": "https://github.com/AkshayNagamalla", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2121"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172929733?v=4", - "login": "krishashah-03", - "url": "https://github.com/krishashah-03", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2120"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144032915?v=4", - "login": "tanv000", - "url": "https://github.com/tanv000", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2119"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75600388?u=05af343f87c0e0db52d61a72071d247e12f8242b&v=4", - "login": "Sayan-dev731", - "url": "https://github.com/Sayan-dev731", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2105"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109423225?u=f1a8812a87ebf36ca20a2e30ad50c1002a430da9&v=4", - "login": "param-code", - "url": "https://github.com/param-code", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2102"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144862456?u=69457081bdef43de2370ea0f6ab89f49f781061e&v=4", - "login": "Prashant7pathak", - "url": "https://github.com/Prashant7pathak", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2099"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172272264?u=7c163d4ddee0f4a76630e1fefdccdf647389dfec&v=4", - "login": "Sudhanshutiwari-cs", - "url": "https://github.com/Sudhanshutiwari-cs", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2092"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161291347?v=4", - "login": "AMRUTHA-BYSANI", - "url": "https://github.com/AMRUTHA-BYSANI", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/2089", - "https://github.com/GSSoC24/Postman-Challenge/pull/2061" - ], - "pr_dates": ["2024-10-23", "2024-10-24"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131292329?u=d247e02e1a23ae1bb8dc9aad5b07d50445dcc510&v=4", - "login": "Sushil2k4", - "url": "https://github.com/Sushil2k4", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2083"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123837632?v=4", - "login": "SHRINIVAS-BAKKI", - "url": "https://github.com/SHRINIVAS-BAKKI", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2080"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163755024?v=4", - "login": "Deeksha-S-J", - "url": "https://github.com/Deeksha-S-J", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2045"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167058992?v=4", - "login": "aahanajena", - "url": "https://github.com/aahanajena", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2033"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115137233?u=d835e7447b15385aae7b3d02d44f7431fa4772a8&v=4", - "login": "shubham21881", - "url": "https://github.com/shubham21881", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2028"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154951602?v=4", - "login": "TulasiPrasad-25", - "url": "https://github.com/TulasiPrasad-25", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2026"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162401935?u=ec1ad83075997f6d4560501849f92e4f454be52b&v=4", - "login": "utkarshagarwal03", - "url": "https://github.com/utkarshagarwal03", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2025"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132812475?u=1b110deae74c24f4e6276e98787d445302ccecde&v=4", - "login": "Ayesha480", - "url": "https://github.com/Ayesha480", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2024"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157241546?v=4", - "login": "Deepanjali01", - "url": "https://github.com/Deepanjali01", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2014"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152720574?u=19ffe4c497f09142fe776fc82c656ae6a582e041&v=4", - "login": "shreyp135", - "url": "https://github.com/shreyp135", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2012"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87663318?u=39c35fb29a45609c4eb894fc467486c52740dcc1&v=4", - "login": "RAMIREDDYGAYATHRI02", - "url": "https://github.com/RAMIREDDYGAYATHRI02", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2010"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143539984?v=4", - "login": "HasiniChekuri", - "url": "https://github.com/HasiniChekuri", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/2001"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136821738?v=4", - "login": "VIROHuman", - "url": "https://github.com/VIROHuman", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1998"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147238995?u=c3d87a058f92a4a0f810103facff201a66e5faa1&v=4", - "login": "Sahoobarsharani", - "url": "https://github.com/Sahoobarsharani", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1997"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149522028?u=c621317d549f4b31ea89647fa42f2999d9169344&v=4", - "login": "Abhi-GX", - "url": "https://github.com/Abhi-GX", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1989"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184404423?v=4", - "login": "Uruz-fazar", - "url": "https://github.com/Uruz-fazar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1988"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139638931?u=deb39bcd32eeae66729e04a1fdf4eb08e382dd4f&v=4", - "login": "Harish2908-bot", - "url": "https://github.com/Harish2908-bot", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1977"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176737389?v=4", - "login": "shnhdan", - "url": "https://github.com/shnhdan", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1969"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137911533?u=fac3ac59af220d1eec08790e00a4bd668a0bfda6&v=4", - "login": "ChathuraHasanga44", - "url": "https://github.com/ChathuraHasanga44", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1968"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133259736?u=cb7d6199b3aa6134ca42bb21d428f3da3cbc6dec&v=4", - "login": "Arshadkh123", - "url": "https://github.com/Arshadkh123", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1961"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138567785?u=e9a92891333ce621dc8e7f4d019c62bd3feacdea&v=4", - "login": "faeez004", - "url": "https://github.com/faeez004", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1960"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126011222?v=4", - "login": "Sargammaurya", - "url": "https://github.com/Sargammaurya", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1957"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139353502?u=6e5460c2738ad25f42da980707e5ca2a7fc0edd4&v=4", - "login": "lakshyagrg23", - "url": "https://github.com/lakshyagrg23", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1939"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141704226?u=b42167e2ab7929f3bf7ca29a5b5c2dcb6d9a6d7d&v=4", - "login": "VinodKumarN1", - "url": "https://github.com/VinodKumarN1", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": [ - "https://github.com/GSSoC24/Postman-Challenge/pull/1928", - "https://github.com/GSSoC24/Postman-Challenge/pull/1906" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148320461?v=4", - "login": "SiddharthPaladi", - "url": "https://github.com/SiddharthPaladi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1920"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155548316?u=5fec55b4b20de4e59285c89cf58ed1449bb88a6e&v=4", - "login": "supriya46788", - "url": "https://github.com/supriya46788", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1916"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92045934?u=d357329b1f898ccf7697abd1fe34c0ec35591ce2&v=4", - "login": "kom-senapati", - "url": "https://github.com/kom-senapati", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1907"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90744611?u=710f5b338797ebc48a49d88923c3f8cf783ac2c1&v=4", - "login": "charan2r", - "url": "https://github.com/charan2r", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1902"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163407010?u=92ade2316f99f67670ffee6ca2b4a6f159675b0f&v=4", - "login": "Shagufta019", - "url": "https://github.com/Shagufta019", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1899"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164646992?v=4", - "login": "Rahulthakur9124", - "url": "https://github.com/Rahulthakur9124", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1894"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86544918?u=fc94ddbf59bf184a634a3d5b6bb530b7a96e63af&v=4", - "login": "bg-sumu", - "url": "https://github.com/bg-sumu", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1893"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138967447?u=8cdc6d551f93264685667da4f8e9f5a738304194&v=4", - "login": "dev-anannya", - "url": "https://github.com/dev-anannya", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1892"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100292099?v=4", - "login": "anuoshkasingh", - "url": "https://github.com/anuoshkasingh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1889"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109903705?u=73ff4e42daeb5005176d2b14f0bf22ffb8f874eb&v=4", - "login": "AakashGujar", - "url": "https://github.com/AakashGujar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1883"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150251947?u=7be5e275daaefb451784a8bbfbf7755af755bcea&v=4", - "login": "SouravUpadhyay7", - "url": "https://github.com/SouravUpadhyay7", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1882"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182417027?u=07807d286bfb3ec7bd4a2c495349c382c6aeb59c&v=4", - "login": "Dhruvi-tech", - "url": "https://github.com/Dhruvi-tech", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1870"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118990119?u=d69741c0791b0737809b72d633a0b58db61db6ba&v=4", - "login": "falakniyaz94", - "url": "https://github.com/falakniyaz94", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1868"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179999650?u=b7be669e0afe978c87c4aa8e3d5a16d4a5c227a7&v=4", - "login": "mdhaarishussain", - "url": "https://github.com/mdhaarishussain", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1855"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134864250?u=302768b509bdd25490aa406b4f2d6bc0347f2bca&v=4", - "login": "Shivendu-kr", - "url": "https://github.com/Shivendu-kr", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1846"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155330158?u=489968fb654657c07584c30d66b3aa628b6df217&v=4", - "login": "pranay-bhatkar", - "url": "https://github.com/pranay-bhatkar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1838"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183403138?u=fb5f7cbd2764b5b6263072a2d834f4c5a6218693&v=4", - "login": "Sinch25", - "url": "https://github.com/Sinch25", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1827"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67482503?u=b6e1e6e4b3633607fc68f6b865e210403bb4ac69&v=4", - "login": "m-tabish", - "url": "https://github.com/m-tabish", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1818"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70190574?u=d6ad485ddb7d23448dbdf52603e3700b9ae02f0b&v=4", - "login": "aditya-Pratap15", - "url": "https://github.com/aditya-Pratap15", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1813"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150021401?v=4", - "login": "chiranthanHY", - "url": "https://github.com/chiranthanHY", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1809"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130273151?v=4", - "login": "Gokulan-SK", - "url": "https://github.com/Gokulan-SK", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1803"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150429517?u=fd0b69454b7ea35ca5fdc8f33d622695a0398e38&v=4", - "login": "Aaryafalle", - "url": "https://github.com/Aaryafalle", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1798"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148634340?u=ecaf7f9e6ceabff6821dcaf5c7e8edb26a8bfe2b&v=4", - "login": "kumarshubhh", - "url": "https://github.com/kumarshubhh", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1796"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144612155?u=0791255e63eb10c21657b699cbe316417db8cbe9&v=4", - "login": "Sharibraza", - "url": "https://github.com/Sharibraza", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1794"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114401238?u=4172048f82b395b47a18e10eba74bced360e63e1&v=4", - "login": "SaranshBangar", - "url": "https://github.com/SaranshBangar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1784"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168978195?u=09ad5a32c1100f3d8012037e303feb1b2575aa3b&v=4", - "login": "Simran0030", - "url": "https://github.com/Simran0030", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1782"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117421284?v=4", - "login": "SahilSingh1404", - "url": "https://github.com/SahilSingh1404", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1781"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97182407?u=9c4f28511eb31a3108cc6c551ade1d71fa3bea07&v=4", - "login": "Krishi1211", - "url": "https://github.com/Krishi1211", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1780"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129863157?u=b536d9279c27adcdd0d7e581bf1a2b16e627406d&v=4", - "login": "Mohit5Upadhyay", - "url": "https://github.com/Mohit5Upadhyay", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1775"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174683952?u=add9574ebec25a105ce2a5fbcb5f59f93a90a9f3&v=4", - "login": "abi-commits", - "url": "https://github.com/abi-commits", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1755"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100144204?u=3f08cdc64962366fd1a550bb2a78701efd81b3a2&v=4", - "login": "deepeshsaraswat", - "url": "https://github.com/deepeshsaraswat", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1744"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89624454?u=ddd234af1a99eff1c20fa9b5d124e639ffdd1392&v=4", - "login": "arnishbaruah", - "url": "https://github.com/arnishbaruah", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1740"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68117385?u=92c829d2ce6b6b5730d5861b998f2faf09ec7baa&v=4", - "login": "shubham-sutar", - "url": "https://github.com/shubham-sutar", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1739"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143936922?v=4", - "login": "JahnaviDhanaSri", - "url": "https://github.com/JahnaviDhanaSri", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1734"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74949684?u=b97533cef5dbdd385c1b46b7c3c5eacb4daadde3&v=4", - "login": "abhishekpm15", - "url": "https://github.com/abhishekpm15", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1732"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131550798?v=4", - "login": "Anushka040604", - "url": "https://github.com/Anushka040604", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1724"], - "pr_dates": ["2024-09-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109405574?u=f044e099029bbc2b72d15a8798b7eb1efac3713a&v=4", - "login": "Harsh-Gadhavi", - "url": "https://github.com/Harsh-Gadhavi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1723"], - "pr_dates": ["2024-09-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/41878215?u=026094a584de42bd0e86841c58596ee51df2e58b&v=4", - "login": "ahmedrazabaloch", - "url": "https://github.com/ahmedrazabaloch", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1721"], - "pr_dates": ["2024-09-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144776797?u=e365867c151f917f466b35fec4fc6ff381ef5ad6&v=4", - "login": "Harshvishw", - "url": "https://github.com/Harshvishw", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1719"], - "pr_dates": ["2024-09-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93769081?v=4", - "login": "moeedrafi", - "url": "https://github.com/moeedrafi", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/1716"], - "pr_dates": ["2024-09-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119726190?u=c54b364c3d7e3ee759338f6531e156bb6783fe15&v=4", - "login": "Priyatosh11", - "url": "https://github.com/Priyatosh11", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3122"], - "pr_dates": ["2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176693213?v=4", - "login": "David4988", - "url": "https://github.com/David4988", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3118"], - "pr_dates": ["2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161622494?u=1ffae563a7349d8c59bcd543e8f93649e7fa9059&v=4", - "login": "sanyuthem", - "url": "https://github.com/sanyuthem", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3114"], - "pr_dates": ["2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76447347?u=5f07e00f27d6c1790484330b9e309573c6bc3843&v=4", - "login": "itsAakashz", - "url": "https://github.com/itsAakashz", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3113"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109166837?u=56b72ae02b49b0c7d0f43ca51752276e23bfac76&v=4", - "login": "AryanR14", - "url": "https://github.com/AryanR14", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3112"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148905773?u=feac0cd8202320b1f9364f67b1b4ed956400f78e&v=4", - "login": "riku-d", - "url": "https://github.com/riku-d", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3111"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172544999?u=63d66f5f96a409feb5b86b15d09558d46f440bf4&v=4", - "login": "muhammadabdullah118", - "url": "https://github.com/muhammadabdullah118", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3110"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155794153?u=c14c1d3fac82c807b2a9252da199f82caa4dda08&v=4", - "login": "PreetySinha84", - "url": "https://github.com/PreetySinha84", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3109"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184539709?v=4", - "login": "Arrival692", - "url": "https://github.com/Arrival692", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3108"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178584719?v=4", - "login": "shikha11D", - "url": "https://github.com/shikha11D", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3107"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158139333?v=4", - "login": "Starwars24-7", - "url": "https://github.com/Starwars24-7", - "score": 500, - "postManTag": true, - "web3hack": false, - "pr_urls": ["https://github.com/GSSoC24/Postman-Challenge/pull/3103"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118007171?u=15a40e40c83b641d24da7feb7d7c64d656b591c8&v=4", - "login": "nidhi2026", - "url": "https://github.com/nidhi2026", - "score": 480, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/34", - "https://github.com/jinx-vi-0/DDoL/pull/32", - "https://github.com/VesperAkshay/qr-code-generator/pull/143", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/197", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/190", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/181", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/169", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/161", - "https://github.com/OpenTekHub/cryptobot/pull/41", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/213", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/183", - "https://github.com/daccotta-org/daccotta/pull/251", - "https://github.com/daccotta-org/daccotta/pull/214", - "https://github.com/daccotta-org/daccotta/pull/201", - "https://github.com/daccotta-org/daccotta/pull/195", - "https://github.com/daccotta-org/daccotta/pull/113", - "https://github.com/vanshchauhan21/CryptoTracker/pull/30" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125813798?v=4", - "login": "monishkumardvs", - "url": "https://github.com/monishkumardvs", - "score": 475, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/915", - "https://github.com/ajay-dhangar/algo/pull/852", - "https://github.com/ajay-dhangar/algo/pull/641", - "https://github.com/ajay-dhangar/algo/pull/427", - "https://github.com/ajay-dhangar/algo/pull/419", - "https://github.com/ajay-dhangar/algo/pull/353", - "https://github.com/ajay-dhangar/algo/pull/241", - "https://github.com/ajay-dhangar/algo/pull/150", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/370", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/287", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/249", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/195", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/184", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/169", - "https://github.com/anuragverma108/SwapReads/pull/2999", - "https://github.com/anuragverma108/SwapReads/pull/2989", - "https://github.com/anuragverma108/SwapReads/pull/2976", - "https://github.com/vishanurag/Canvas-Editor/pull/173", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/800", - "https://github.com/iamrahulmahato/master-web-development/pull/746", - "https://github.com/swarooppatilx/scruter/pull/59", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/268", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/266", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/195" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136720020?u=ebedc60938a1f0e4b693465a5d4175a590feaa3b&v=4", - "login": "rishyym0927", - "url": "https://github.com/rishyym0927", - "score": 445, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/59", - "https://github.com/anki2003ta/Museum/pull/57", - "https://github.com/anki2003ta/Museum/pull/29", - "https://github.com/anki2003ta/Museum/pull/27", - "https://github.com/anki2003ta/Museum/pull/23", - "https://github.com/anki2003ta/Museum/pull/22", - "https://github.com/anki2003ta/Museum/pull/14", - "https://github.com/ANSHIKA-26/WordWise/pull/165", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/144", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/138", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/107", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/99", - "https://github.com/mansiruhil13/Bobble-AI/pull/36", - "https://github.com/mansiruhil13/Bobble-AI/pull/35", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/8", - "https://github.com/Vin205/Enyanjyoti/pull/23", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/39", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/21" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-08" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124677750?u=32bc9a491f9f9fb0cd3283179d89b0ec2b1fe876&v=4", - "login": "tejasbenibagde", - "url": "https://github.com/tejasbenibagde", - "score": 440, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/33", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/145", - "https://github.com/ANSHIKA-26/WordWise/pull/1221", - "https://github.com/ANSHIKA-26/WordWise/pull/1070", - "https://github.com/Luson045/medi-connect/pull/421", - "https://github.com/Luson045/medi-connect/pull/368", - "https://github.com/Luson045/medi-connect/pull/313", - "https://github.com/Luson045/medi-connect/pull/285", - "https://github.com/Luson045/medi-connect/pull/218", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/182", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/88", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/20", - "https://github.com/Vin205/Enyanjyoti/pull/207", - "https://github.com/Vin205/Enyanjyoti/pull/171", - "https://github.com/Vin205/Enyanjyoti/pull/154" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-16", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100479594?v=4", - "login": "pavitraag", - "url": "https://github.com/pavitraag", - "score": 435, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/57", - "https://github.com/ajay-dhangar/algo/pull/566", - "https://github.com/ajay-dhangar/algo/pull/296", - "https://github.com/ajay-dhangar/algo/pull/104", - "https://github.com/ajay-dhangar/algo/pull/47", - "https://github.com/ajay-dhangar/algo/pull/43", - "https://github.com/yatulearn/yatulearn/pull/18", - "https://github.com/Code-Social/official-website/pull/105", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/224", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/215", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/108", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/243", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/170", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/72", - "https://github.com/mansiruhil13/Bobble-AI/pull/503", - "https://github.com/AlgoGenesis/C/pull/483", - "https://github.com/iamrahulmahato/master-web-development/pull/960", - "https://github.com/iamrahulmahato/master-web-development/pull/421", - "https://github.com/iamrahulmahato/master-web-development/pull/92", - "https://github.com/UTSAVS26/PySnippets/pull/157", - "https://github.com/UTSAVS26/PyVerse/pull/340", - "https://github.com/UTSAVS26/PyVerse/pull/72" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139615557?u=0dd915646b76beb1f9827b5980f039cd179f98bd&v=4", - "login": "AnanteshG", - "url": "https://github.com/AnanteshG", - "score": 430, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1400", - "https://github.com/ajay-dhangar/algo/pull/1192", - "https://github.com/codeaashu/DevDisplay/pull/310", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/416", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/415", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/414", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/412", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/407", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/406", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/405", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/335", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/334", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/317", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/316", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/315", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/890", - "https://github.com/iamrahulmahato/master-web-development/pull/1389", - "https://github.com/iamrahulmahato/master-web-development/pull/1388", - "https://github.com/iamrahulmahato/master-web-development/pull/825", - "https://github.com/iamrahulmahato/master-web-development/pull/779", - "https://github.com/UTSAVS26/PyVerse/pull/562" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-13", - "2024-10-17", - "2024-10-18", - "2024-10-22", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140194099?v=4", - "login": "sriraghavi22", - "url": "https://github.com/sriraghavi22", - "score": 420, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/597", - "https://github.com/ajay-dhangar/algo/pull/357", - "https://github.com/ajay-dhangar/algo/pull/270", - "https://github.com/ajay-dhangar/algo/pull/257", - "https://github.com/ajay-dhangar/algo/pull/244", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/369", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/253", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/176", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/135", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/130", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/122", - "https://github.com/ANSHIKA-26/WordWise/pull/394", - "https://github.com/anuragverma108/SwapReads/pull/2905", - "https://github.com/vishanurag/Canvas-Editor/pull/227", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/149", - "https://github.com/dohinaf/basic-icecream-website/pull/54", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/228", - "https://github.com/swarooppatilx/scruter/pull/52", - "https://github.com/swarooppatilx/scruter/pull/31", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/215", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/68" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74826173?u=3f0d4e7acacd4aec0e689059dbdcdc880f56afa8&v=4", - "login": "ArchanRD", - "url": "https://github.com/ArchanRD", - "score": 405, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/877", - "https://github.com/ajay-dhangar/algo/pull/951", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/780", - "https://github.com/Manishkr1007/WordWeaver/pull/77", - "https://github.com/TherkuTech/tturl/pull/76", - "https://github.com/iamrahulmahato/master-web-development/pull/1627", - "https://github.com/Vimall03/Alimento/pull/156", - "https://github.com/Vimall03/Alimento/pull/129", - "https://github.com/Vimall03/Alimento/pull/100", - "https://github.com/Vimall03/Alimento/pull/80", - "https://github.com/Vimall03/Alimento/pull/65", - "https://github.com/Vin205/Enyanjyoti/pull/93", - "https://github.com/Vin205/Enyanjyoti/pull/83", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/843", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/584", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/440", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/354" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-09", - "2024-10-11", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124056472?u=4e53fa11bfb5b674e64b9f0d020f956b36e64186&v=4", - "login": "Rizvi-Faiz", - "url": "https://github.com/Rizvi-Faiz", - "score": 400, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/84", - "https://github.com/Luson045/medi-connect/pull/357", - "https://github.com/Luson045/medi-connect/pull/348", - "https://github.com/Luson045/medi-connect/pull/347", - "https://github.com/Luson045/medi-connect/pull/341", - "https://github.com/Luson045/medi-connect/pull/262", - "https://github.com/Luson045/medi-connect/pull/260", - "https://github.com/Luson045/medi-connect/pull/119", - "https://github.com/Megh2005/Med-o-Next/pull/32", - "https://github.com/SanchitGeez/Investra/pull/61", - "https://github.com/SanchitGeez/Investra/pull/27", - "https://github.com/SanchitGeez/Investra/pull/26", - "https://github.com/SanchitGeez/Investra/pull/17", - "https://github.com/SanchitGeez/Investra/pull/14", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/26", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/9", - "https://github.com/Mohit5Upadhyay/WeatherApplication/pull/41" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143705815?u=323b8cd8706c5fa338eede64be888d8cadb384f8&v=4", - "login": "dnyanesh99borse", - "url": "https://github.com/dnyanesh99borse", - "score": 395, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/366", - "https://github.com/anuragverma108/SwapReads/pull/3636", - "https://github.com/anuragverma108/SwapReads/pull/3579", - "https://github.com/anuragverma108/SwapReads/pull/3571", - "https://github.com/anuragverma108/SwapReads/pull/3457", - "https://github.com/anuragverma108/SwapReads/pull/3376", - "https://github.com/Harshdev098/Research-Nexas/pull/266", - "https://github.com/Harshdev098/Research-Nexas/pull/235", - "https://github.com/Mohit5Upadhyay/realTimeTrackingApplication/pull/25", - "https://github.com/Mohit5Upadhyay/realTimeTrackingApplication/pull/12", - "https://github.com/iamrahulmahato/master-web-development/pull/1341", - "https://github.com/iamrahulmahato/master-web-development/pull/1262", - "https://github.com/iamrahulmahato/master-web-development/pull/1129", - "https://github.com/iamrahulmahato/master-web-development/pull/1100", - "https://github.com/iamrahulmahato/master-web-development/pull/1009", - "https://github.com/iamrahulmahato/master-web-development/pull/405", - "https://github.com/iamrahulmahato/master-web-development/pull/379" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-20", - "2024-10-21" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83055827?u=33986d6887011b710fd0d927772c0f55ca686d83&v=4", - "login": "lade6501", - "url": "https://github.com/lade6501", - "score": 390, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/HelpOps-Hub/pull/1394", - "https://github.com/Luson045/medi-connect/pull/471", - "https://github.com/Luson045/medi-connect/pull/419", - "https://github.com/Luson045/medi-connect/pull/391", - "https://github.com/Luson045/medi-connect/pull/384", - "https://github.com/Luson045/medi-connect/pull/373", - "https://github.com/Luson045/medi-connect/pull/353", - "https://github.com/Luson045/medi-connect/pull/322", - "https://github.com/Luson045/medi-connect/pull/280", - "https://github.com/Luson045/medi-connect/pull/244", - "https://github.com/Luson045/medi-connect/pull/86", - "https://github.com/Luson045/medi-connect/pull/81", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/289", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/288", - "https://github.com/TenzDelek/DearDiary/pull/46" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130988803?u=c2762d9d63804d0573cf9d281f379be9ab9f024c&v=4", - "login": "NIKITABARANWAL890", - "url": "https://github.com/NIKITABARANWAL890", - "score": 385, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/842", - "https://github.com/vishanurag/Canvas-Editor/pull/808", - "https://github.com/vishanurag/Canvas-Editor/pull/790", - "https://github.com/vishanurag/Canvas-Editor/pull/692", - "https://github.com/mdazfar2/Ezyshop/pull/659", - "https://github.com/mdazfar2/Ezyshop/pull/577", - "https://github.com/mdazfar2/Ezyshop/pull/558", - "https://github.com/mdazfar2/Ezyshop/pull/496", - "https://github.com/mdazfar2/Ezyshop/pull/459", - "https://github.com/mdazfar2/Ezyshop/pull/407", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/803", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/736", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/735" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-21" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118624573?u=27dd55827720bc6051cc6ebc2359ac725f04bc14&v=4", - "login": "Ishika-Gupta06", - "url": "https://github.com/Ishika-Gupta06", - "score": 375, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/833", - "https://github.com/aditya-bhaumik/Pathsphere/pull/815", - "https://github.com/anuragverma108/SwapReads/pull/3181", - "https://github.com/vishanurag/Canvas-Editor/pull/477", - "https://github.com/vishanurag/Canvas-Editor/pull/420", - "https://github.com/ayush-that/FinVeda/pull/1340", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/54", - "https://github.com/dhairyagothi/StationGuide/pull/194", - "https://github.com/dhairyagothi/StationGuide/pull/166", - "https://github.com/dhairyagothi/StationGuide/pull/156", - "https://github.com/mansiruhil13/Bobble-AI/pull/1054", - "https://github.com/mansiruhil13/Bobble-AI/pull/796", - "https://github.com/mansiruhil13/Bobble-AI/pull/742", - "https://github.com/mansiruhil13/Bobble-AI/pull/373", - "https://github.com/mansiruhil13/Bobble-AI/pull/296", - "https://github.com/iamrahulmahato/master-web-development/pull/1181", - "https://github.com/iamrahulmahato/master-web-development/pull/1180", - "https://github.com/iamrahulmahato/master-web-development/pull/449", - "https://github.com/iamrahulmahato/master-web-development/pull/367", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/404", - "https://github.com/apu52/Travel_Website/pull/1557", - "https://github.com/apu52/Travel_Website/pull/1546" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94635707?u=de0db78bfe72676c641425faff2b4f8e83df2b86&v=4", - "login": "CodewithAnn", - "url": "https://github.com/CodewithAnn", - "score": 375, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/87", - "https://github.com/prajapatihet/donorconnect/pull/61", - "https://github.com/Jiggy9/JCT/pull/85", - "https://github.com/Jiggy9/JCT/pull/74", - "https://github.com/Jiggy9/JCT/pull/71", - "https://github.com/Jiggy9/JCT/pull/67", - "https://github.com/Jiggy9/JCT/pull/57", - "https://github.com/Jiggy9/JCT/pull/56", - "https://github.com/Jiggy9/JCT/pull/49", - "https://github.com/Jiggy9/JCT/pull/42", - "https://github.com/Jiggy9/JCT/pull/22", - "https://github.com/sanjay-kv/Open-source-Practice/pull/719" - ], - "pr_dates": [ - "2024-05-12", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137069939?u=98e16b0f4c8492a222f2ac0a5e4dd4c35dc2f7db&v=4", - "login": "srishti023", - "url": "https://github.com/srishti023", - "score": 370, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/678", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/499", - "https://github.com/ankit071105/Ticket-Booking/pull/429", - "https://github.com/ANSHIKA-26/WordWise/pull/505", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/150", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/497", - "https://github.com/Anjaliavv51/Retro/pull/549", - "https://github.com/Anjaliavv51/Retro/pull/497", - "https://github.com/Anjaliavv51/Retro/pull/489", - "https://github.com/PriyaGhosal/BuddyTrail/pull/131", - "https://github.com/ayerhssb/Appointment-booking-app/pull/48", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/264", - "https://github.com/Trisha-tech/OnlineBookSales/pull/568", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/257", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/518", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/513", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/347", - "https://github.com/apu52/Travel_Website/pull/1535" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-18", - "2024-10-20", - "2024-10-22", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142726372?u=c1268be4d3ace6cfe7dbb7ce9e83e279aac492ce&v=4", - "login": "LitZeus", - "url": "https://github.com/LitZeus", - "score": 365, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/134", - "https://github.com/jinx-vi-0/passop/pull/129", - "https://github.com/ajay-dhangar/algo/pull/694", - "https://github.com/ajay-dhangar/algo/pull/401", - "https://github.com/ajay-dhangar/algo/pull/355", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/200", - "https://github.com/Luson045/medi-connect/pull/305", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/373", - "https://github.com/AlgoGenesis/C/pull/678", - "https://github.com/param-code/counter-app/pull/130", - "https://github.com/recodehive/machine-learning-repos/pull/1426", - "https://github.com/recodehive/machine-learning-repos/pull/1358", - "https://github.com/recodehive/machine-learning-repos/pull/1282", - "https://github.com/Shreyaa173/Code-Book/pull/367", - "https://github.com/multiverseweb/Dataverse/pull/59", - "https://github.com/Vin205/Enyanjyoti/pull/269", - "https://github.com/UTSAVS26/PyVerse/pull/331", - "https://github.com/UTSAVS26/PyVerse/pull/318" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-24", - "2024-10-26" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149102391?u=9fe1ed39eadaa8cc9a6714bd2196d91b4e1de188&v=4", - "login": "Nikhil0-3", - "url": "https://github.com/Nikhil0-3", - "score": 365, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/574", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/61", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/418", - "https://github.com/ayush-that/FinVeda/pull/1747", - "https://github.com/prajapatihet/donorconnect/pull/89", - "https://github.com/jahnvisahni31/DesignDeck/pull/210", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/601", - "https://github.com/Megh2005/Med-o-Next/pull/143", - "https://github.com/MitulSonagara/truth-tunnel/pull/224", - "https://github.com/param-code/counter-app/pull/259", - "https://github.com/andoriyaprashant/OpSo/pull/381", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1444", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1319", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1145", - "https://github.com/iamrahulmahato/master-web-development/pull/1724", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/372", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/415", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/161", - "https://github.com/daccotta-org/daccotta/pull/284", - "https://github.com/SurajPratap10/Imagine_AI/pull/1307", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/682", - "https://github.com/multiverseweb/Dataverse/pull/220", - "https://github.com/Trisha-tech/OnlineBookSales/pull/588", - "https://github.com/VigneshDevHub/CampX/pull/330", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/127", - "https://github.com/apu52/METAVERSE/pull/1308", - "https://github.com/Akshat111111/NexTrade/pull/49", - "https://github.com/4darsh-Dev/DecenTrade/pull/122", - "https://github.com/UTSAVS26/PyVerse/pull/797" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92099428?u=b58ef990509b79db8d3bff3326edecf4a6bfe883&v=4", - "login": "deepanshubaghel", - "url": "https://github.com/deepanshubaghel", - "score": 340, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/429", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/411", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/359", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/278", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/266", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/257", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/360", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/353", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/314", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/312", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/296", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/291", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/281", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/279", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/268", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/204", - "https://github.com/Akasxh/Terrain-Recognition/pull/20", - "https://github.com/recodehive/machine-learning-repos/pull/1356", - "https://github.com/UTSAVS26/PyVerse/pull/515", - "https://github.com/UTSAVS26/PyVerse/pull/426" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-20", - "2024-10-22", - "2024-10-23" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152640996?u=5fb1d748ffb24c050a1ba2e6813486e7d91b8ffb&v=4", - "login": "poorvikaa08", - "url": "https://github.com/poorvikaa08", - "score": 335, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/103", - "https://github.com/dohinaf/basic-icecream-website/pull/165", - "https://github.com/dohinaf/basic-icecream-website/pull/30", - "https://github.com/mansiruhil13/Bobble-AI/pull/633", - "https://github.com/mansiruhil13/Bobble-AI/pull/549", - "https://github.com/mansiruhil13/Bobble-AI/pull/474", - "https://github.com/mansiruhil13/Bobble-AI/pull/389", - "https://github.com/mansiruhil13/Bobble-AI/pull/386", - "https://github.com/mansiruhil13/Bobble-AI/pull/381", - "https://github.com/mansiruhil13/Bobble-AI/pull/378", - "https://github.com/mansiruhil13/Bobble-AI/pull/319", - "https://github.com/mansiruhil13/Bobble-AI/pull/216", - "https://github.com/mansiruhil13/Bobble-AI/pull/195", - "https://github.com/mansiruhil13/Bobble-AI/pull/190", - "https://github.com/PriyaGhosal/BuddyTrail/pull/400", - "https://github.com/Vimall03/Alimento/pull/89", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/428" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-12" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183209584?v=4", - "login": "sejals23", - "url": "https://github.com/sejals23", - "score": 330, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/520", - "https://github.com/vishanurag/Canvas-Editor/pull/110", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/147", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/134", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/50", - "https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/48", - "https://github.com/Bitbox-Connect/Bitbox/pull/104", - "https://github.com/Bitbox-Connect/Bitbox/pull/73", - "https://github.com/Bitbox-Connect/Bitbox/pull/70", - "https://github.com/MitulSonagara/truth-tunnel/pull/55", - "https://github.com/ombhojane/explainableai/pull/97", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/189", - "https://github.com/gupta-ritik/ExpenseTracker/pull/67", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/40", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/60", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/59", - "https://github.com/Soujanya2004/wanderlust-2024/pull/65", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/306", - "https://github.com/tanishaness/SPROCTOR/pull/40", - "https://github.com/Vimall03/Alimento/pull/30", - "https://github.com/visheshrwl/Uber-like/pull/25" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145834658?u=c7471f5f5cb38cd523f6dec8715a4513454a093c&v=4", - "login": "riyaaryan2004", - "url": "https://github.com/riyaaryan2004", - "score": 325, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/450", - "https://github.com/ankit071105/Ticket-Booking/pull/277", - "https://github.com/ankit071105/Ticket-Booking/pull/201", - "https://github.com/ankit071105/Ticket-Booking/pull/170", - "https://github.com/ankit071105/Ticket-Booking/pull/146", - "https://github.com/Code-Social/official-website/pull/106", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/105", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/87", - "https://github.com/PriyaGhosal/BuddyTrail/pull/215", - "https://github.com/PriyaGhosal/BuddyTrail/pull/147", - "https://github.com/samyakmaitre/eventmint/pull/53" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-18" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95643200?u=6cf5f12ed3976742eb8d5722604923d381c0e672&v=4", - "login": "YooAshu", - "url": "https://github.com/YooAshu", - "score": 320, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/548", - "https://github.com/yatulearn/yatulearn/pull/30", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/315", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/294", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/274", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/261", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/229", - "https://github.com/recodehive/awesome-github-profiles/pull/754", - "https://github.com/recodehive/awesome-github-profiles/pull/751", - "https://github.com/recodehive/awesome-github-profiles/pull/723", - "https://github.com/recodehive/awesome-github-profiles/pull/721", - "https://github.com/recodehive/awesome-github-profiles/pull/697", - "https://github.com/recodehive/awesome-github-profiles/pull/686", - "https://github.com/tushargupta1504/Medical-Website/pull/203", - "https://github.com/tushargupta1504/Medical-Website/pull/120", - "https://github.com/tushargupta1504/Medical-Website/pull/81", - "https://github.com/tushargupta1504/Medical-Website/pull/75" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12" - ], - "streak": 7 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130534146?u=47c0cc11ad90f363a4a8a20160ad1e0c15c21cd4&v=4", - "login": "praveenarjun", - "url": "https://github.com/praveenarjun", - "score": 320, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/44", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/224", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/171", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/75", - "https://github.com/kartikayasijaa/talk-trove/pull/22", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/39", - "https://github.com/recodehive/machine-learning-repos/pull/1341", - "https://github.com/recodehive/machine-learning-repos/pull/1324", - "https://github.com/UTSAVS26/PyVerse/pull/319", - "https://github.com/UTSAVS26/PyVerse/pull/278", - "https://github.com/UTSAVS26/PyVerse/pull/214", - "https://github.com/UTSAVS26/PyVerse/pull/177" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11" - ], - "streak": 10 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/77395731?u=3355669f6baa7f00c361f2190275896e14ba663b&v=4", - "login": "akhulisumit", - "url": "https://github.com/akhulisumit", - "score": 295, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/890", - "https://github.com/vishanurag/Canvas-Editor/pull/799", - "https://github.com/Code-Social/official-website/pull/368", - "https://github.com/Code-Social/official-website/pull/327", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/417", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/379", - "https://github.com/ayush-that/FinVeda/pull/1894", - "https://github.com/ayush-that/FinVeda/pull/1884", - "https://github.com/ayush-that/FinVeda/pull/1872", - "https://github.com/Harshdev098/Research-Nexas/pull/268", - "https://github.com/iamrahulmahato/master-web-development/pull/967", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/344" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-12", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153638615?v=4", - "login": "ark0078", - "url": "https://github.com/ark0078", - "score": 280, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3521", - "https://github.com/anuragverma108/SwapReads/pull/3466", - "https://github.com/anuragverma108/SwapReads/pull/3416", - "https://github.com/anuragverma108/SwapReads/pull/3311", - "https://github.com/anuragverma108/SwapReads/pull/3245", - "https://github.com/anuragverma108/SwapReads/pull/3211", - "https://github.com/anuragverma108/SwapReads/pull/3207", - "https://github.com/anuragverma108/SwapReads/pull/3180", - "https://github.com/anuragverma108/SwapReads/pull/3139", - "https://github.com/anuragverma108/SwapReads/pull/3105", - "https://github.com/anuragverma108/SwapReads/pull/3038", - "https://github.com/param-code/counter-app/pull/129", - "https://github.com/param-code/counter-app/pull/74", - "https://github.com/SaranshBangar/Daneizo/pull/83", - "https://github.com/SaranshBangar/Daneizo/pull/31", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/53" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114616759?v=4", - "login": "sharayuanuse", - "url": "https://github.com/sharayuanuse", - "score": 280, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/550", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/509", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/452", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/419", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/406", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/250", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/196", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/143", - "https://github.com/ombhojane/explainableai/pull/119", - "https://github.com/ombhojane/explainableai/pull/52", - "https://github.com/UTSAVS26/PyVerse/pull/684", - "https://github.com/UTSAVS26/PyVerse/pull/418", - "https://github.com/UTSAVS26/PyVerse/pull/231", - "https://github.com/UTSAVS26/PyVerse/pull/76" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-07", - "2024-10-10", - "2024-10-11", - "2024-10-17", - "2024-10-19", - "2024-10-21", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119917783?v=4", - "login": "Tamanna225", - "url": "https://github.com/Tamanna225", - "score": 275, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/344", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/118", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/232", - "https://github.com/tushargupta1504/Medical-Website/pull/339", - "https://github.com/vansh-codes/Gityzer/pull/12", - "https://github.com/vansh-codes/ChaosWeb/pull/148", - "https://github.com/vansh-codes/ChaosWeb/pull/30" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-07", - "2024-10-08", - "2024-10-15", - "2024-10-20", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178025684?v=4", - "login": "Nikhil-Banthia", - "url": "https://github.com/Nikhil-Banthia", - "score": 275, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1378", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1371", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1345", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1342", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1287", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1247", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1237", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1188", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1162" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-22"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112710372?u=ba347075e2d8a993d5056109730704e06432b869&v=4", - "login": "BhairabMahanta", - "url": "https://github.com/BhairabMahanta", - "score": 270, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/DDoL/pull/20", - "https://github.com/BhattAnsh/Quiz-Quest/pull/78", - "https://github.com/BhattAnsh/Quiz-Quest/pull/55", - "https://github.com/BhattAnsh/Quiz-Quest/pull/45", - "https://github.com/BhattAnsh/Quiz-Quest/pull/39", - "https://github.com/himeshparashar/Social-Morph/pull/66", - "https://github.com/Puskar-Roy/create-my-api/pull/85", - "https://github.com/GVishnudhasan/NoDueProject/pull/51" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-13", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108192513?u=54d71997fe45856574cc19b4224f3e52fff8cc69&v=4", - "login": "deepeshmlgupta", - "url": "https://github.com/deepeshmlgupta", - "score": 270, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2322", - "https://github.com/ayush-that/FinVeda/pull/2230", - "https://github.com/ayush-that/FinVeda/pull/2198", - "https://github.com/ayush-that/FinVeda/pull/2059", - "https://github.com/ayush-that/FinVeda/pull/2057", - "https://github.com/ayush-that/FinVeda/pull/2050", - "https://github.com/ayush-that/FinVeda/pull/1976", - "https://github.com/ayush-that/FinVeda/pull/1974", - "https://github.com/ayush-that/FinVeda/pull/1755", - "https://github.com/ayush-that/FinVeda/pull/1740", - "https://github.com/ayush-that/FinVeda/pull/1514", - "https://github.com/ayush-that/FinVeda/pull/1220" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-18", - "2024-10-21", - "2024-10-24", - "2024-10-25", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82383735?u=9161e42f0b4a85ad9535e87f9b3738e5f9db4407&v=4", - "login": "Jisha-tr", - "url": "https://github.com/Jisha-tr", - "score": 270, - "postManTag": false, - "web3hack": true, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/573", - "https://github.com/GSSoC24/Postman-Challenge/pull/1728", - "https://github.com/GSSoC24/Hack-Web3Conf/pull/5", - "https://github.com/GSSoC24/Hack-Web3Conf/pull/3" - ], - "pr_dates": ["2024-10-01", "2024-10-04", "2024-11-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112543741?u=09d8bceac69fac1cf105e5edadaef67bfce53850&v=4", - "login": "rajatsinghal02", - "url": "https://github.com/rajatsinghal02", - "score": 260, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/117", - "https://github.com/aditya-bhaumik/Pathsphere/pull/103", - "https://github.com/aditya-bhaumik/Pathsphere/pull/100", - "https://github.com/ajay-dhangar/algo/pull/571", - "https://github.com/ajay-dhangar/algo/pull/97", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/55", - "https://github.com/arjunatapadkar/codeteria/pull/37", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/48", - "https://github.com/OpenTekHub/blockchain/pull/89", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/107", - "https://github.com/Luson045/medi-connect/pull/131", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/33", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/36", - "https://github.com/ayerhssb/Appointment-booking-app/pull/20", - "https://github.com/soham0005/ElectroKart/pull/66", - "https://github.com/soham0005/ElectroKart/pull/27", - "https://github.com/Trisha-tech/OnlineBookSales/pull/325", - "https://github.com/sharmavikas4/MERN_BLOG/pull/11", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/282" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-12" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146444970?u=fd42c0e06d4721ab9eb42cd02d18e205cd879320&v=4", - "login": "saloni8780", - "url": "https://github.com/saloni8780", - "score": 260, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/718", - "https://github.com/vishanurag/Canvas-Editor/pull/680", - "https://github.com/mansiruhil13/Bobble-AI/pull/967", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1482", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1469", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1113", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1068", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1028", - "https://github.com/PriyaGhosal/BuddyTrail/pull/955", - "https://github.com/PriyaGhosal/BuddyTrail/pull/858" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-18", - "2024-10-19", - "2024-10-24", - "2024-10-25" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75197043?u=03aa89e1b494b622ed014242d5194d9c5ee7f1d4&v=4", - "login": "saurabh-dev-vns", - "url": "https://github.com/saurabh-dev-vns", - "score": 255, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3498", - "https://github.com/ayush-that/FinVeda/pull/1109", - "https://github.com/Bitbox-Connect/Bitbox/pull/75", - "https://github.com/mansiruhil13/Bobble-AI/pull/623", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/208", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/178", - "https://github.com/iamrahulmahato/master-web-development/pull/1230", - "https://github.com/iamrahulmahato/master-web-development/pull/1128", - "https://github.com/iamrahulmahato/master-web-development/pull/999", - "https://github.com/subhadeeproy3902/trailgo/pull/74", - "https://github.com/Scribbie-Notes/notes-app/pull/102" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112934339?u=ccebdd75ce0101fb9178d9867845e6b90a888c3d&v=4", - "login": "KhawajaFashi", - "url": "https://github.com/KhawajaFashi", - "score": 250, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/339", - "https://github.com/ajay-dhangar/algo/pull/162", - "https://github.com/ajay-dhangar/algo/pull/135", - "https://github.com/ajay-dhangar/algo/pull/90", - "https://github.com/ajay-dhangar/algo/pull/84", - "https://github.com/mansiruhil13/Bobble-AI/pull/909", - "https://github.com/mansiruhil13/Bobble-AI/pull/703", - "https://github.com/mansiruhil13/Bobble-AI/pull/165", - "https://github.com/AlgoGenesis/C/pull/93", - "https://github.com/SaranshBangar/Daneizo/pull/148", - "https://github.com/SaranshBangar/Daneizo/pull/146", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/88", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/52", - "https://github.com/vansh-codes/ChaosWeb/pull/168" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-14", - "2024-10-17", - "2024-10-21", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122423890?v=4", - "login": "devanshar", - "url": "https://github.com/devanshar", - "score": 240, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/83", - "https://github.com/anuragverma108/SwapReads/pull/3544", - "https://github.com/anuragverma108/SwapReads/pull/3339", - "https://github.com/anuragverma108/SwapReads/pull/3282", - "https://github.com/anuragverma108/SwapReads/pull/3219", - "https://github.com/anuragverma108/SwapReads/pull/3117", - "https://github.com/anuragverma108/SwapReads/pull/3052", - "https://github.com/anuragverma108/SwapReads/pull/2909", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/7", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/537", - "https://github.com/Luson045/medi-connect/pull/258", - "https://github.com/mansiruhil13/Bobble-AI/pull/462", - "https://github.com/mansiruhil13/Bobble-AI/pull/275" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90543113?u=0248afa9e261f5ef8478776635201f2f6797c5fa&v=4", - "login": "Rahul-AkaVector", - "url": "https://github.com/Rahul-AkaVector", - "score": 240, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/124", - "https://github.com/ANSHIKA-26/WordWise/pull/819", - "https://github.com/ANSHIKA-26/WordWise/pull/815", - "https://github.com/anuragverma108/SwapReads/pull/3272", - "https://github.com/arjunatapadkar/codeteria/pull/104", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/196", - "https://github.com/dohinaf/basic-icecream-website/pull/567", - "https://github.com/kom-senapati/bot-verse/pull/65", - "https://github.com/iamrahulmahato/master-web-development/pull/1482", - "https://github.com/iamrahulmahato/master-web-development/pull/1368", - "https://github.com/iamrahulmahato/master-web-development/pull/1275", - "https://github.com/samyakmaitre/eventmint/pull/159", - "https://github.com/UTSAVS26/PyVerse/pull/353" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-20" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165359201?u=35e390269d19fe2ed7d860597ee5633243384f5c&v=4", - "login": "rashmibarodiya", - "url": "https://github.com/rashmibarodiya", - "score": 240, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MitulSonagara/truth-tunnel/pull/161", - "https://github.com/MitulSonagara/truth-tunnel/pull/101", - "https://github.com/MitulSonagara/truth-tunnel/pull/75", - "https://github.com/MitulSonagara/truth-tunnel/pull/73", - "https://github.com/MitulSonagara/truth-tunnel/pull/66", - "https://github.com/MitulSonagara/truth-tunnel/pull/29", - "https://github.com/MitulSonagara/truth-tunnel/pull/10" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-18" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182351107?u=441b57909e04091de03dd535244007a4c85cefae&v=4", - "login": "Vishwajeet594", - "url": "https://github.com/Vishwajeet594", - "score": 230, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/341", - "https://github.com/Ramsey99/Admin_Dashboard/pull/75", - "https://github.com/Ramsey99/Admin_Dashboard/pull/54", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/123", - "https://github.com/mansiruhil13/Bobble-AI/pull/89", - "https://github.com/mansiruhil13/Bobble-AI/pull/69", - "https://github.com/mansiruhil13/Bobble-AI/pull/38", - "https://github.com/tushargupta1504/Medical-Website/pull/349" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-09", - "2024-10-11" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114340781?v=4", - "login": "09viv", - "url": "https://github.com/09viv", - "score": 230, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/200", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/125", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/124", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/108", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/94", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/209", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/200", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/161", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/153", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/152", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/148", - "https://github.com/iamrahulmahato/master-web-development/pull/1210", - "https://github.com/iamrahulmahato/master-web-development/pull/1135", - "https://github.com/iamrahulmahato/master-web-development/pull/1042" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-14" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160893021?u=4c272f133b3874c460a53f14497515536fab4142&v=4", - "login": "CogitoKunal", - "url": "https://github.com/CogitoKunal", - "score": 225, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ChandelAnish/fusionFLOW/pull/102", - "https://github.com/ChandelAnish/fusionFLOW/pull/101", - "https://github.com/ChandelAnish/fusionFLOW/pull/100", - "https://github.com/ChandelAnish/fusionFLOW/pull/99", - "https://github.com/ChandelAnish/fusionFLOW/pull/71" - ], - "pr_dates": ["2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105068445?v=4", - "login": "aviralgarg05", - "url": "https://github.com/aviralgarg05", - "score": 225, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/148", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/410", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/152", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/84", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/64", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/57", - "https://github.com/UTSAVS26/PyVerse/pull/628", - "https://github.com/UTSAVS26/PyVerse/pull/232", - "https://github.com/UTSAVS26/PyVerse/pull/78", - "https://github.com/UTSAVS26/PyVerse/pull/43", - "https://github.com/UTSAVS26/PyVerse/pull/27", - "https://github.com/UTSAVS26/PyVerse/pull/11" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-16", - "2024-10-17" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115877354?v=4", - "login": "ArpitaAgrahari", - "url": "https://github.com/ArpitaAgrahari", - "score": 225, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1174", - "https://github.com/iamrahulmahato/master-web-development/pull/598", - "https://github.com/iamrahulmahato/master-web-development/pull/295", - "https://github.com/iamrahulmahato/master-web-development/pull/123", - "https://github.com/iamrahulmahato/master-web-development/pull/93", - "https://github.com/Trisha-tech/OnlineBookSales/pull/388", - "https://github.com/tushargupta1504/Medical-Website/pull/49" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-06", - "2024-10-08", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177660387?u=474799bb3ab0284923df9007903bef2e4e4c773d&v=4", - "login": "swaramaitre", - "url": "https://github.com/swaramaitre", - "score": 225, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/samyakmaitre/eventmint/pull/407", - "https://github.com/samyakmaitre/eventmint/pull/338", - "https://github.com/samyakmaitre/eventmint/pull/332", - "https://github.com/samyakmaitre/eventmint/pull/312", - "https://github.com/samyakmaitre/eventmint/pull/153" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148577000?u=55c8f1ff91c3d6e296728e625a2ef9cca54334dd&v=4", - "login": "muskan171105", - "url": "https://github.com/muskan171105", - "score": 220, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/81", - "https://github.com/prajapatihet/donorconnect/pull/45", - "https://github.com/kartikayasijaa/talk-trove/pull/68", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/204", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/185", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/146", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/128", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/127" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-14" - ], - "streak": 5 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147089513?u=b98bb52a4a48a15b0a54f2c01bcf9b7b6329b4c5&v=4", - "login": "Aayush2308", - "url": "https://github.com/Aayush2308", - "score": 220, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/641", - "https://github.com/anuragverma108/SwapReads/pull/3769", - "https://github.com/anuragverma108/SwapReads/pull/3653", - "https://github.com/anuragverma108/SwapReads/pull/3354", - "https://github.com/vishanurag/Canvas-Editor/pull/1128", - "https://github.com/GarimaSingh0109/WasteManagment/pull/367", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/330", - "https://github.com/Shreyaa173/Code-Book/pull/424", - "https://github.com/Shreyaa173/Code-Book/pull/409", - "https://github.com/Shreyaa173/Code-Book/pull/232" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-25", - "2024-10-28", - "2024-10-29", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144697427?u=f12bc333b8212dfcc1951191483883d49c250a02&v=4", - "login": "MithanshuHedau", - "url": "https://github.com/MithanshuHedau", - "score": 210, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1550", - "https://github.com/ajay-dhangar/algo/pull/1315", - "https://github.com/ajay-dhangar/algo/pull/1187", - "https://github.com/ajay-dhangar/algo/pull/1092", - "https://github.com/ajay-dhangar/algo/pull/1043", - "https://github.com/ajay-dhangar/algo/pull/890", - "https://github.com/ajay-dhangar/algo/pull/690", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/25", - "https://github.com/divyansh-2005/FinNews/pull/196", - "https://github.com/AlgoGenesis/C/pull/1379", - "https://github.com/AlgoGenesis/C/pull/1148", - "https://github.com/AlgoGenesis/C/pull/937", - "https://github.com/AlgoGenesis/C/pull/835", - "https://github.com/AlgoGenesis/C/pull/760", - "https://github.com/AlgoGenesis/C/pull/659", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/342", - "https://github.com/soham0005/ElectroKart/pull/241", - "https://github.com/soham0005/ElectroKart/pull/230" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-26", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145777054?u=8b658e54891ea2539a6388b0ade9403cb6e7644f&v=4", - "login": "Lonewolf124", - "url": "https://github.com/Lonewolf124", - "score": 210, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/298", - "https://github.com/dohinaf/basic-icecream-website/pull/443", - "https://github.com/OpenTekHub/cryptobot/pull/45", - "https://github.com/Webaddicted91/Visieum2.0/pull/92", - "https://github.com/sk66641/AquaGuardians/pull/4", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/177" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147187417?v=4", - "login": "abhi200446", - "url": "https://github.com/abhi200446", - "score": 210, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3644", - "https://github.com/anuragverma108/SwapReads/pull/3623", - "https://github.com/anuragverma108/SwapReads/pull/3566", - "https://github.com/anuragverma108/SwapReads/pull/3496", - "https://github.com/anuragverma108/SwapReads/pull/3293", - "https://github.com/anuragverma108/SwapReads/pull/3283", - "https://github.com/anuragverma108/SwapReads/pull/3240", - "https://github.com/anuragverma108/SwapReads/pull/3236", - "https://github.com/anuragverma108/SwapReads/pull/3201", - "https://github.com/vishanurag/Canvas-Editor/pull/805", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/779", - "https://github.com/mansiruhil13/Bobble-AI/pull/957" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115488727?u=b8eb449c29854d9f2f5d5c99aeabde976d093eea&v=4", - "login": "770navyasharma", - "url": "https://github.com/770navyasharma", - "score": 205, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/98", - "https://github.com/ajay-dhangar/algo/pull/441", - "https://github.com/arjunatapadkar/codeteria/pull/38", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/87", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/99", - "https://github.com/AlgoGenesis/C/pull/462", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/94", - "https://github.com/yashasvini121/predictive-calc/pull/89", - "https://github.com/UTSAVS26/PyVerse/pull/162" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-10" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153378181?u=77c9346cb299135f57e14930ef8179b799eb59e8&v=4", - "login": "AnujSaha0111", - "url": "https://github.com/AnujSaha0111", - "score": 205, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anki2003ta/Museum/pull/87", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/39", - "https://github.com/ayush-that/FinVeda/pull/1102", - "https://github.com/mansiruhil13/Bobble-AI/pull/49", - "https://github.com/mansiruhil13/Bobble-AI/pull/41", - "https://github.com/ombhojane/explainableai/pull/55", - "https://github.com/ombhojane/explainableai/pull/54", - "https://github.com/ombhojane/explainableai/pull/46", - "https://github.com/ombhojane/explainableai/pull/21", - "https://github.com/gupta-ritik/ExpenseTracker/pull/29", - "https://github.com/Akasxh/Terrain-Recognition/pull/10", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/33", - "https://github.com/Soujanya2004/wanderlust-2024/pull/44", - "https://github.com/swarooppatilx/scruter/pull/74", - "https://github.com/multiverseweb/CodeIt/pull/61", - "https://github.com/Vimall03/Alimento/pull/59", - "https://github.com/AmateursLeague/sneaky-package/pull/32" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-11" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135936672?u=ede5c2661eebdcb31f9b0759b4591e3b7d5147fe&v=4", - "login": "anubhavvsharma", - "url": "https://github.com/anubhavvsharma", - "score": 205, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2413", - "https://github.com/ayush-that/FinVeda/pull/1920", - "https://github.com/ayush-that/FinVeda/pull/1895", - "https://github.com/ayush-that/FinVeda/pull/1811", - "https://github.com/ayush-that/FinVeda/pull/1771", - "https://github.com/ayush-that/FinVeda/pull/1714", - "https://github.com/ayush-that/FinVeda/pull/1704", - "https://github.com/ayush-that/FinVeda/pull/1692", - "https://github.com/ayush-that/FinVeda/pull/1656", - "https://github.com/dhairyagothi/StationGuide/pull/422" - ], - "pr_dates": [ - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124163311?u=daa1a971441452b39ab9dd45f005b8ae2087e898&v=4", - "login": "adityakalburgi", - "url": "https://github.com/adityakalburgi", - "score": 205, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/202", - "https://github.com/Devamani11D/salt-app-kickstart/pull/47", - "https://github.com/Devamani11D/salt-app-kickstart/pull/21", - "https://github.com/Devamani11D/salt-app-kickstart/pull/18", - "https://github.com/Devamani11D/salt-app-kickstart/pull/17", - "https://github.com/Devamani11D/salt-app-kickstart/pull/13", - "https://github.com/Devamani11D/salt-app-kickstart/pull/10", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/170", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/105", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/21", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/20", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/18", - "https://github.com/vansh-codes/Gityzer/pull/8" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-13", - "2024-10-17" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129738518?v=4", - "login": "Shreyansh1563", - "url": "https://github.com/Shreyansh1563", - "score": 205, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/200", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/179", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/174", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/150", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/143", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/119", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/91" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-17", - "2024-10-23", - "2024-10-26", - "2024-10-28", - "2024-10-29", - "2024-11-01" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182261278?u=8a785814023c74acdaf34d3b17e01946268a4e79&v=4", - "login": "Deepak0yadav", - "url": "https://github.com/Deepak0yadav", - "score": 200, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/383", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/376", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/321", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/258", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/155", - "https://github.com/ANSHIKA-26/WordWise/pull/867", - "https://github.com/ANSHIKA-26/WordWise/pull/689" - ], - "pr_dates": ["2024-10-07", "2024-10-10", "2024-10-12", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166889122?u=563f2e23bcd9f8edb51ee0289ba6b1de6e094a1e&v=4", - "login": "Lekkhasri", - "url": "https://github.com/Lekkhasri", - "score": 200, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/440", - "https://github.com/vishanurag/Canvas-Editor/pull/176", - "https://github.com/dohinaf/basic-icecream-website/pull/205", - "https://github.com/GarimaSingh0109/WasteManagment/pull/222", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/134", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/506", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/439", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/330", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/178" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-08", - "2024-10-11", - "2024-10-12" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142529986?u=b3ccd9a155ef6e503775f016a155e03543952ae3&v=4", - "login": "DiwareNamrata23", - "url": "https://github.com/DiwareNamrata23", - "score": 200, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/my-calendar-app/pull/111", - "https://github.com/divyansh-2005/FinNews/pull/121", - "https://github.com/divyansh-2005/FinNews/pull/34", - "https://github.com/divyansh-2005/FinNews/pull/9", - "https://github.com/iamrahulmahato/master-web-development/pull/1115", - "https://github.com/iamrahulmahato/master-web-development/pull/269" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-08", - "2024-10-13" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156239419?u=acc74ce984fbe866916227a51b36cd7bbe7cbb40&v=4", - "login": "Anjalis14", - "url": "https://github.com/Anjalis14", - "score": 190, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/294", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/242", - "https://github.com/Bitbox-Connect/Bitbox/pull/148", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/497", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/183", - "https://github.com/PriyaGhosal/BuddyTrail/pull/791", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/337", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/315", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/308" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-17" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91595810?u=2d673751324cb673b8a77e66c669edeed63e389f&v=4", - "login": "Hh440", - "url": "https://github.com/Hh440", - "score": 190, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aswathcm29/JournalForge/pull/58", - "https://github.com/Bitbox-Connect/Bitbox/pull/5", - "https://github.com/TherkuTech/tturl/pull/64", - "https://github.com/param-code/counter-app/pull/163", - "https://github.com/TenzDelek/DearDiary/pull/60", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/64", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/59" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-07", - "2024-10-10", - "2024-10-12", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135859943?v=4", - "login": "BhavaniSankar0107", - "url": "https://github.com/BhavaniSankar0107", - "score": 185, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/87", - "https://github.com/ANSHIKA-26/WordWise/pull/1362", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/108", - "https://github.com/jahnvisahni31/DesignDeck/pull/200", - "https://github.com/MitulSonagara/truth-tunnel/pull/253", - "https://github.com/param-code/counter-app/pull/264", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/52", - "https://github.com/Rakshit-gen/Slanine/pull/98", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/181", - "https://github.com/Soujanya2004/wanderlust-2024/pull/210", - "https://github.com/vansh-codes/ChaosWeb/pull/174", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/131", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/350", - "https://github.com/Akshat111111/NexTrade/pull/66", - "https://github.com/vanshchauhan21/CryptoTracker/pull/78" - ], - "pr_dates": ["2024-10-23", "2024-10-24", "2024-10-25", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162057089?v=4", - "login": "AnushkaS77", - "url": "https://github.com/AnushkaS77", - "score": 185, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/609", - "https://github.com/anuragverma108/SwapReads/pull/4308", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/214", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/249", - "https://github.com/SurajPratap10/Imagine_AI/pull/1233" - ], - "pr_dates": ["2024-10-10", "2024-10-14", "2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146806880?v=4", - "login": "Ketanop321", - "url": "https://github.com/Ketanop321", - "score": 185, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1639", - "https://github.com/GarimaSingh0109/WasteManagment/pull/185", - "https://github.com/Luson045/medi-connect/pull/97", - "https://github.com/iamrahulmahato/master-web-development/pull/1394", - "https://github.com/iamrahulmahato/master-web-development/pull/1390", - "https://github.com/iamrahulmahato/master-web-development/pull/608", - "https://github.com/iamrahulmahato/master-web-development/pull/474" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-18", - "2024-10-20" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/80570587?u=69dcfd9983d013cc148866cd7e4461e565061543&v=4", - "login": "abhishekpanthee", - "url": "https://github.com/abhishekpanthee", - "score": 180, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/54", - "https://github.com/DeadmanAbir/AgentGenesis/pull/45", - "https://github.com/RCCTechzClub/TechzRevamp/pull/42", - "https://github.com/arjunatapadkar/codeteria/pull/78", - "https://github.com/jahnvisahni31/DesignDeck/pull/38", - "https://github.com/SaranshBangar/Daneizo/pull/35" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76897566?u=9dbcfc11b570282704b84f323dfb57ab8e586219&v=4", - "login": "shalini-bhandari", - "url": "https://github.com/shalini-bhandari", - "score": 175, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/169", - "https://github.com/ajay-dhangar/algo/pull/103", - "https://github.com/ajay-dhangar/algo/pull/96", - "https://github.com/ankit071105/Ticket-Booking/pull/246", - "https://github.com/ANSHIKA-26/WordWise/pull/571", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/851", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/275", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/236", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/185" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-08", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122025299?u=958e9566eb6a5ea8eae706455205c730f89a92b4&v=4", - "login": "sakshamsaraf23", - "url": "https://github.com/sakshamsaraf23", - "score": 175, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/77", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/69", - "https://github.com/ANSHIKA-26/WordWise/pull/270", - "https://github.com/ANSHIKA-26/WordWise/pull/246", - "https://github.com/divyansh-2005/my-calendar-app/pull/62", - "https://github.com/prajapatihet/donorconnect/pull/25", - "https://github.com/mansiruhil13/Bobble-AI/pull/166", - "https://github.com/mansiruhil13/Bobble-AI/pull/138", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/51", - "https://github.com/yashasvini121/predictive-calc/pull/60" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-06"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171278391?u=bbd8b179411922fa7b493e956ea0ae852450b7c8&v=4", - "login": "sarinsanyal", - "url": "https://github.com/sarinsanyal", - "score": 175, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/147", - "https://github.com/anuragverma108/SwapReads/pull/3303", - "https://github.com/anuragverma108/SwapReads/pull/3049", - "https://github.com/anuragverma108/SwapReads/pull/3016", - "https://github.com/vishanurag/Canvas-Editor/pull/187", - "https://github.com/PriyaGhosal/BuddyTrail/pull/273", - "https://github.com/swarooppatilx/scruter/pull/147", - "https://github.com/swarooppatilx/scruter/pull/136", - "https://github.com/swarooppatilx/scruter/pull/112" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-10", - "2024-10-12", - "2024-10-13" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109457185?u=73d4f7acd3fb6ec70d2bb4669699aa95192f1cc4&v=4", - "login": "Vaishh18", - "url": "https://github.com/Vaishh18", - "score": 170, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/703", - "https://github.com/OpenTekHub/blockchain/pull/136", - "https://github.com/Open-Code-Crafters/FitFlex/pull/214", - "https://github.com/Open-Code-Crafters/FitFlex/pull/153", - "https://github.com/Anjaliavv51/Retro/pull/518", - "https://github.com/Anjaliavv51/Retro/pull/262", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/381", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/236", - "https://github.com/multiverseweb/CodeIt/pull/129", - "https://github.com/tushargupta1504/Medical-Website/pull/330", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/497", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/76" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-13", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135056339?u=d368009c333d40de80610f5b5d91ef8bf2f6f655&v=4", - "login": "may-tas", - "url": "https://github.com/may-tas", - "score": 170, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/99", - "https://github.com/prajapatihet/donorconnect/pull/39", - "https://github.com/prajapatihet/donorconnect/pull/37", - "https://github.com/prajapatihet/donorconnect/pull/22", - "https://github.com/Jiggy9/JCT/pull/65", - "https://github.com/Jiggy9/JCT/pull/63", - "https://github.com/Jiggy9/JCT/pull/60", - "https://github.com/Jiggy9/JCT/pull/44" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-08", - "2024-10-09", - "2024-10-13", - "2024-10-14", - "2024-10-21" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104709542?u=f83471e651b81e356c9f72f369e705e9aa0575c4&v=4", - "login": "amitroy-thedev", - "url": "https://github.com/amitroy-thedev", - "score": 170, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Megh2005/Med-o-Next/pull/91", - "https://github.com/Anjaliavv51/Retro/pull/398", - "https://github.com/PriyaGhosal/BuddyTrail/pull/409", - "https://github.com/SurajPratap10/Imagine_AI/pull/1169", - "https://github.com/Trisha-tech/OnlineBookSales/pull/562", - "https://github.com/Trisha-tech/OnlineBookSales/pull/390", - "https://github.com/Vin205/Enyanjyoti/pull/166", - "https://github.com/Vin205/Enyanjyoti/pull/159" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-13", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97039791?u=8b3d0bcebfeb00e7945e4cbe4b3ef8fe0756dddf&v=4", - "login": "SCR01", - "url": "https://github.com/SCR01", - "score": 165, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/49", - "https://github.com/codeaashu/DevDisplay/pull/149", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/43", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/14", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/13", - "https://github.com/Open-Code-Crafters/FitFlex/pull/84", - "https://github.com/Open-Code-Crafters/FitFlex/pull/83", - "https://github.com/iamrahulmahato/master-web-development/pull/310", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/272" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-07" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167061606?u=c67a0ef597a927a8d515b4ceb3fca9704080d4d2&v=4", - "login": "Anamika-garg", - "url": "https://github.com/Anamika-garg", - "score": 165, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/76", - "https://github.com/Manishkr1007/WordWeaver/pull/67", - "https://github.com/iamrahulmahato/master-web-development/pull/414", - "https://github.com/iamrahulmahato/master-web-development/pull/412", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/132", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/102", - "https://github.com/samyakmaitre/eventmint/pull/89", - "https://github.com/samyakmaitre/eventmint/pull/86", - "https://github.com/samyakmaitre/eventmint/pull/84", - "https://github.com/Vin205/Enyanjyoti/pull/271" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150207373?v=4", - "login": "Pranshu-jais", - "url": "https://github.com/Pranshu-jais", - "score": 165, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/75", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/320", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/110", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/98", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/70" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-06", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109225662?u=75557d0a69cde3f863b089af106da4a775496dfa&v=4", - "login": "Swetabh333", - "url": "https://github.com/Swetabh333", - "score": 165, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/muruga21/LoadDistrix/pull/13", - "https://github.com/Rakshit-gen/Slanine/pull/23", - "https://github.com/Rakshit-gen/Slanine/pull/13", - "https://github.com/SurajPratap10/Imagine_AI/pull/1260", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/28" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-06", - "2024-10-08", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129504209?u=af44c9027fb32ec3a826b4c5d7d7203b476c04a7&v=4", - "login": "Darkeye14", - "url": "https://github.com/Darkeye14", - "score": 165, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vishwajith-Shettigar/NextGen/pull/138", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/137", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/136", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/135", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/134", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/131", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/129", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/128", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/124" - ], - "pr_dates": ["2024-10-24", "2024-10-25", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166200790?u=fd5ab15527eab2c930159dea621c195d2c394601&v=4", - "login": "the-anjali-13", - "url": "https://github.com/the-anjali-13", - "score": 160, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1013", - "https://github.com/aditya-bhaumik/Pathsphere/pull/969", - "https://github.com/aditya-bhaumik/Pathsphere/pull/842", - "https://github.com/aditya-bhaumik/Pathsphere/pull/728" - ], - "pr_dates": ["2024-10-16", "2024-10-19", "2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121927281?v=4", - "login": "LifeHashed", - "url": "https://github.com/LifeHashed", - "score": 160, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/34", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/24", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/22", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/15", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/8", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/6", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/5", - "https://github.com/recodehive/Scrape-ML/pull/232" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120274602?u=a7b686be08ee7815d1edf23d0d49364197d0f6b8&v=4", - "login": "singhtrivendra", - "url": "https://github.com/singhtrivendra", - "score": 160, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/391", - "https://github.com/prajapatihet/donorconnect/pull/108", - "https://github.com/prajapatihet/donorconnect/pull/104", - "https://github.com/prajapatihet/donorconnect/pull/98", - "https://github.com/prajapatihet/donorconnect/pull/93", - "https://github.com/prajapatihet/donorconnect/pull/85", - "https://github.com/prajapatihet/donorconnect/pull/82", - "https://github.com/prajapatihet/donorconnect/pull/77" - ], - "pr_dates": [ - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-24" - ], - "streak": 8 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/53538405?u=3345748ebd70185373809b98bf0cce59598f7cd1&v=4", - "login": "Dev-Rishav", - "url": "https://github.com/Dev-Rishav", - "score": 160, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/samyakmaitre/eventmint/pull/324", - "https://github.com/VigneshDevHub/CampX/pull/108", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/106", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/24" - ], - "pr_dates": ["2024-10-01", "2024-10-03", "2024-10-07", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142300294?u=58491fe2569c035fecfba33724ef2b3b30881ccf&v=4", - "login": "avogadroB", - "url": "https://github.com/avogadroB", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/549", - "https://github.com/ankit071105/Ticket-Booking/pull/545", - "https://github.com/ayush-that/FinVeda/pull/1988", - "https://github.com/ayush-that/FinVeda/pull/1619", - "https://github.com/recodehive/machine-learning-repos/pull/1551", - "https://github.com/recodehive/machine-learning-repos/pull/1518", - "https://github.com/recodehive/machine-learning-repos/pull/1509", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1171" - ], - "pr_dates": [ - "2024-10-19", - "2024-10-20", - "2024-10-21", - "2024-10-22", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97662858?u=cce5655b7468c5d9de29e6a8ad279284a0fa7958&v=4", - "login": "ragini-gp", - "url": "https://github.com/ragini-gp", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/430", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/343", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/207", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/171", - "https://github.com/Harshdev098/Research-Nexas/pull/64", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/14" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-19", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116631005?u=cf9b01dfe9f77c3db6f50d6998d974b6525d1643&v=4", - "login": "vivekrawat21", - "url": "https://github.com/vivekrawat21", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/884", - "https://github.com/Bitbox-Connect/Bitbox/pull/118", - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/22", - "https://github.com/TherkuTech/tturl/pull/86", - "https://github.com/param-code/counter-app/pull/160", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/100", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1195" - ], - "pr_dates": ["2024-10-12", "2024-10-14", "2024-10-15", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136550347?u=e3ee70b572682238421d52653ecdba631188a135&v=4", - "login": "Mayank202004", - "url": "https://github.com/Mayank202004", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/23", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/265", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/111", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/103", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/48", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/34", - "https://github.com/UTSAVS26/PyVerse/pull/228", - "https://github.com/UTSAVS26/PyVerse/pull/140", - "https://github.com/UTSAVS26/PyVerse/pull/53" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-12" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103236128?v=4", - "login": "PrayanshParmar", - "url": "https://github.com/PrayanshParmar", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Rakshit-gen/Slanine/pull/48", - "https://github.com/Rakshit-gen/Slanine/pull/37", - "https://github.com/Rakshit-gen/Slanine/pull/35", - "https://github.com/Rakshit-gen/Slanine/pull/33", - "https://github.com/TenzDelek/DearDiary/pull/95", - "https://github.com/TenzDelek/DearDiary/pull/79" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144788392?u=8c89c3e7574157f4ddfc2e87dd86f00444743f56&v=4", - "login": "Aryam2121", - "url": "https://github.com/Aryam2121", - "score": 155, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/visheshrwl/Uber-like/pull/31", - "https://github.com/visheshrwl/Uber-like/pull/30", - "https://github.com/visheshrwl/Uber-like/pull/29", - "https://github.com/visheshrwl/Uber-like/pull/23", - "https://github.com/visheshrwl/Uber-like/pull/22", - "https://github.com/visheshrwl/Uber-like/pull/19", - "https://github.com/visheshrwl/Uber-like/pull/18", - "https://github.com/visheshrwl/Uber-like/pull/17" - ], - "pr_dates": ["2024-10-07", "2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90641918?u=3cbcb48a09a1bab7404bbf74ca1d9b0678975d0d&v=4", - "login": "RahulPrasadYadav", - "url": "https://github.com/RahulPrasadYadav", - "score": 150, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/984", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/547", - "https://github.com/ayush-that/FinVeda/pull/1812", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/904", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/727", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/663", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1006" - ], - "pr_dates": [ - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76701333?u=1ec110ea3aa428c5b5dfe362f74102cab91a701b&v=4", - "login": "jaison-jai-john", - "url": "https://github.com/jaison-jai-john", - "score": 150, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/635", - "https://github.com/aditya-bhaumik/Pathsphere/pull/281", - "https://github.com/aditya-bhaumik/Pathsphere/pull/222", - "https://github.com/aditya-bhaumik/Pathsphere/pull/219", - "https://github.com/aditya-bhaumik/Pathsphere/pull/195" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182256919?v=4", - "login": "MudadlaYogitha", - "url": "https://github.com/MudadlaYogitha", - "score": 150, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/265", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/229", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/154", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/113", - "https://github.com/UTSAVS26/PyVerse/pull/603" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-16" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182342654?u=06a5f166fe3aae1e5c2db9e938075d33faa787e8&v=4", - "login": "Codewithmeowmeow", - "url": "https://github.com/Codewithmeowmeow", - "score": 150, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/46", - "https://github.com/ayush-that/FinVeda/pull/1010", - "https://github.com/GarimaSingh0109/WasteManagment/pull/95", - "https://github.com/GarimaSingh0109/WasteManagment/pull/74", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/213", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/211", - "https://github.com/PriyaGhosal/BuddyTrail/pull/412", - "https://github.com/iamrahulmahato/master-web-development/pull/401" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-09" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109298972?v=4", - "login": "Vishisht16", - "url": "https://github.com/Vishisht16", - "score": 150, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/188", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/137", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/107", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/92", - "https://github.com/recodehive/machine-learning-repos/pull/1285", - "https://github.com/recodehive/machine-learning-repos/pull/1259" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-07", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144722995?v=4", - "login": "shreya5653", - "url": "https://github.com/shreya5653", - "score": 145, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/LibraryMan-API/pull/89", - "https://github.com/ajaynegi45/LibraryMan-API/pull/75", - "https://github.com/ajaynegi45/LibraryMan-API/pull/72", - "https://github.com/vishanurag/Canvas-Editor/pull/1063" - ], - "pr_dates": ["2024-10-10", "2024-10-15", "2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/36557466?u=d0163acdf5f2d0439d83edc5f34f5fa3b6da9c17&v=4", - "login": "jitendra-ky", - "url": "https://github.com/jitendra-ky", - "score": 145, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/365", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/356", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/339", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/147", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/55", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/26", - "https://github.com/andoriyaprashant/DevDocsHub/pull/41" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-19", - "2024-10-20" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142051455?u=8f4b2d0bd448f32dc086579a34d7b853e072bbba&v=4", - "login": "itskundanhere", - "url": "https://github.com/itskundanhere", - "score": 145, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/908", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/534", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/348", - "https://github.com/andoriyaprashant/OpSo/pull/377", - "https://github.com/andoriyaprashant/OpSo/pull/363", - "https://github.com/andoriyaprashant/OpSo/pull/361", - "https://github.com/andoriyaprashant/OpSo/pull/341", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/553", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/424", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/387" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-10", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-18", - "2024-10-22", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183596777?u=b44a81a12e41004f992d4a5d25ac9703b69de97a&v=4", - "login": "PatelHarsh2006", - "url": "https://github.com/PatelHarsh2006", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/383", - "https://github.com/dohinaf/basic-icecream-website/pull/627", - "https://github.com/dohinaf/basic-icecream-website/pull/554", - "https://github.com/dohinaf/basic-icecream-website/pull/437", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1490", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/318" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-11", - "2024-10-14", - "2024-10-17", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118829508?u=80fe9fdd8f8b75bff049ce84dcbf385ab7ac65b1&v=4", - "login": "vashujoshi", - "url": "https://github.com/vashujoshi", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/260", - "https://github.com/Code-Social/official-website/pull/240", - "https://github.com/Code-Social/official-website/pull/228", - "https://github.com/Code-Social/official-website/pull/207" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-15", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117831928?u=555cb35311e5a79aabcb7533431b7468cb60e107&v=4", - "login": "wizaye", - "url": "https://github.com/wizaye", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/175", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/165", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/120", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/105" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-11", "2024-10-12"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135348911?v=4", - "login": "shrehs", - "url": "https://github.com/shrehs", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/Jarvis/pull/216", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/203", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/195", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/552" - ], - "pr_dates": ["2024-10-20", "2024-10-23", "2024-10-27", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128738945?u=f8a585d095716c14362efab012d37b3eea58c50a&v=4", - "login": "iamsaura8h", - "url": "https://github.com/iamsaura8h", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/219", - "https://github.com/himeshparashar/Social-Morph/pull/63", - "https://github.com/himeshparashar/Social-Morph/pull/62", - "https://github.com/Manishkr1007/WordWeaver/pull/86", - "https://github.com/param-code/counter-app/pull/42", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/74", - "https://github.com/subhadipbhowmik/bio-branch/pull/42", - "https://github.com/Vin205/Enyanjyoti/pull/176", - "https://github.com/Vin205/Enyanjyoti/pull/157" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-08", - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-17" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116144227?u=d6e8d10716b6ad7412ebee4f4c7c6db879c1d985&v=4", - "login": "unknown91tech", - "url": "https://github.com/unknown91tech", - "score": 140, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/166", - "https://github.com/jahnvisahni31/DesignDeck/pull/43", - "https://github.com/jahnvisahni31/DesignDeck/pull/32", - "https://github.com/jahnvisahni31/DesignDeck/pull/20", - "https://github.com/jahnvisahni31/DesignDeck/pull/16", - "https://github.com/TherkuTech/tturl/pull/24", - "https://github.com/gupta-ritik/ExpenseTracker/pull/42", - "https://github.com/notsoocool/codecache/pull/152" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-09", - "2024-10-18", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146447594?u=756e39f5078f4e4cb1d423eceafe97f494ac94a6&v=4", - "login": "rupeshv2121", - "url": "https://github.com/rupeshv2121", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/275", - "https://github.com/yatulearn/yatulearn/pull/220", - "https://github.com/anuragverma108/SwapReads/pull/3163", - "https://github.com/anuragverma108/SwapReads/pull/3137", - "https://github.com/anuragverma108/SwapReads/pull/2996", - "https://github.com/mdazfar2/Ezyshop/pull/292", - "https://github.com/mdazfar2/Ezyshop/pull/211", - "https://github.com/SurajPratap10/Imagine_AI/pull/1213", - "https://github.com/swarooppatilx/scruter/pull/317" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160406913?u=1333555f3dbc695282cc1fa43a188552874d6a96&v=4", - "login": "Mahateaa", - "url": "https://github.com/Mahateaa", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/776", - "https://github.com/ajay-dhangar/algo/pull/185", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/330", - "https://github.com/codeaashu/DevDisplay/pull/304", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/113", - "https://github.com/AlgoGenesis/C/pull/1062", - "https://github.com/AlgoGenesis/C/pull/828", - "https://github.com/AlgoGenesis/C/pull/672", - "https://github.com/UTSAVS26/PySnippets/pull/241" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-15", - "2024-10-17", - "2024-10-19", - "2024-10-20" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162002505?u=0790233a892c2b0040efb36c1e4bb6b028b6dfcd&v=4", - "login": "toshankanwar", - "url": "https://github.com/toshankanwar", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1174", - "https://github.com/iamrahulmahato/master-web-development/pull/1491", - "https://github.com/iamrahulmahato/master-web-development/pull/1443", - "https://github.com/iamrahulmahato/master-web-development/pull/1429", - "https://github.com/iamrahulmahato/master-web-development/pull/1423", - "https://github.com/iamrahulmahato/master-web-development/pull/1354", - "https://github.com/iamrahulmahato/master-web-development/pull/148" - ], - "pr_dates": ["2024-10-02", "2024-10-17", "2024-10-19", "2024-10-20"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63006841?u=8b8c18d1d3f5b3c61f943660c0d0ac8095a40bb4&v=4", - "login": "ngsanthosh", - "url": "https://github.com/ngsanthosh", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/728", - "https://github.com/vishanurag/Canvas-Editor/pull/481", - "https://github.com/vishanurag/Canvas-Editor/pull/468", - "https://github.com/vishanurag/Canvas-Editor/pull/206", - "https://github.com/vishanurag/Canvas-Editor/pull/184" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-12", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129066926?u=bf73693adfe817b8778d5c9d6c318937701e9544&v=4", - "login": "Kushagra614", - "url": "https://github.com/Kushagra614", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1122", - "https://github.com/andoriyaprashant/DevDocsHub/pull/142", - "https://github.com/andoriyaprashant/DevDocsHub/pull/132", - "https://github.com/andoriyaprashant/DevDocsHub/pull/129", - "https://github.com/andoriyaprashant/DevDocsHub/pull/111" - ], - "pr_dates": [ - "2024-10-18", - "2024-10-22", - "2024-10-24", - "2024-10-25", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111263110?u=d5c6eb3bd24cd35e4d2279824c106b2150966cc6&v=4", - "login": "Mdraza78", - "url": "https://github.com/Mdraza78", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/833", - "https://github.com/iamrahulmahato/master-web-development/pull/86", - "https://github.com/Trisha-tech/OnlineBookSales/pull/464" - ], - "pr_dates": ["2024-10-01", "2024-10-08", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76672901?u=df77f0bda0206ab3eb84031f2aa25b66a588bed3&v=4", - "login": "justynigam", - "url": "https://github.com/justynigam", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/480", - "https://github.com/iamrahulmahato/master-web-development/pull/434", - "https://github.com/iamrahulmahato/master-web-development/pull/229", - "https://github.com/iamrahulmahato/master-web-development/pull/91", - "https://github.com/recodehive/awesome-github-profiles/pull/561", - "https://github.com/tushargupta1504/Medical-Website/pull/143" - ], - "pr_dates": ["2024-10-01", "2024-10-03", "2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130276810?u=6016c131db5de128c1d4630c3aac97fb000b66c8&v=4", - "login": "AmanSingh494", - "url": "https://github.com/AmanSingh494", - "score": 135, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/4darsh-Dev/DecenTrade/pull/125", - "https://github.com/4darsh-Dev/DecenTrade/pull/93", - "https://github.com/4darsh-Dev/DecenTrade/pull/18" - ], - "pr_dates": ["2024-10-02", "2024-10-19", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122685473?u=b88e955d2ef2505b838f6581c5809475bcec8430&v=4", - "login": "SurajSakhare100", - "url": "https://github.com/SurajSakhare100", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RCCTechzClub/TechzRevamp/pull/28", - "https://github.com/RCCTechzClub/TechzRevamp/pull/25", - "https://github.com/Bitbox-Connect/Bitbox/pull/40", - "https://github.com/Bitbox-Connect/Bitbox/pull/24", - "https://github.com/rahulsainlll/git-trace/pull/63" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-08", "2024-10-09"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146121869?u=99d3967ac658490074eb01d0191c17ef472807f4&v=4", - "login": "AsmitaMishra24", - "url": "https://github.com/AsmitaMishra24", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/307", - "https://github.com/Luson045/medi-connect/pull/416", - "https://github.com/Luson045/medi-connect/pull/379", - "https://github.com/iamrahulmahato/master-web-development/pull/1023", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/109" - ], - "pr_dates": ["2024-10-11", "2024-10-12", "2024-10-13", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74372261?u=48f9e2e744f29e8b959889e3e41f141229e7ee6f&v=4", - "login": "Nimit1775", - "url": "https://github.com/Nimit1775", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1036", - "https://github.com/vishanurag/Canvas-Editor/pull/666", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/174", - "https://github.com/PriyaGhosal/BuddyTrail/pull/969", - "https://github.com/PriyaGhosal/BuddyTrail/pull/890", - "https://github.com/PriyaGhosal/BuddyTrail/pull/825", - "https://github.com/PriyaGhosal/BuddyTrail/pull/355" - ], - "pr_dates": ["2024-10-09", "2024-10-16", "2024-10-17", "2024-10-18"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143598174?v=4", - "login": "13Sharad", - "url": "https://github.com/13Sharad", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3897", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/166", - "https://github.com/AlgoGenesis/C/pull/1514", - "https://github.com/AlgoGenesis/C/pull/1245", - "https://github.com/AlgoGenesis/C/pull/979", - "https://github.com/iamrahulmahato/master-web-development/pull/1922", - "https://github.com/iamrahulmahato/master-web-development/pull/1746", - "https://github.com/iamrahulmahato/master-web-development/pull/1076", - "https://github.com/iamrahulmahato/master-web-development/pull/768", - "https://github.com/iamrahulmahato/master-web-development/pull/415" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-07", - "2024-10-08", - "2024-10-12", - "2024-10-18", - "2024-10-22", - "2024-10-25", - "2024-10-28", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151193465?v=4", - "login": "murtaza-sadri-19", - "url": "https://github.com/murtaza-sadri-19", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/121", - "https://github.com/GarimaSingh0109/WasteManagment/pull/60", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/58", - "https://github.com/vansh-codes/Gityzer/pull/30", - "https://github.com/UTSAVS26/PyVerse/pull/227" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-09" - ], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129389189?u=f3e9ae35022ef4535eaed772e451374d9096420d&v=4", - "login": "thejatingupta7", - "url": "https://github.com/thejatingupta7", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/118", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/189", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/276", - "https://github.com/Kritika30032002/Blog_Website/pull/184", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1120", - "https://github.com/SaranshBangar/Daneizo/pull/21", - "https://github.com/UTSAVS26/PyVerse/pull/317" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-08", - "2024-10-12", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158060025?v=4", - "login": "itsadi-24", - "url": "https://github.com/itsadi-24", - "score": 130, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VigneshDevHub/CampX/pull/279", - "https://github.com/VigneshDevHub/CampX/pull/252", - "https://github.com/VigneshDevHub/CampX/pull/228", - "https://github.com/VigneshDevHub/CampX/pull/176", - "https://github.com/VigneshDevHub/CampX/pull/170" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-14", - "2024-10-18", - "2024-10-21", - "2024-10-22" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/77742960?u=a78c5e003f3d557cfb1a7bfabcae028637a4791a&v=4", - "login": "Lighting-pixel", - "url": "https://github.com/Lighting-pixel", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/945", - "https://github.com/ajay-dhangar/algo/pull/682", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/419", - "https://github.com/AlgoGenesis/C/pull/909", - "https://github.com/AlgoGenesis/C/pull/703", - "https://github.com/AlgoGenesis/C/pull/666", - "https://github.com/AlgoGenesis/C/pull/611", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1161" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-16", - "2024-10-17", - "2024-10-18" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142721314?v=4", - "login": "c4dr-me", - "url": "https://github.com/c4dr-me", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/587", - "https://github.com/codeaashu/DevDisplay/pull/285", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/85", - "https://github.com/Bitbox-Connect/Bitbox/pull/106", - "https://github.com/Bitbox-Connect/Bitbox/pull/101", - "https://github.com/Bitbox-Connect/Bitbox/pull/90", - "https://github.com/Open-Code-Crafters/FitFlex/pull/211", - "https://github.com/Luson045/medi-connect/pull/436" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171466464?u=0efa75368966a2584d422990503d0c9a0d838676&v=4", - "login": "Dyfintie", - "url": "https://github.com/Dyfintie", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/505", - "https://github.com/anuj123upadhyay/MegaBlog/pull/248", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/470", - "https://github.com/param-code/counter-app/pull/236", - "https://github.com/Vin205/Enyanjyoti/pull/402", - "https://github.com/Yashgabani845/hiring-portal/pull/213" - ], - "pr_dates": ["2024-10-18", "2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162184705?v=4", - "login": "ChauhanAyush04", - "url": "https://github.com/ChauhanAyush04", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/544", - "https://github.com/ankit071105/Ticket-Booking/pull/525", - "https://github.com/anuragverma108/SwapReads/pull/3208", - "https://github.com/ayush-that/FinVeda/pull/1429", - "https://github.com/ayush-that/FinVeda/pull/1336", - "https://github.com/mansiruhil13/Bobble-AI/pull/51", - "https://github.com/Anjaliavv51/Retro/pull/532", - "https://github.com/multiverseweb/Dataverse/pull/18" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-10", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-21", - "2024-10-22" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117925314?u=09ec94c97ed0d7bf993d176e2d8c1394fb32a0b2&v=4", - "login": "abhisek2004", - "url": "https://github.com/abhisek2004", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ramsey99/Admin_Dashboard/pull/36", - "https://github.com/anuragverma108/SwapReads/pull/3612", - "https://github.com/anuragverma108/SwapReads/pull/3453", - "https://github.com/tushargupta1504/Medical-Website/pull/278" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-14", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166193913?v=4", - "login": "simmi-verma", - "url": "https://github.com/simmi-verma", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/496", - "https://github.com/vishanurag/Canvas-Editor/pull/154", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/662", - "https://github.com/AlgoGenesis/C/pull/338", - "https://github.com/AlgoGenesis/C/pull/167", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/504", - "https://github.com/tushargupta1504/Medical-Website/pull/158" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-08", - "2024-10-13", - "2024-10-16", - "2024-10-17" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145530795?u=c9a31cdce699ba7b668cc81cabd375bbc44e214a&v=4", - "login": "Slambot01", - "url": "https://github.com/Slambot01", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/44", - "https://github.com/arjunatapadkar/codeteria/pull/42", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/297", - "https://github.com/dohinaf/basic-icecream-website/pull/252", - "https://github.com/PriyaGhosal/BuddyTrail/pull/396", - "https://github.com/PriyaGhosal/BuddyTrail/pull/235", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/43" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110383668?v=4", - "login": "spandana2004", - "url": "https://github.com/spandana2004", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/112", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/91", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/367", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/297", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/239", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/234", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/127", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/74" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-11", - "2024-10-12", - "2024-10-15", - "2024-10-16" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97722446?u=db38ebd70423174d932281040b19e913b395a316&v=4", - "login": "pratikwayal01", - "url": "https://github.com/pratikwayal01", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/96", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/79", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/402", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/139", - "https://github.com/recodehive/machine-learning-repos/pull/1293" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-08", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125476961?u=d24ddfe9206b9a800f0b41a3596272660a2e10d8&v=4", - "login": "RIYA1001", - "url": "https://github.com/RIYA1001", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2498", - "https://github.com/ayush-that/FinVeda/pull/2422", - "https://github.com/ayush-that/FinVeda/pull/2386", - "https://github.com/ayush-that/FinVeda/pull/2212" - ], - "pr_dates": ["2024-10-27", "2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170423008?u=b0ce32461e5bc1721cb2728a9d21eee3815f1f79&v=4", - "login": "Charul00", - "url": "https://github.com/Charul00", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/33", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/37", - "https://github.com/UTSAVS26/PyVerse/pull/334", - "https://github.com/UTSAVS26/PyVerse/pull/224", - "https://github.com/UTSAVS26/PyVerse/pull/190", - "https://github.com/UTSAVS26/PyVerse/pull/188" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-06", - "2024-10-07", - "2024-10-08" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121601369?u=b8422afa2791b2ddd5adafc7ce710246f444e9ca&v=4", - "login": "RishiVT2004", - "url": "https://github.com/RishiVT2004", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/244", - "https://github.com/Harshdev098/Research-Nexas/pull/102", - "https://github.com/Harshdev098/Research-Nexas/pull/43", - "https://github.com/Harshdev098/Research-Nexas/pull/27" - ], - "pr_dates": ["2024-10-04", "2024-10-06", "2024-10-12", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151637838?u=0eb6666283d4f4c1169b1ba1b1f2eeabcaa70b88&v=4", - "login": "akashlogics", - "url": "https://github.com/akashlogics", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/456", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/286", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/248", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/202", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/195", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/186", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/185", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/151" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135858837?u=91231986c14e3e73faad0d0a040efa25dc7dc2b2&v=4", - "login": "Somnath-Chattaraj", - "url": "https://github.com/Somnath-Chattaraj", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/172", - "https://github.com/Luson045/medi-connect/pull/96", - "https://github.com/Luson045/medi-connect/pull/77", - "https://github.com/Luson045/medi-connect/pull/69" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160092930?u=f89c2ca4c85d48ed4aa01a0d5159e0c8ece298fa&v=4", - "login": "SunkaraboinaPraveenKumar", - "url": "https://github.com/SunkaraboinaPraveenKumar", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/492", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/198", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/159", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/152", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/41" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-09", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124194806?u=192c7f5ae49f75d5601e797d8ae2cc913366391e&v=4", - "login": "vaibhav-yerkar", - "url": "https://github.com/vaibhav-yerkar", - "score": 125, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/690", - "https://github.com/PriyaGhosal/BuddyTrail/pull/460", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/348", - "https://github.com/UTSAVS26/PySnippets/pull/182", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/63", - "https://github.com/apu52/Travel_Website/pull/1525", - "https://github.com/apu52/METAVERSE/pull/1292", - "https://github.com/UTSAVS26/PyVerse/pull/781" - ], - "pr_dates": [ - "2024-10-10", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-17", - "2024-10-19", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131730298?u=8218087389b6d34b5ad72d56c75dd9b037c2ecc6&v=4", - "login": "Varchasavkr", - "url": "https://github.com/Varchasavkr", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/126", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/119", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/205", - "https://github.com/iamrahulmahato/master-web-development/pull/806", - "https://github.com/samyakmaitre/eventmint/pull/123" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-09"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160294709?u=0bfb96c16e3536a40a08fec503a3a70785fd3b00&v=4", - "login": "AskitEndo", - "url": "https://github.com/AskitEndo", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/126", - "https://github.com/jinx-vi-0/passop/pull/73", - "https://github.com/jinx-vi-0/passop/pull/63", - "https://github.com/jinx-vi-0/passop/pull/41", - "https://github.com/jinx-vi-0/passop/pull/5", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/73" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-23" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178009894?u=4837c1829560da3ce65d0626291d08f5e16f6d35&v=4", - "login": "chikatlarakesh", - "url": "https://github.com/chikatlarakesh", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/35", - "https://github.com/ankit071105/Ticket-Booking/pull/34", - "https://github.com/ankit071105/Ticket-Booking/pull/32", - "https://github.com/ankit071105/Ticket-Booking/pull/30", - "https://github.com/BhattAnsh/Quiz-Quest/pull/24", - "https://github.com/kom-senapati/bot-verse/pull/12", - "https://github.com/MitulSonagara/truth-tunnel/pull/15", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/324", - "https://github.com/Scribbie-Notes/notes-app/pull/89" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162621258?v=4", - "login": "Kavish-Paraswar", - "url": "https://github.com/Kavish-Paraswar", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/939", - "https://github.com/ayush-that/FinVeda/pull/1374", - "https://github.com/Anjaliavv51/Retro/pull/343", - "https://github.com/PriyaGhosal/BuddyTrail/pull/222", - "https://github.com/iamrahulmahato/master-web-development/pull/1959", - "https://github.com/iamrahulmahato/master-web-development/pull/1471", - "https://github.com/tushargupta1504/Medical-Website/pull/270" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-16", - "2024-10-19", - "2024-10-25", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180996531?v=4", - "login": "vaishnavipal1869", - "url": "https://github.com/vaishnavipal1869", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/831", - "https://github.com/ayush-that/FinVeda/pull/1604", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/683", - "https://github.com/iamrahulmahato/master-web-development/pull/1631", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/388", - "https://github.com/recodehive/Scrape-ML/pull/275", - "https://github.com/Shubham-Zone/Citizen_Squad/pull/22", - "https://github.com/Trisha-tech/OnlineBookSales/pull/592", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/89" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-11", - "2024-10-19", - "2024-10-21", - "2024-10-22", - "2024-10-23", - "2024-10-30" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142332924?u=5ee757281e1d6a6cb128dfad6cd00320abc9c6fc&v=4", - "login": "tanish35", - "url": "https://github.com/tanish35", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/136", - "https://github.com/Luson045/medi-connect/pull/84", - "https://github.com/Luson045/medi-connect/pull/63", - "https://github.com/Scribbie-Notes/notes-app/pull/90" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114800605?u=98a9ed73bdde260e4980df5ebbe5a87f25615a03&v=4", - "login": "iamendless10", - "url": "https://github.com/iamendless10", - "score": 120, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/104", - "https://github.com/TherkuTech/tturl/pull/130", - "https://github.com/TherkuTech/tturl/pull/80", - "https://github.com/Vin205/Enyanjyoti/pull/97" - ], - "pr_dates": ["2024-10-06", "2024-10-09", "2024-10-14", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108830923?u=7e7351608f081c741069238ca0e4156764c873dc&v=4", - "login": "bhavya2021245", - "url": "https://github.com/bhavya2021245", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/143", - "https://github.com/c0sm0void/ReVot/pull/70", - "https://github.com/multiverseweb/Dataverse/pull/111" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121182042?u=8bc5ef4624980f9e005a61fc8f7a9052bc72a30a&v=4", - "login": "AmanKumar1115", - "url": "https://github.com/AmanKumar1115", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/110", - "https://github.com/arjunatapadkar/codeteria/pull/150", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/75", - "https://github.com/Open-Code-Crafters/FitFlex/pull/146", - "https://github.com/AlgoGenesis/C/pull/283", - "https://github.com/AlgoGenesis/C/pull/105", - "https://github.com/SaranshBangar/Daneizo/pull/65" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-07", - "2024-10-10", - "2024-10-11", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140889204?u=02f821335cb6096f4576f8e1b65208359e993fa8&v=4", - "login": "Himanshi-m", - "url": "https://github.com/Himanshi-m", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/186", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/19", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/138", - "https://github.com/cro2003/rgpvApi/pull/5", - "https://github.com/UTSAVS26/PyVerse/pull/117" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-05", - "2024-10-06", - "2024-10-07" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126067639?u=057caf68000be99a962a8c7c15f9d113a2a42f60&v=4", - "login": "ananyakaligal", - "url": "https://github.com/ananyakaligal", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/71", - "https://github.com/iamrahulmahato/master-web-development/pull/111", - "https://github.com/recodehive/machine-learning-repos/pull/1230", - "https://github.com/TenzDelek/DearDiary/pull/22", - "https://github.com/UTSAVS26/PyVerse/pull/316" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-05", - "2024-10-08" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115390390?u=7766ac03b31c8c6ad41597dd6e2633acb89f4f62&v=4", - "login": "anishka25", - "url": "https://github.com/anishka25", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/484", - "https://github.com/cro2003/rgpvApi/pull/37", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/212", - "https://github.com/himeshparashar/Social-Morph/pull/162", - "https://github.com/rahulsainlll/git-trace/pull/89", - "https://github.com/VigneshDevHub/CampX/pull/230", - "https://github.com/visheshrwl/Uber-like/pull/33" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-14", - "2024-10-15", - "2024-10-19", - "2024-10-20", - "2024-10-22", - "2024-10-23" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118930408?v=4", - "login": "shreya2k3", - "url": "https://github.com/shreya2k3", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1546", - "https://github.com/ANSHIKA-26/WordWise/pull/1461", - "https://github.com/ANSHIKA-26/WordWise/pull/1368", - "https://github.com/anuragverma108/SwapReads/pull/4088", - "https://github.com/anuragverma108/SwapReads/pull/4069", - "https://github.com/anuragverma108/SwapReads/pull/4042", - "https://github.com/mdazfar2/Ezyshop/pull/1030", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/941", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1721", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1489" - ], - "pr_dates": [ - "2024-10-24", - "2024-10-25", - "2024-10-26", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 6 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149402720?v=4", - "login": "Ashwinib26", - "url": "https://github.com/Ashwinib26", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/251", - "https://github.com/Luson045/medi-connect/pull/554", - "https://github.com/Megh2005/Med-o-Next/pull/102", - "https://github.com/param-code/counter-app/pull/277", - "https://github.com/param-code/counter-app/pull/72", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/228", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/215" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-11", - "2024-10-16", - "2024-10-22", - "2024-10-25", - "2024-10-26" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151816474?u=8fd0751397b3c9d3c220fd12d6611f45d661f0b4&v=4", - "login": "Ayan-Khan79", - "url": "https://github.com/Ayan-Khan79", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/229", - "https://github.com/dohinaf/basic-icecream-website/pull/372", - "https://github.com/iamrahulmahato/master-web-development/pull/1521", - "https://github.com/Trisha-tech/OnlineBookSales/pull/337", - "https://github.com/Vin205/Enyanjyoti/pull/210" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-09", - "2024-10-11", - "2024-10-18", - "2024-10-20" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131153761?u=1651c54be818c859c5017d49d6e0a90a96ab55da&v=4", - "login": "anuj123upadhyay", - "url": "https://github.com/anuj123upadhyay", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/221", - "https://github.com/anuj123upadhyay/MegaBlog/pull/219", - "https://github.com/anuj123upadhyay/MegaBlog/pull/89" - ], - "pr_dates": ["2024-10-09", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127125820?v=4", - "login": "clownfish1805", - "url": "https://github.com/clownfish1805", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/29", - "https://github.com/mdazfar2/Ezyshop/pull/93", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/172", - "https://github.com/Luson045/medi-connect/pull/88", - "https://github.com/iamrahulmahato/master-web-development/pull/342", - "https://github.com/iamrahulmahato/master-web-development/pull/268" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147538307?u=98d6d416fcc9b1287dced4133daf075a3589097c&v=4", - "login": "rithvikreddybasani", - "url": "https://github.com/rithvikreddybasani", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/174", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/280", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/168" - ], - "pr_dates": ["2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148051550?v=4", - "login": "Shirisha-16", - "url": "https://github.com/Shirisha-16", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/204", - "https://github.com/himeshparashar/Social-Morph/pull/84", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/233", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/47", - "https://github.com/soham0005/ElectroKart/pull/116" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-13" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114746924?u=554db6848766f9d430e0d8c38d0f4417c9725a7c&v=4", - "login": "Hustler004", - "url": "https://github.com/Hustler004", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/288", - "https://github.com/Luson045/medi-connect/pull/340", - "https://github.com/multiverseweb/CodeIt/pull/57" - ], - "pr_dates": ["2024-10-04", "2024-10-08", "2024-10-09"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122370376?u=9cd1eac37563634c78c7f2bc58aafc4eb5dc4221&v=4", - "login": "RaiDevX8", - "url": "https://github.com/RaiDevX8", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/GAME_PLAYER/pull/108", - "https://github.com/kartikayasijaa/talk-trove/pull/30", - "https://github.com/subhadipbhowmik/bio-branch/pull/114", - "https://github.com/multiverseweb/CodeIt/pull/155", - "https://github.com/Trisha-tech/OnlineBookSales/pull/308" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-09", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119130841?u=1d4003a4a3de551dc513c729f5c50dec4843f2da&v=4", - "login": "rakheshkrishna2005", - "url": "https://github.com/rakheshkrishna2005", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/698", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/600", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/459", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/454", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/444", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/408", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/704" - ], - "pr_dates": [ - "2024-10-16", - "2024-10-17", - "2024-10-18", - "2024-10-19", - "2024-10-27", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149070208?v=4", - "login": "NikhilJ2005", - "url": "https://github.com/NikhilJ2005", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kota-Karthik/twinTrim/pull/48", - "https://github.com/multiverseweb/CodeIt/pull/203", - "https://github.com/multiverseweb/CodeIt/pull/110" - ], - "pr_dates": ["2024-10-02", "2024-10-08", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118815246?u=fc8e3978ffbf8b505f45df5b44866e5f4817c9f6&v=4", - "login": "deca109", - "url": "https://github.com/deca109", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/486", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/292", - "https://github.com/yashasvini121/predictive-calc/pull/55" - ], - "pr_dates": ["2024-10-05", "2024-10-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153104132?u=0555e59b7c5a06fa3484bf14788206fe8bd47695&v=4", - "login": "Manish5043", - "url": "https://github.com/Manish5043", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/807", - "https://github.com/AlgoGenesis/C/pull/651", - "https://github.com/AlgoGenesis/C/pull/589", - "https://github.com/AlgoGenesis/C/pull/397", - "https://github.com/iamrahulmahato/master-web-development/pull/918", - "https://github.com/iamrahulmahato/master-web-development/pull/688", - "https://github.com/iamrahulmahato/master-web-development/pull/611" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153702980?u=3b114e5ce5b3a08af67fe86a09a23e23a63615d7&v=4", - "login": "tohit09Fst", - "url": "https://github.com/tohit09Fst", - "score": 115, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/shivamyadavrgipt/Social_media_management/pull/166", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/158", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/100" - ], - "pr_dates": ["2024-10-14", "2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146416700?u=aa188f10c9a81ae61c47097f8f91d6e58bceb427&v=4", - "login": "Vatsal-Verma", - "url": "https://github.com/Vatsal-Verma", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/151", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/76", - "https://github.com/dohinaf/basic-icecream-website/pull/185", - "https://github.com/iamrahulmahato/master-web-development/pull/567", - "https://github.com/iamrahulmahato/master-web-development/pull/512", - "https://github.com/iamrahulmahato/master-web-development/pull/151", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/318", - "https://github.com/Vimall03/Alimento/pull/31" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-11" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/42698980?u=fcea299ce49d7962a147721ebb0004c2abedbafd&v=4", - "login": "rimmon1234", - "url": "https://github.com/rimmon1234", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/79", - "https://github.com/ankit071105/Ticket-Booking/pull/434", - "https://github.com/ANSHIKA-26/WordWise/pull/1329", - "https://github.com/iamrahulmahato/master-web-development/pull/185", - "https://github.com/tushargupta1504/Medical-Website/pull/100" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-18", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142158409?u=13bd78ed3b2e53b99dea93d2a918801aae4ad64a&v=4", - "login": "itsbhh", - "url": "https://github.com/itsbhh", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/40", - "https://github.com/dhairyagothi/StationGuide/pull/56", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/96", - "https://github.com/mansiruhil13/Bobble-AI/pull/108", - "https://github.com/recodehive/awesome-github-profiles/pull/562", - "https://github.com/multiverseweb/CodeIt/pull/24", - "https://github.com/multiverseweb/CodeIt/pull/17", - "https://github.com/Trisha-tech/OnlineBookSales/pull/292" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03", "2024-10-04"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103318017?u=8981e0c51e836af07afae6ff345662e4d3bdc0f9&v=4", - "login": "ShradhaSaxena23", - "url": "https://github.com/ShradhaSaxena23", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3446", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/312", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/211", - "https://github.com/PriyaGhosal/BuddyTrail/pull/452", - "https://github.com/07sumit1002/CabRental/pull/172" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87238338?u=b50e1bb8227298f6b143512fb7ed797222d89091&v=4", - "login": "Prakhar29Sharma", - "url": "https://github.com/Prakhar29Sharma", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/21", - "https://github.com/Kota-Karthik/twinTrim/pull/47", - "https://github.com/ombhojane/explainableai/pull/80", - "https://github.com/Scribbie-Notes/notes-app/pull/43" - ], - "pr_dates": ["2024-10-02", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100796890?u=522e367749a8256a1de1edf67c2c72b30a43677d&v=4", - "login": "amankumarcu", - "url": "https://github.com/amankumarcu", - "score": 110, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/148", - "https://github.com/Anjaliavv51/Retro/pull/141", - "https://github.com/Anjaliavv51/Retro/pull/70", - "https://github.com/Anjaliavv51/Retro/pull/17" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123728188?u=772bdcd55957f1b72508edbbded1d6c2e57905cf&v=4", - "login": "Dsmita03", - "url": "https://github.com/Dsmita03", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/430", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/138", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/118", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/40", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/36", - "https://github.com/samyakmaitre/eventmint/pull/96" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-08", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178026966?v=4", - "login": "Bhumika-00", - "url": "https://github.com/Bhumika-00", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/718", - "https://github.com/ajay-dhangar/algo/pull/559", - "https://github.com/ajay-dhangar/algo/pull/356", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/287", - "https://github.com/TherkuTech/tturl/pull/74", - "https://github.com/AlgoGenesis/C/pull/581", - "https://github.com/AlgoGenesis/C/pull/399", - "https://github.com/vansh-codes/ChaosWeb/pull/129", - "https://github.com/vansh-codes/ChaosWeb/pull/110" - ], - "pr_dates": ["2024-10-09", "2024-10-12", "2024-10-14", "2024-10-15"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/58704284?u=49e5a871ae552baba78be5a1a102499759cdd4c2&v=4", - "login": "RchtDshr", - "url": "https://github.com/RchtDshr", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/306", - "https://github.com/ajay-dhangar/algo/pull/182", - "https://github.com/divyansh-2005/my-calendar-app/pull/49", - "https://github.com/divyansh-2005/my-calendar-app/pull/32", - "https://github.com/param-code/counter-app/pull/105", - "https://github.com/TejasNasre/nexmeet/pull/55" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-07", - "2024-10-08", - "2024-10-11" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116509919?u=b722745c0a3a9a68252f62ac44005e10452aa5f6&v=4", - "login": "HeartTick", - "url": "https://github.com/HeartTick", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/179", - "https://github.com/dohinaf/basic-icecream-website/pull/481", - "https://github.com/dohinaf/basic-icecream-website/pull/419", - "https://github.com/dohinaf/basic-icecream-website/pull/410", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/111", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/109" - ], - "pr_dates": ["2024-10-02", "2024-10-08", "2024-10-10", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169032900?u=eb8e716ea68b58dc29dd2ab7fe3bc1f2a2669cce&v=4", - "login": "sushil-sagar05", - "url": "https://github.com/sushil-sagar05", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/307", - "https://github.com/dhairyagothi/StationGuide/pull/348", - "https://github.com/Bitbox-Connect/Bitbox/pull/165", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/119" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132298893?u=953fbddfed8fc9b53892ae0fdcda88b047c59e3d&v=4", - "login": "Dipeshdahiya", - "url": "https://github.com/Dipeshdahiya", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/747", - "https://github.com/ankit071105/Ticket-Booking/pull/687", - "https://github.com/ankit071105/Ticket-Booking/pull/603", - "https://github.com/ANSHIKA-26/WordWise/pull/1505", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/507", - "https://github.com/multiverseweb/CodeIt/pull/269" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-24", - "2024-10-26", - "2024-10-28", - "2024-10-29" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150997006?u=0409134c7a5c65e6164b29d77bf2a2b2ed595f68&v=4", - "login": "HemantBatra873", - "url": "https://github.com/HemantBatra873", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3680", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/764", - "https://github.com/himeshparashar/Social-Morph/pull/109", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1096", - "https://github.com/Ratnesh-Team/Rehabify/pull/115", - "https://github.com/4darsh-Dev/DecenTrade/pull/111" - ], - "pr_dates": ["2024-10-17", "2024-10-18", "2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86947319?u=f7d33bdb0909bc1cc1af44973e982478fad2f4d0&v=4", - "login": "Prathameshzad", - "url": "https://github.com/Prathameshzad", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3527", - "https://github.com/PriyaGhosal/BuddyTrail/pull/739", - "https://github.com/PriyaGhosal/BuddyTrail/pull/643", - "https://github.com/SurajPratap10/Imagine_AI/pull/1249" - ], - "pr_dates": ["2024-10-14", "2024-10-15", "2024-10-16"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78712372?u=afafef1e7af165d000f3024ef6e74abc4f636abd&v=4", - "login": "Hamza20203064", - "url": "https://github.com/Hamza20203064", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/19", - "https://github.com/mdazfar2/Ezyshop/pull/143", - "https://github.com/mdazfar2/Ezyshop/pull/126", - "https://github.com/apu52/METAVERSE/pull/1275", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1090" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147738039?u=187140e694acce1b91bb050d0adcdee3e5e07bfa&v=4", - "login": "BhavyaFattania", - "url": "https://github.com/BhavyaFattania", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/297", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/227", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/46", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/656", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/655", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/652", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/400", - "https://github.com/UTSAVS26/PyVerse/pull/935" - ], - "pr_dates": ["2024-10-03", "2024-10-17", "2024-10-18", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120671925?u=e482f66f53e0f6e4632e3dcbe9d5459cb84b9cb1&v=4", - "login": "MonilMehta", - "url": "https://github.com/MonilMehta", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1614", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/88", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1013", - "https://github.com/subhadipbhowmik/bio-branch/pull/240" - ], - "pr_dates": ["2024-10-17", "2024-10-18", "2024-10-19"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117531823?u=e9e561e48ab99ba5c9977f84177f2497ed716bb1&v=4", - "login": "hritika2409", - "url": "https://github.com/hritika2409", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/42", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/157", - "https://github.com/iamrahulmahato/master-web-development/pull/242", - "https://github.com/swarooppatilx/scruter/pull/29", - "https://github.com/Vin205/Enyanjyoti/pull/309", - "https://github.com/Vin205/Enyanjyoti/pull/189" - ], - "pr_dates": ["2024-10-03", "2024-10-10", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142303159?u=1e0dda77e6270efeecdda86773bca19e09edcbf7&v=4", - "login": "SRV30", - "url": "https://github.com/SRV30", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/886", - "https://github.com/Bitbox-Connect/Bitbox/pull/161", - "https://github.com/Open-Code-Crafters/FitFlex/pull/342", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/334" - ], - "pr_dates": ["2024-10-15", "2024-10-18", "2024-10-24", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169554801?v=4", - "login": "ParulPrashar", - "url": "https://github.com/ParulPrashar", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/589", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/118", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/78", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/198" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88032773?v=4", - "login": "lavitratyagi1", - "url": "https://github.com/lavitratyagi1", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/72", - "https://github.com/prajapatihet/donorconnect/pull/69", - "https://github.com/yagnik2411/Quiz-Genius/pull/37", - "https://github.com/yagnik2411/Quiz-Genius/pull/31" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-14", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102850256?u=83001c46786b1a160b18beb44399fac7fd836f89&v=4", - "login": "ezsarthak", - "url": "https://github.com/ezsarthak", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/64", - "https://github.com/prajapatihet/donorconnect/pull/63", - "https://github.com/yagnik2411/Quiz-Genius/pull/94", - "https://github.com/yagnik2411/Quiz-Genius/pull/35" - ], - "pr_dates": ["2024-10-04", "2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100017640?u=4f72566f2759a957b4dc7c89fc626ee3266c971f&v=4", - "login": "Veda273", - "url": "https://github.com/Veda273", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/154", - "https://github.com/soham0005/ElectroKart/pull/239", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1131", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1122" - ], - "pr_dates": ["2024-10-08", "2024-10-10", "2024-10-13", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134724715?u=7a5c24b8ae220a88e343d73660778140362801c9&v=4", - "login": "MimanshaKaur", - "url": "https://github.com/MimanshaKaur", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/265", - "https://github.com/vansh-codes/ChaosWeb/pull/123", - "https://github.com/vansh-codes/ChaosWeb/pull/107", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/982" - ], - "pr_dates": ["2024-10-13", "2024-10-15", "2024-10-23", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126884590?u=5b722a5c50b51c71bb0daa8cf7ae23cfb61ff3d2&v=4", - "login": "Prabhav444", - "url": "https://github.com/Prabhav444", - "score": 105, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/visheshrwl/Uber-like/pull/79", - "https://github.com/visheshrwl/Uber-like/pull/73", - "https://github.com/visheshrwl/Uber-like/pull/60", - "https://github.com/visheshrwl/Uber-like/pull/57" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162907041?u=bf68600824d3fb0d01a78b73a8ad044f46c4e3ef&v=4", - "login": "TornovDutta", - "url": "https://github.com/TornovDutta", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/100", - "https://github.com/yatulearn/yatulearn/pull/60", - "https://github.com/ANSHIKA-26/WordWise/pull/556", - "https://github.com/Code-Social/official-website/pull/174", - "https://github.com/GarimaSingh0109/WasteManagment/pull/8", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/92", - "https://github.com/subhadipbhowmik/bio-branch/pull/49" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-03", - "2024-10-05", - "2024-10-06", - "2024-10-08", - "2024-10-12", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144778242?v=4", - "login": "Someshog", - "url": "https://github.com/Someshog", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/856", - "https://github.com/anuragverma108/SwapReads/pull/3089", - "https://github.com/Aryainguz/picwise.co/pull/30", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/198", - "https://github.com/GVishnudhasan/NoDueProject/pull/58", - "https://github.com/Scribbie-Notes/notes-app/pull/166", - "https://github.com/Yashgabani845/hiring-portal/pull/92" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-11", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126045993?u=282442ecf3b202aa89b5084f413cc89a8e8797e2&v=4", - "login": "Vishv0407", - "url": "https://github.com/Vishv0407", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/75", - "https://github.com/VesperAkshay/qr-code-generator/pull/71", - "https://github.com/VesperAkshay/qr-code-generator/pull/69", - "https://github.com/VesperAkshay/qr-code-generator/pull/34", - "https://github.com/BamaCharanChhandogi/GitFinder/pull/33", - "https://github.com/Megh2005/Med-o-Next/pull/20" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161187690?u=324cdc7e278b46af127a29df84875805fdc1aed8&v=4", - "login": "Pranjalsinha110", - "url": "https://github.com/Pranjalsinha110", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3348", - "https://github.com/anuragverma108/SwapReads/pull/3270", - "https://github.com/anuragverma108/SwapReads/pull/3234", - "https://github.com/anuragverma108/SwapReads/pull/3224", - "https://github.com/anuragverma108/SwapReads/pull/3194", - "https://github.com/ayush-that/FinVeda/pull/1083", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/234" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-11", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108320925?u=bbe76bebb3e98696d0c654bffa9e403094efebe6&v=4", - "login": "amanreddy77", - "url": "https://github.com/amanreddy77", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/183", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1294", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1239", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1063", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1002", - "https://github.com/PriyaGhosal/BuddyTrail/pull/958", - "https://github.com/Trisha-tech/OnlineBookSales/pull/553" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125395803?u=2de1cdfca8e395a0cee8b0d62986feba6fe55afb&v=4", - "login": "MohdAftab011", - "url": "https://github.com/MohdAftab011", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/160", - "https://github.com/Code-Social/official-website/pull/158", - "https://github.com/Code-Social/official-website/pull/64", - "https://github.com/samyakmaitre/eventmint/pull/109" - ], - "pr_dates": ["2024-10-05", "2024-10-07", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176527424?v=4", - "login": "Aasthajiit", - "url": "https://github.com/Aasthajiit", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/338", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/313", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/311", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/309" - ], - "pr_dates": ["2024-10-17", "2024-10-18"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180988989?u=b039f705de1c4c6e8d7c03afa5854d2e3a6f2570&v=4", - "login": "Aryan-9488", - "url": "https://github.com/Aryan-9488", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/332", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/322", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/260", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/173" - ], - "pr_dates": ["2024-10-12", "2024-10-15", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144151782?u=2e72cafad8de1443bb8fbe006b3c6aec7a8961d7&v=4", - "login": "PraveenUppar", - "url": "https://github.com/PraveenUppar", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/300", - "https://github.com/dhairyagothi/StationGuide/pull/294", - "https://github.com/dhairyagothi/StationGuide/pull/292", - "https://github.com/dhairyagothi/StationGuide/pull/154", - "https://github.com/dhairyagothi/StationGuide/pull/111", - "https://github.com/dhairyagothi/StationGuide/pull/71", - "https://github.com/Scribbie-Notes/notes-app/pull/88" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-09", - "2024-10-18" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94521611?u=d291677823d333dfe7aee6144c9b1295a1f8f862&v=4", - "login": "Raja-Abrar-Khan", - "url": "https://github.com/Raja-Abrar-Khan", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/255", - "https://github.com/dhairyagothi/StationGuide/pull/240", - "https://github.com/dhairyagothi/StationGuide/pull/220", - "https://github.com/dhairyagothi/StationGuide/pull/147", - "https://github.com/dhairyagothi/StationGuide/pull/122" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-08", - "2024-10-12", - "2024-10-13", - "2024-10-14" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123757155?u=6c3268bfc403f54a25d4a7907c1b056c2dc7e0a3&v=4", - "login": "grasyPatel", - "url": "https://github.com/grasyPatel", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/560", - "https://github.com/dohinaf/basic-icecream-website/pull/358", - "https://github.com/Anjaliavv51/Retro/pull/105", - "https://github.com/iamrahulmahato/master-web-development/pull/1022", - "https://github.com/iamrahulmahato/master-web-development/pull/758", - "https://github.com/recodehive/awesome-github-profiles/pull/569", - "https://github.com/Yashgabani845/hiring-portal/pull/11" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-07", - "2024-10-08", - "2024-10-11", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93245252?u=2b52aedca8c1377c081d3a01f871e5cfa92d1cd3&v=4", - "login": "Sumanbhadra", - "url": "https://github.com/Sumanbhadra", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/215", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/533", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/380", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/353", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/337" - ], - "pr_dates": ["2024-10-05", "2024-10-17", "2024-10-19", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152759878?u=3ee04c3d574b8fa2ce9e1cd1cb0a36beb7a5b525&v=4", - "login": "Ganeshmoorthii", - "url": "https://github.com/Ganeshmoorthii", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/254", - "https://github.com/Manishkr1007/WordWeaver/pull/103", - "https://github.com/andoriyaprashant/DevDocsHub/pull/128", - "https://github.com/Trisha-tech/OnlineBookSales/pull/567", - "https://github.com/Scribbie-Notes/notes-app/pull/253" - ], - "pr_dates": ["2024-10-20", "2024-10-21", "2024-10-22"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139568635?v=4", - "login": "pranavvb03", - "url": "https://github.com/pranavvb03", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/608", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/542", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/393", - "https://github.com/recodehive/machine-learning-repos/pull/1298" - ], - "pr_dates": ["2024-10-08", "2024-10-16", "2024-10-23", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153413186?u=24539e7511c5e407dcd022ee8c7ccbe4a58f45a8&v=4", - "login": "Sai-ganesh-0004", - "url": "https://github.com/Sai-ganesh-0004", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/472", - "https://github.com/Kota-Karthik/twinTrim/pull/160", - "https://github.com/Kota-Karthik/twinTrim/pull/106", - "https://github.com/tanishaness/SPROCTOR/pull/31", - "https://github.com/UTSAVS26/PyVerse/pull/511" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-11", - "2024-10-12", - "2024-10-19", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123563252?u=18a9b6ea36eb1fefcacdf968512ce05fd922c86e&v=4", - "login": "Sureshwebdeveloper", - "url": "https://github.com/Sureshwebdeveloper", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MinavKaria/Ratna-Supermarket/pull/130", - "https://github.com/SanchitGeez/Investra/pull/39", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/21", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/13" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162735839?u=8714191363c7a896aaad9cff5cf35e265f2f98c4&v=4", - "login": "pc-daukiya", - "url": "https://github.com/pc-daukiya", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1381", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1375", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1327", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1272" - ], - "pr_dates": ["2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131871888?u=41bbed29efd0178bd51a7f0fcb51b0d034a35ce4&v=4", - "login": "multiverseweb", - "url": "https://github.com/multiverseweb", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/246", - "https://github.com/multiverseweb/Dataverse/pull/157", - "https://github.com/multiverseweb/Dataverse/pull/63", - "https://github.com/multiverseweb/CodeIt/pull/245", - "https://github.com/multiverseweb/CodeIt/pull/216", - "https://github.com/multiverseweb/CodeIt/pull/34", - "https://github.com/multiverseweb/CodeIt/pull/19" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-06", - "2024-10-16", - "2024-10-22", - "2024-10-26", - "2024-10-27" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112002059?u=6671fed817c1c2c2d8601627ad1eb4ed96f8bac0&v=4", - "login": "AdarshThakare", - "url": "https://github.com/AdarshThakare", - "score": 100, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vishwajith-Shettigar/NextGen/pull/102", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/99", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/96", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/90" - ], - "pr_dates": ["2024-10-11", "2024-10-13", "2024-10-14", "2024-10-15"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128689265?u=f8b43114f124835dcceeee916c5a202eda969758&v=4", - "login": "aryadevesh", - "url": "https://github.com/aryadevesh", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/29", - "https://github.com/jahnvisahni31/DesignDeck/pull/27", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/232", - "https://github.com/MitulSonagara/truth-tunnel/pull/188", - "https://github.com/MitulSonagara/truth-tunnel/pull/120" - ], - "pr_dates": ["2024-10-04", "2024-10-09", "2024-10-16", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168196754?u=ab219fa8c64974bbfd3bde0b86a30a6c01e9c6cc&v=4", - "login": "Kevindua26", - "url": "https://github.com/Kevindua26", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/934", - "https://github.com/anuragverma108/SwapReads/pull/3748", - "https://github.com/ayush-that/FinVeda/pull/1680", - "https://github.com/dohinaf/basic-icecream-website/pull/378", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/193" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-19", - "2024-10-20", - "2024-10-21" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178645958?v=4", - "login": "Codersweta7", - "url": "https://github.com/Codersweta7", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/706", - "https://github.com/ANSHIKA-26/WordWise/pull/1425", - "https://github.com/multiverseweb/CodeIt/pull/230" - ], - "pr_dates": ["2024-10-15", "2024-10-23", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181909739?u=e7811e54aed9a8c3b463f4cb5731d1f64234af74&v=4", - "login": "RahulScripted", - "url": "https://github.com/RahulScripted", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/807", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/409", - "https://github.com/PriyaGhosal/BuddyTrail/pull/484", - "https://github.com/PriyaGhosal/BuddyTrail/pull/450", - "https://github.com/PriyaGhosal/BuddyTrail/pull/110", - "https://github.com/iamrahulmahato/master-web-development/pull/1350", - "https://github.com/iamrahulmahato/master-web-development/pull/1305", - "https://github.com/iamrahulmahato/master-web-development/pull/1213" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-14", - "2024-10-16", - "2024-10-17" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121346142?v=4", - "login": "jayanththalla", - "url": "https://github.com/jayanththalla", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/359", - "https://github.com/ankit071105/Ticket-Booking/pull/7", - "https://github.com/anuragverma108/SwapReads/pull/3560", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/92", - "https://github.com/MitulSonagara/truth-tunnel/pull/4", - "https://github.com/TherkuTech/tturl/pull/9", - "https://github.com/SaranshBangar/Daneizo/pull/16", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/118" - ], - "pr_dates": [ - "2024-10-01", - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-09", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/51474998?u=11e4adf531418421bbf5fdb8157397524219834f&v=4", - "login": "punishermortal", - "url": "https://github.com/punishermortal", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/99", - "https://github.com/andoriyaprashant/DevDocsHub/pull/93", - "https://github.com/andoriyaprashant/DevDocsHub/pull/91", - "https://github.com/andoriyaprashant/DevDocsHub/pull/86", - "https://github.com/andoriyaprashant/DevDocsHub/pull/77" - ], - "pr_dates": ["2024-10-06", "2024-10-09", "2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126982848?u=a45115b45669a1d6cab00837059dc57d42a30004&v=4", - "login": "AdityaP700", - "url": "https://github.com/AdityaP700", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/91", - "https://github.com/codeaashu/DevDisplay/pull/266", - "https://github.com/Avdhesh-Varshney/chanakya-niti/pull/327" - ], - "pr_dates": ["2024-10-05", "2024-10-14", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182007051?u=488aa41d4402ee85fc5c90772197d5f035443dbc&v=4", - "login": "Yash-Vashishth", - "url": "https://github.com/Yash-Vashishth", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/178", - "https://github.com/dhairyagothi/StationGuide/pull/229", - "https://github.com/kom-senapati/bot-verse/pull/72", - "https://github.com/tanishaness/SPROCTOR/pull/21", - "https://github.com/Vin205/Enyanjyoti/pull/206" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-08", - "2024-10-10", - "2024-10-11", - "2024-10-13" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181911676?v=4", - "login": "Mahima-2404", - "url": "https://github.com/Mahima-2404", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/507", - "https://github.com/tushargupta1504/Medical-Website/pull/266", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/405" - ], - "pr_dates": ["2024-10-07", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167804249?u=c1dfe52b94b9d4606735444f37ad053e60bd0057&v=4", - "login": "gurramkarthiknetha", - "url": "https://github.com/gurramkarthiknetha", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ramsey99/Admin_Dashboard/pull/61", - "https://github.com/Ramsey99/Admin_Dashboard/pull/50", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/348", - "https://github.com/Manishkr1007/WordWeaver/pull/63", - "https://github.com/param-code/counter-app/pull/161", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/328" - ], - "pr_dates": ["2024-10-10", "2024-10-11", "2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165387243?u=93b323367e63efc731aabaca99ad6217dc295988&v=4", - "login": "kekubhai", - "url": "https://github.com/kekubhai", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3597", - "https://github.com/jahnvisahni31/DesignDeck/pull/126", - "https://github.com/PriyaGhosal/BuddyTrail/pull/470", - "https://github.com/Rakshit-gen/Slanine/pull/62", - "https://github.com/Vin205/Enyanjyoti/pull/205" - ], - "pr_dates": ["2024-10-10", "2024-10-11", "2024-10-15", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134579503?v=4", - "login": "Ishika-Singhal", - "url": "https://github.com/Ishika-Singhal", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3483", - "https://github.com/vishanurag/Canvas-Editor/pull/549", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/372", - "https://github.com/PriyaGhosal/BuddyTrail/pull/749", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/449" - ], - "pr_dates": ["2024-10-11", "2024-10-14", "2024-10-15"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144918855?v=4", - "login": "ojhankit", - "url": "https://github.com/ojhankit", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/151", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/287", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/129", - "https://github.com/UTSAVS26/PyVerse/pull/547", - "https://github.com/UTSAVS26/PyVerse/pull/368", - "https://github.com/UTSAVS26/PyVerse/pull/206", - "https://github.com/UTSAVS26/PyVerse/pull/144", - "https://github.com/UTSAVS26/PyVerse/pull/82" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-06", - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-13" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143625163?v=4", - "login": "Sneha22072005", - "url": "https://github.com/Sneha22072005", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/34", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/234", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/178" - ], - "pr_dates": ["2024-10-01", "2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/44237858?v=4", - "login": "Nandini-13", - "url": "https://github.com/Nandini-13", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/15", - "https://github.com/iamrahulmahato/master-web-development/pull/395", - "https://github.com/iamrahulmahato/master-web-development/pull/122", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/16", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/12" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114216911?u=0c218fe2a2ad26349ce4f0f19b0616c0f018c15d&v=4", - "login": "saurabhsagar99", - "url": "https://github.com/saurabhsagar99", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/667", - "https://github.com/iamrahulmahato/master-web-development/pull/235", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/201" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/50855133?u=cc91fd4e13c71847792b53a1b8ed01353c21b57b&v=4", - "login": "A-Akhil", - "url": "https://github.com/A-Akhil", - "score": 95, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1504", - "https://github.com/recodehive/machine-learning-repos/pull/1503", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/400" - ], - "pr_dates": ["2024-10-15", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101548946?u=3d051f43cbc4496ed99fcdb8395605f0e3047248&v=4", - "login": "Itachii27", - "url": "https://github.com/Itachii27", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhisheks008/DL-Simplified/pull/896", - "https://github.com/aditya-bhaumik/Pathsphere/pull/159", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/7", - "https://github.com/Luson045/medi-connect/pull/56", - "https://github.com/SaranshBangar/Daneizo/pull/19", - "https://github.com/SaranshBangar/Daneizo/pull/15" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119566938?u=7fd348336334f91e1049149b81775e72c4790604&v=4", - "login": "2004vivek", - "url": "https://github.com/2004vivek", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1072", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/366", - "https://github.com/Bitbox-Connect/Bitbox/pull/238", - "https://github.com/Anjaliavv51/Retro/pull/304" - ], - "pr_dates": ["2024-10-07", "2024-10-11", "2024-10-24", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83207969?u=7208eedeb528d87b0a44647299b224cedfa6e18e&v=4", - "login": "tharagaramanbalaji", - "url": "https://github.com/tharagaramanbalaji", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1007", - "https://github.com/anuragverma108/SwapReads/pull/3739" - ], - "pr_dates": ["2024-10-19", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161409149?u=8c2143930a076d0bf5b9bd163e4fd82debc717ed&v=4", - "login": "RAJIV81205", - "url": "https://github.com/RAJIV81205", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/268", - "https://github.com/aditya-bhaumik/Pathsphere/pull/243", - "https://github.com/anuragverma108/SwapReads/pull/3087", - "https://github.com/anuragverma108/SwapReads/pull/3025" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118795997?u=c7ac17792cd71234894969d68ca57511eb072428&v=4", - "login": "ishita-1305", - "url": "https://github.com/ishita-1305", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/842", - "https://github.com/ankit071105/Ticket-Booking/pull/399", - "https://github.com/Harshdev098/Research-Nexas/pull/46", - "https://github.com/recodehive/awesome-github-profiles/pull/851", - "https://github.com/recodehive/awesome-github-profiles/pull/551", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/90" - ], - "pr_dates": ["2024-10-02", "2024-10-06", "2024-10-15", "2024-10-16"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138133004?u=58ed367f10cedb891943865af0e6aee5f3b8dc0e&v=4", - "login": "kRajoria121", - "url": "https://github.com/kRajoria121", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/783", - "https://github.com/ajay-dhangar/algo/pull/560", - "https://github.com/ajay-dhangar/algo/pull/391", - "https://github.com/ajay-dhangar/algo/pull/157", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/256", - "https://github.com/AlgoGenesis/C/pull/481" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-09", - "2024-10-10", - "2024-10-12", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158704971?u=a7f1dda3a693e256a163c3b101f9fd35392af15c&v=4", - "login": "bhaviya18", - "url": "https://github.com/bhaviya18", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/310", - "https://github.com/AlgoGenesis/C/pull/943", - "https://github.com/vansh-codes/ChaosWeb/pull/117", - "https://github.com/vansh-codes/ChaosWeb/pull/64" - ], - "pr_dates": ["2024-10-09", "2024-10-12", "2024-10-14", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146407913?u=6d21d610756b7088984fac4233ff53b0a7e4ece9&v=4", - "login": "raj-adi00", - "url": "https://github.com/raj-adi00", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/397", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/297", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/252", - "https://github.com/Soujanya2004/wanderlust-2024/pull/218" - ], - "pr_dates": ["2024-10-17", "2024-10-21", "2024-10-24", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170337612?v=4", - "login": "riddhij0804", - "url": "https://github.com/riddhij0804", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/262", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/507", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/326", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/315" - ], - "pr_dates": ["2024-10-08", "2024-10-12", "2024-10-18", "2024-10-19"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146541820?u=f7372ac045f40cef36b99c021f1653f3fd364e4f&v=4", - "login": "subhajitrath3", - "url": "https://github.com/subhajitrath3", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/602", - "https://github.com/ankit071105/Ticket-Booking/pull/91" - ], - "pr_dates": ["2024-10-03", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181768168?v=4", - "login": "shreya20v", - "url": "https://github.com/shreya20v", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/333", - "https://github.com/anuragverma108/SwapReads/pull/3335", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/228", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/629" - ], - "pr_dates": ["2024-10-06", "2024-10-12", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130484055?u=6823d5c78a522954cd78130635e2042cd32d3f89&v=4", - "login": "satyasootar", - "url": "https://github.com/satyasootar", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/190", - "https://github.com/ANSHIKA-26/WordWise/pull/428", - "https://github.com/ANSHIKA-26/WordWise/pull/323", - "https://github.com/Open-Code-Crafters/FitFlex/pull/103", - "https://github.com/SaranshBangar/Daneizo/pull/68", - "https://github.com/SaranshBangar/Daneizo/pull/45" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-07", - "2024-10-08", - "2024-10-11" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132751527?v=4", - "login": "nishtha-902", - "url": "https://github.com/nishtha-902", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/224", - "https://github.com/anuragverma108/SwapReads/pull/2960", - "https://github.com/arjunatapadkar/codeteria/pull/124", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/105", - "https://github.com/dohinaf/basic-icecream-website/pull/317", - "https://github.com/Anjaliavv51/Retro/pull/487", - "https://github.com/Anjaliavv51/Retro/pull/486", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/81", - "https://github.com/multiverseweb/CodeIt/pull/73" - ], - "pr_dates": [ - "2024-10-04", - "2024-10-05", - "2024-10-08", - "2024-10-11", - "2024-10-13" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122218982?u=db4623b2278a6d601970a28fc206f7ec450cc094&v=4", - "login": "roushan-code", - "url": "https://github.com/roushan-code", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3932", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/941", - "https://github.com/SurajPratap10/Imagine_AI/pull/1297", - "https://github.com/VigneshDevHub/CampX/pull/287", - "https://github.com/VigneshDevHub/CampX/pull/129" - ], - "pr_dates": ["2024-10-09", "2024-10-17", "2024-10-20", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165276725?v=4", - "login": "aditiverma18", - "url": "https://github.com/aditiverma18", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3165", - "https://github.com/anuragverma108/SwapReads/pull/3140", - "https://github.com/anuragverma108/SwapReads/pull/3021", - "https://github.com/anuragverma108/SwapReads/pull/2978" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-08", "2024-10-09"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128895955?u=8b6d319c86dd81a51cdeeeadbae7b990aee3d80f&v=4", - "login": "HarshadaGirase", - "url": "https://github.com/HarshadaGirase", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2911", - "https://github.com/PriyaGhosal/BuddyTrail/pull/42", - "https://github.com/PriyaGhosal/BuddyTrail/pull/41", - "https://github.com/Soujanya2004/wanderlust-2024/pull/20", - "https://github.com/Vin205/Enyanjyoti/pull/39", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/179" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109012154?u=82707ea21202c20a6ca63494a78c5390117cf651&v=4", - "login": "Arveti-likhitha", - "url": "https://github.com/Arveti-likhitha", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1103", - "https://github.com/vishanurag/Canvas-Editor/pull/1097", - "https://github.com/iamrahulmahato/master-web-development/pull/1540", - "https://github.com/iamrahulmahato/master-web-development/pull/1539", - "https://github.com/samyakmaitre/eventmint/pull/269", - "https://github.com/apu52/Travel_Website/pull/1598" - ], - "pr_dates": ["2024-10-13", "2024-10-21", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133144087?v=4", - "login": "Nitheesha33", - "url": "https://github.com/Nitheesha33", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/253", - "https://github.com/PriyaGhosal/BuddyTrail/pull/676", - "https://github.com/apu52/Travel_Website/pull/1584", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1115" - ], - "pr_dates": ["2024-10-06", "2024-10-14", "2024-10-16", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160533006?u=2543e1f0fc098b20ddcaa36a592811d18bcc8699&v=4", - "login": "vastavikadi", - "url": "https://github.com/vastavikadi", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/220", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/92" - ], - "pr_dates": ["2024-10-12", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133549235?u=d8801f6cf9fcfb3c5bf69b246d0155c5bfa5b501&v=4", - "login": "Prajyot05", - "url": "https://github.com/Prajyot05", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Avdhesh-Varshney/WebMasterLog/pull/787"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122741882?u=c78f197a69173ad063335a27fac083c9108626d3&v=4", - "login": "Shreya-Pandey-01", - "url": "https://github.com/Shreya-Pandey-01", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1679", - "https://github.com/Open-Code-Crafters/FitFlex/pull/123", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/374", - "https://github.com/multiverseweb/CodeIt/pull/85" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-13", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130593147?v=4", - "login": "DipanwitSen", - "url": "https://github.com/DipanwitSen", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/29", - "https://github.com/GarimaSingh0109/WasteManagment/pull/93" - ], - "pr_dates": ["2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113467723?u=880dc3728e2747e5c8ca2646b1dcfdfa3e2d21cb&v=4", - "login": "priyanka350", - "url": "https://github.com/priyanka350", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/241", - "https://github.com/UTSAVS26/PySnippets/pull/11", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/292", - "https://github.com/UTSAVS26/PyVerse/pull/93" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-06", "2024-10-07"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129603987?u=331e398dd46d713dbf704d4384d23d98d030b67c&v=4", - "login": "anchalchaturvedi08", - "url": "https://github.com/anchalchaturvedi08", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/103", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/184", - "https://github.com/iamrahulmahato/master-web-development/pull/1624", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/78" - ], - "pr_dates": ["2024-10-04", "2024-10-16", "2024-10-19", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145841395?u=7841a7bb43a352a7f2bab431b82116d6795a0ba2&v=4", - "login": "htanmo", - "url": "https://github.com/htanmo", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/kom-senapati/bot-verse/pull/111", - "https://github.com/kom-senapati/bot-verse/pull/73", - "https://github.com/kom-senapati/bot-verse/pull/58", - "https://github.com/UTSAVS26/PySnippets/pull/63" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-10", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70971035?u=1683aa29d7a114afd7da61206cb777332f96c769&v=4", - "login": "itsmeAYUSH", - "url": "https://github.com/itsmeAYUSH", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/701", - "https://github.com/iamrahulmahato/master-web-development/pull/563" - ], - "pr_dates": ["2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117746995?u=cb205024a19927e382c7bbea460bcf03c03efa20&v=4", - "login": "SwanandD121", - "url": "https://github.com/SwanandD121", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/samyakmaitre/eventmint/pull/349", - "https://github.com/samyakmaitre/eventmint/pull/234" - ], - "pr_dates": ["2024-10-11", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146459126?v=4", - "login": "kcjod", - "url": "https://github.com/kcjod", - "score": 90, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Soujanya2004/wanderlust-2024/pull/54", - "https://github.com/Soujanya2004/wanderlust-2024/pull/19" - ], - "pr_dates": ["2024-10-06", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149397021?u=3a20eb81526fd28cd3d625f5fa9058aa01b59f6f&v=4", - "login": "Sapta-Dev27", - "url": "https://github.com/Sapta-Dev27", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/154", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/68", - "https://github.com/dohinaf/basic-icecream-website/pull/89", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/25" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146435630?u=9364f677d62dcdf9572b03e7dbb2dc35f3e95665&v=4", - "login": "iking07", - "url": "https://github.com/iking07", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/347", - "https://github.com/ajay-dhangar/algo/pull/108", - "https://github.com/ajay-dhangar/algo/pull/83", - "https://github.com/anuragverma108/SwapReads/pull/2913", - "https://github.com/AlgoGenesis/C/pull/767", - "https://github.com/AlgoGenesis/C/pull/393", - "https://github.com/AlgoGenesis/C/pull/161" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-06", - "2024-10-09", - "2024-10-14" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122633300?u=19a8b8230c63b8271264466250d7ff5e568d9c7f&v=4", - "login": "komal-agarwal5", - "url": "https://github.com/komal-agarwal5", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/162", - "https://github.com/PriyaGhosal/BuddyTrail/pull/926", - "https://github.com/PriyaGhosal/BuddyTrail/pull/864", - "https://github.com/PriyaGhosal/BuddyTrail/pull/614" - ], - "pr_dates": ["2024-10-13", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69081168?u=b050f6ed2bb8af73ef2963a8555afc062a57e0e8&v=4", - "login": "heizshubham", - "url": "https://github.com/heizshubham", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/119", - "https://github.com/codeaashu/DevDisplay/pull/271", - "https://github.com/AlgoGenesis/C/pull/1008", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/323", - "https://github.com/vansh-codes/ChaosWeb/pull/102", - "https://github.com/sharmavikas4/MERN_BLOG/pull/46" - ], - "pr_dates": [ - "2024-10-13", - "2024-10-15", - "2024-10-17", - "2024-10-18", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81180893?u=67d2521d8c1904d324b66567e85bb5fd9c503522&v=4", - "login": "Adityadhiman0", - "url": "https://github.com/Adityadhiman0", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/998", - "https://github.com/ANSHIKA-26/WordWise/pull/675", - "https://github.com/anuragverma108/SwapReads/pull/4136", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/886", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/842", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/809", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/510" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-12", - "2024-10-15", - "2024-10-18", - "2024-10-19", - "2024-10-20", - "2024-10-27" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168894520?u=2fc95a7e443aa28c2ccd4293b27aebff761484b0&v=4", - "login": "tanmaysrivastava45", - "url": "https://github.com/tanmaysrivastava45", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1077", - "https://github.com/vishanurag/Canvas-Editor/pull/1062", - "https://github.com/vishanurag/Canvas-Editor/pull/1047", - "https://github.com/vishanurag/Canvas-Editor/pull/1001" - ], - "pr_dates": ["2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123259170?v=4", - "login": "G-Rajashekar", - "url": "https://github.com/G-Rajashekar", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/157", - "https://github.com/Luson045/medi-connect/pull/293", - "https://github.com/Soujanya2004/wanderlust-2024/pull/48", - "https://github.com/Yashgabani845/hiring-portal/pull/111" - ], - "pr_dates": ["2024-10-08", "2024-10-10", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146511619?u=8ecaa1e1459d1b67767672b52b6629835752cd58&v=4", - "login": "SrishtiChamoli", - "url": "https://github.com/SrishtiChamoli", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/497", - "https://github.com/param-code/counter-app/pull/265", - "https://github.com/recodehive/awesome-github-profiles/pull/924", - "https://github.com/TenzDelek/DearDiary/pull/139" - ], - "pr_dates": ["2024-10-18", "2024-10-20", "2024-10-24", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130353989?v=4", - "login": "Pradyuman554", - "url": "https://github.com/Pradyuman554", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1953", - "https://github.com/ayush-that/FinVeda/pull/1907", - "https://github.com/ayush-that/FinVeda/pull/1903", - "https://github.com/ayush-that/FinVeda/pull/1891", - "https://github.com/ayush-that/FinVeda/pull/1886" - ], - "pr_dates": ["2024-10-23", "2024-10-24"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177869559?u=74fae3dee4f8f7ecd0cd54efcd6f69f204a5c1d6&v=4", - "login": "PDGamerSG", - "url": "https://github.com/PDGamerSG", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1315", - "https://github.com/ayush-that/FinVeda/pull/1314", - "https://github.com/ayush-that/FinVeda/pull/1297", - "https://github.com/ayush-that/FinVeda/pull/1271" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147643182?u=09add1ed069ca2fac448d3f65c15bb3cd7e16499&v=4", - "login": "PriyanshuValiya", - "url": "https://github.com/PriyanshuValiya", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/427", - "https://github.com/param-code/counter-app/pull/37", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/55", - "https://github.com/recodehive/awesome-github-profiles/pull/1010" - ], - "pr_dates": ["2024-10-03", "2024-10-21", "2024-10-24", "2024-10-25"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94681493?u=cd69841ce8746da6867d7b1de6a9a7cb4ee8db45&v=4", - "login": "aasiflm10", - "url": "https://github.com/aasiflm10", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/my-calendar-app/pull/59", - "https://github.com/Megh2005/Med-o-Next/pull/82", - "https://github.com/TejasNasre/nexmeet/pull/14", - "https://github.com/Trisha-tech/OnlineBookSales/pull/395" - ], - "pr_dates": ["2024-10-02", "2024-10-05", "2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177192861?u=66fb5fc91b2a43153557033e477c49d9a08728b2&v=4", - "login": "akshay0712-dev", - "url": "https://github.com/akshay0712-dev", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/568", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/422", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/355", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/352" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-19", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126975547?u=57cf8ccfac7a4fb623cbb2c1a465fad8d90c3b9a&v=4", - "login": "ayush-848", - "url": "https://github.com/ayush-848", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/125", - "https://github.com/Luson045/medi-connect/pull/90", - "https://github.com/swarooppatilx/scruter/pull/184", - "https://github.com/4darsh-Dev/DecenTrade/pull/29" - ], - "pr_dates": ["2024-10-02", "2024-10-11", "2024-10-15", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137208377?u=be2566f24e6842bf7ac1a68db71be84992da368b&v=4", - "login": "anuragbansall", - "url": "https://github.com/anuragbansall", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/135", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/233", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/129", - "https://github.com/iamrahulmahato/master-web-development/pull/1359" - ], - "pr_dates": ["2024-10-05", "2024-10-09", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111969580?v=4", - "login": "Aiu26", - "url": "https://github.com/Aiu26", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/65", - "https://github.com/Luson045/medi-connect/pull/48", - "https://github.com/Vin205/Enyanjyoti/pull/128", - "https://github.com/Vin205/Enyanjyoti/pull/107" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181578416?u=e1d767480b8b4378c149746e6decf7a33f44cb46&v=4", - "login": "Deepika14145", - "url": "https://github.com/Deepika14145", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1351", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1618", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1500", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1166" - ], - "pr_dates": ["2024-10-20", "2024-10-25", "2024-10-26", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171074534?u=89a8854904e5177e0a6bc1a6ef2937f2f1bc3a1f&v=4", - "login": "prasoonk1204", - "url": "https://github.com/prasoonk1204", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/261", - "https://github.com/iamrahulmahato/master-web-development/pull/304", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/19", - "https://github.com/Yashgabani845/hiring-portal/pull/93" - ], - "pr_dates": ["2024-10-03", "2024-10-06", "2024-10-07", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116942066?u=1d6ca93bf7c2d8a4ed998059445b242fc4e55ac4&v=4", - "login": "vishnuprasad2004", - "url": "https://github.com/vishnuprasad2004", - "score": 85, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/697", - "https://github.com/iamrahulmahato/master-web-development/pull/694", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/75", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/60" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138100998?u=610b56c036388bcb6d01d9ce4474979da54bc98a&v=4", - "login": "AasthaSingh28", - "url": "https://github.com/AasthaSingh28", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/137", - "https://github.com/aditya-bhaumik/Pathsphere/pull/519", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/81" - ], - "pr_dates": ["2024-10-09", "2024-10-11", "2024-10-12"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161828345?u=3d6d44cb34d0a5148a52293d3853b137573b6fab&v=4", - "login": "narendra-dhangar", - "url": "https://github.com/narendra-dhangar", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/116", - "https://github.com/ajay-dhangar/algo/pull/35", - "https://github.com/ajay-dhangar/algo/pull/22" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130629445?v=4", - "login": "Ash182004", - "url": "https://github.com/Ash182004", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/543", - "https://github.com/anuragverma108/SwapReads/pull/3681", - "https://github.com/vishanurag/Canvas-Editor/pull/967", - "https://github.com/vishanurag/Canvas-Editor/pull/966", - "https://github.com/vishanurag/Canvas-Editor/pull/965", - "https://github.com/vishanurag/Canvas-Editor/pull/964", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/409", - "https://github.com/tushargupta1504/Medical-Website/pull/534" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142642917?u=1b499f33b4547eee3e5a79762027ab4c8a09c27f&v=4", - "login": "shashankgoud18", - "url": "https://github.com/shashankgoud18", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/182", - "https://github.com/Anjaliavv51/Retro/pull/264", - "https://github.com/PriyaGhosal/BuddyTrail/pull/271", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/206", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/99" - ], - "pr_dates": ["2024-10-04", "2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146630431?v=4", - "login": "Shweta-1902", - "url": "https://github.com/Shweta-1902", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/171", - "https://github.com/Harshdev098/Research-Nexas/pull/92", - "https://github.com/Vimall03/Alimento/pull/68" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130679111?u=87077ba1a018dabcd5843ab5a59d3021d26286f7&v=4", - "login": "priyaahm", - "url": "https://github.com/priyaahm", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/39", - "https://github.com/mdazfar2/Ezyshop/pull/46", - "https://github.com/GarimaSingh0109/WasteManagment/pull/105", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/43", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/41" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141483497?u=88553642afe38a44b5ee4f53a114f1e19eba3102&v=4", - "login": "Sarthakkashyapp", - "url": "https://github.com/Sarthakkashyapp", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/311", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/304", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/246", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/245", - "https://github.com/multiverseweb/CodeIt/pull/120" - ], - "pr_dates": ["2024-10-10", "2024-10-17", "2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111561592?u=c65489e43948e8fd04d31362d8051791dc068d4e&v=4", - "login": "yours7himanshu", - "url": "https://github.com/yours7himanshu", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/92", - "https://github.com/iamrahulmahato/master-web-development/pull/606", - "https://github.com/daccotta-org/daccotta/pull/70" - ], - "pr_dates": ["2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91682208?v=4", - "login": "ak3264114", - "url": "https://github.com/ak3264114", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/36", - "https://github.com/divyansh-2005/my-calendar-app/pull/17", - "https://github.com/dohinaf/basic-icecream-website/pull/161" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142168480?u=0a2c485e06da241565f87c4c36582feeaa995277&v=4", - "login": "Ishratnoori", - "url": "https://github.com/Ishratnoori", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ChandelAnish/fusionFLOW/pull/43", - "https://github.com/UTSAVS26/PySnippets/pull/266", - "https://github.com/vanshchauhan21/CryptoTracker/pull/36" - ], - "pr_dates": ["2024-10-10", "2024-10-20", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146021671?u=ec529cf6fcf8964fd615d1c531f8fb0b95d4ed71&v=4", - "login": "saurabhvybs", - "url": "https://github.com/saurabhvybs", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/66", - "https://github.com/ankit071105/Ticket-Booking/pull/61", - "https://github.com/ankit071105/Ticket-Booking/pull/49", - "https://github.com/ankit071105/Ticket-Booking/pull/16" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172056443?u=fc54a61e88c468c30027b42222523a864a91b945&v=4", - "login": "likitha-kapu", - "url": "https://github.com/likitha-kapu", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4387", - "https://github.com/anuragverma108/SwapReads/pull/4163", - "https://github.com/ayush-that/FinVeda/pull/2472", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1045", - "https://github.com/Anjaliavv51/Retro/pull/192" - ], - "pr_dates": ["2024-10-04", "2024-10-28", "2024-10-30", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127304731?u=6c971ee3ee83f2047e752fe3065349a5b6f2d0a7&v=4", - "login": "Rohit131313", - "url": "https://github.com/Rohit131313", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/138", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/104", - "https://github.com/UTSAVS26/PyVerse/pull/267" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-09"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111193356?u=c7ec88b8957e605004d181f14bb8f4224a9fe127&v=4", - "login": "iamsohelx", - "url": "https://github.com/iamsohelx", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/164", - "https://github.com/Bitbox-Connect/Bitbox/pull/26", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/111", - "https://github.com/MadhavKrishanGoswami/InkCode-Fusion/pull/30" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-08"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176239805?u=ecbaa42de37a627543803a2f29fc79f744c70674&v=4", - "login": "shaina123786", - "url": "https://github.com/shaina123786", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/236", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/289", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/527", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/482", - "https://github.com/recodehive/machine-learning-repos/pull/1597" - ], - "pr_dates": ["2024-10-08", "2024-10-26", "2024-10-30", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122792512?u=fcda70996d1143dfca98bc9d82df5f34dbd3fd64&v=4", - "login": "salonijoshi1980", - "url": "https://github.com/salonijoshi1980", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2446", - "https://github.com/ayush-that/FinVeda/pull/2293", - "https://github.com/ayush-that/FinVeda/pull/2208", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/509", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/503", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1808" - ], - "pr_dates": [ - "2024-10-27", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150172043?u=ead191a6b6fe43f4c11e9e81b7cd05dc8d032be3&v=4", - "login": "Dinkar850", - "url": "https://github.com/Dinkar850", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/52", - "https://github.com/iamrahulmahato/master-web-development/pull/1085", - "https://github.com/iamrahulmahato/master-web-development/pull/942", - "https://github.com/iamrahulmahato/master-web-development/pull/822", - "https://github.com/recodehive/awesome-github-profiles/pull/689" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-10", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86941244?u=76c4c52e9e735114837b26690cf120552d3e34b1&v=4", - "login": "Kuldeepsinghrajpoot", - "url": "https://github.com/Kuldeepsinghrajpoot", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/392", - "https://github.com/Open-Code-Crafters/FitFlex/pull/212", - "https://github.com/gupta-ritik/ExpenseTracker/pull/63", - "https://github.com/ayerhssb/Appointment-booking-app/pull/47", - "https://github.com/ayerhssb/Appointment-booking-app/pull/36", - "https://github.com/ayerhssb/Appointment-booking-app/pull/31" - ], - "pr_dates": [ - "2024-10-08", - "2024-10-09", - "2024-10-12", - "2024-10-13", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116855819?u=a576633e65f9bf83728fed3fe26c885eafaaee78&v=4", - "login": "Monu2114", - "url": "https://github.com/Monu2114", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/309", - "https://github.com/Anjaliavv51/Retro/pull/174", - "https://github.com/iamrahulmahato/master-web-development/pull/919", - "https://github.com/TenzDelek/DearDiary/pull/146", - "https://github.com/Trisha-tech/OnlineBookSales/pull/322" - ], - "pr_dates": ["2024-10-04", "2024-10-06", "2024-10-10", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126228991?v=4", - "login": "EfrataAron", - "url": "https://github.com/EfrataAron", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jiggy9/JCT/pull/20", - "https://github.com/tushargupta1504/Medical-Website/pull/463", - "https://github.com/tushargupta1504/Medical-Website/pull/242", - "https://github.com/notsoocool/codecache/pull/151", - "https://github.com/notsoocool/codecache/pull/94" - ], - "pr_dates": [ - "2024-10-06", - "2024-10-07", - "2024-10-13", - "2024-10-16", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113277393?u=97262f149a697358df1d4e99f5af4981aefdf2c5&v=4", - "login": "geetanjalidubey9", - "url": "https://github.com/geetanjalidubey9", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/kartikayasijaa/talk-trove/pull/83", - "https://github.com/kartikayasijaa/talk-trove/pull/77", - "https://github.com/Soujanya2004/wanderlust-2024/pull/32" - ], - "pr_dates": ["2024-10-07", "2024-10-11", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112712827?u=ab44aac12e071e98ba04a7cf9854d120807ba0ea&v=4", - "login": "skanarul8002", - "url": "https://github.com/skanarul8002", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamparas0/TIC-TAC-TOE/pull/384", - "https://github.com/Trisha-tech/OnlineBookSales/pull/482", - "https://github.com/vanshchauhan21/CryptoTracker/pull/33" - ], - "pr_dates": ["2024-10-14", "2024-10-20", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139321266?u=8783c3763f84fcf81b5ab1b5e26d1ee37f415883&v=4", - "login": "IshaRawat7", - "url": "https://github.com/IshaRawat7", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/284", - "https://github.com/Soujanya2004/wanderlust-2024/pull/69", - "https://github.com/Yashgabani845/hiring-portal/pull/79" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87255169?u=ce5a223f50c65a8d26b9de272479dccfcddf14eb&v=4", - "login": "CoderFleet", - "url": "https://github.com/CoderFleet", - "score": 80, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/426", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/425", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/188", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1080", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1124" - ], - "pr_dates": ["2024-10-08", "2024-10-28", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75160254?u=803477288a269fe4a9ab88a9ef2aad4af98f6c03&v=4", - "login": "STSonyThomas", - "url": "https://github.com/STSonyThomas", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/89", - "https://github.com/Kota-Karthik/twinTrim/pull/104", - "https://github.com/Yashgabani845/hiring-portal/pull/244" - ], - "pr_dates": ["2024-10-08", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99724683?u=a6864e36c5975addc02b08da71d5dd0fe9c9c967&v=4", - "login": "BhaktiMore18", - "url": "https://github.com/BhaktiMore18", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/532", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/156", - "https://github.com/soham0005/ElectroKart/pull/79" - ], - "pr_dates": ["2024-10-07", "2024-10-11", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155097227?u=03569023ea67b5181d029304eaa8db29aa641a3e&v=4", - "login": "karthik-kiran-29", - "url": "https://github.com/karthik-kiran-29", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/99", - "https://github.com/ombhojane/explainableai/pull/20", - "https://github.com/iamrahulmahato/master-web-development/pull/251", - "https://github.com/SurajPratap10/Imagine_AI/pull/1164", - "https://github.com/multiverseweb/CodeIt/pull/36", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/294" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128150513?v=4", - "login": "sarthaxtic", - "url": "https://github.com/sarthaxtic", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1587", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/692", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/685", - "https://github.com/UTSAVS26/PyVerse/pull/923", - "https://github.com/UTSAVS26/PyVerse/pull/467", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1271" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-28", - "2024-10-30", - "2024-10-31", - "2024-11-01" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98252196?u=7c9e9f471fb5a6fcc9513882d05fa541efc332ff&v=4", - "login": "Shantnu-singh", - "url": "https://github.com/Shantnu-singh", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1184", - "https://github.com/ajay-dhangar/algo/pull/1089", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/555", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/533", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/473", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/470" - ], - "pr_dates": ["2024-10-19", "2024-10-21", "2024-10-22", "2024-10-23"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142569867?v=4", - "login": "krishpathak", - "url": "https://github.com/krishpathak", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/966", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/53", - "https://github.com/Bitbox-Connect/Bitbox/pull/131", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/48", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/41", - "https://github.com/swarooppatilx/scruter/pull/330" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-04", - "2024-10-05", - "2024-10-16", - "2024-10-18", - "2024-10-29" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148620980?v=4", - "login": "sania-2912", - "url": "https://github.com/sania-2912", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/820", - "https://github.com/Anjaliavv51/Retro/pull/800", - "https://github.com/multiverseweb/Dataverse/pull/260", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/716" - ], - "pr_dates": ["2024-10-29", "2024-10-30", "2024-10-31"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146666416?v=4", - "login": "Poushmita", - "url": "https://github.com/Poushmita", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1359", - "https://github.com/ANSHIKA-26/WordWise/pull/1344", - "https://github.com/vishanurag/Canvas-Editor/pull/896", - "https://github.com/vishanurag/Canvas-Editor/pull/522", - "https://github.com/vishanurag/Canvas-Editor/pull/90", - "https://github.com/recodehive/awesome-github-profiles/pull/1090" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-13", - "2024-10-23", - "2024-10-24", - "2024-10-25" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141896176?u=440ff5f406c45b9f2818202e843920c17d78523a&v=4", - "login": "shreyabajaj12", - "url": "https://github.com/shreyabajaj12", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/892", - "https://github.com/ANSHIKA-26/WordWise/pull/869", - "https://github.com/iamrahulmahato/master-web-development/pull/906", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/494", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/446", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/420" - ], - "pr_dates": ["2024-10-10", "2024-10-11", "2024-10-12", "2024-10-13"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180659296?u=564c76be349ce18a9050015f8fd25d4ae6e68377&v=4", - "login": "jayashisbarua", - "url": "https://github.com/jayashisbarua", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3673", - "https://github.com/anuragverma108/SwapReads/pull/3341", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/489", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/389", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/406", - "https://github.com/Vin205/Enyanjyoti/pull/425" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-18", - "2024-10-20" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101783159?u=0cf12834fe8d1641cb9e3b73f128555afce4c0f5&v=4", - "login": "1ShahidBashir", - "url": "https://github.com/1ShahidBashir", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/774", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/161", - "https://github.com/mansiruhil13/Bobble-AI/pull/467" - ], - "pr_dates": ["2024-10-05", "2024-10-08", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155296217?u=f88a480691a058a95c65ca4b28e0627c27b41b82&v=4", - "login": "MadhavDhatrak", - "url": "https://github.com/MadhavDhatrak", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/463", - "https://github.com/Code-Social/official-website/pull/330", - "https://github.com/Code-Social/official-website/pull/285" - ], - "pr_dates": ["2024-10-18", "2024-10-21", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148746389?v=4", - "login": "komalnalage", - "url": "https://github.com/komalnalage", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/398", - "https://github.com/Anjaliavv51/Retro/pull/309", - "https://github.com/Trisha-tech/OnlineBookSales/pull/440" - ], - "pr_dates": ["2024-10-07", "2024-10-11", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182622170?u=f2a5d35d52bc7db4e008511a346fce9f50303a95&v=4", - "login": "t1nt1n-s0lv3r", - "url": "https://github.com/t1nt1n-s0lv3r", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/126", - "https://github.com/iamrahulmahato/master-web-development/pull/142", - "https://github.com/iamrahulmahato/master-web-development/pull/74" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113048079?u=4aaed5db3db190c74415f1b9baf20953af7c3089&v=4", - "login": "sandeepmaddheshiya", - "url": "https://github.com/sandeepmaddheshiya", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1712", - "https://github.com/ayush-that/FinVeda/pull/1615", - "https://github.com/AlgoGenesis/C/pull/1119", - "https://github.com/AlgoGenesis/C/pull/940", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/853", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/829" - ], - "pr_dates": ["2024-10-17", "2024-10-19", "2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119369782?u=52f3f21a483ac7cce2eacb5f86737d3226e78b78&v=4", - "login": "ambarmishraa", - "url": "https://github.com/ambarmishraa", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1693", - "https://github.com/ayush-that/FinVeda/pull/1611", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/855", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/851", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/811", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/806" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-20"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150515281?u=56b64d2341c7109dbfa9fdbf783d2b22a74e72a7&v=4", - "login": "Sadab-Hussain", - "url": "https://github.com/Sadab-Hussain", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1273", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/496", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/644", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/248", - "https://github.com/Vin205/Enyanjyoti/pull/333", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/471" - ], - "pr_dates": [ - "2024-10-07", - "2024-10-11", - "2024-10-13", - "2024-10-15", - "2024-10-16" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143875739?u=e8744ae032fe82773d108957a2f53c4dcd180f27&v=4", - "login": "Prudhvi-232", - "url": "https://github.com/Prudhvi-232", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/513", - "https://github.com/mdazfar2/Ezyshop/pull/276", - "https://github.com/sanjay-kv/Open-source-Practice/pull/446" - ], - "pr_dates": ["2024-05-10", "2024-10-07", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136161289?v=4", - "login": "manya1632", - "url": "https://github.com/manya1632", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/439", - "https://github.com/param-code/counter-app/pull/68", - "https://github.com/SaranshBangar/Daneizo/pull/166" - ], - "pr_dates": ["2024-10-05", "2024-10-26", "2024-10-27"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104948046?u=1a629f501674199b8e5d2cc71c783e78d4dd5c67&v=4", - "login": "PankajKumardev", - "url": "https://github.com/PankajKumardev", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/132", - "https://github.com/kartikayasijaa/talk-trove/pull/47", - "https://github.com/Vin205/Enyanjyoti/pull/113" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116636066?u=eb95618557c06b0f00ff06be5b098d0596c613d9&v=4", - "login": "Anuj3553", - "url": "https://github.com/Anuj3553", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/47", - "https://github.com/Bitbox-Connect/Bitbox/pull/44", - "https://github.com/Bitbox-Connect/Bitbox/pull/41" - ], - "pr_dates": ["2024-10-09", "2024-10-10"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94801572?u=5a694a46131efd3c96e51e64d266d14523b53603&v=4", - "login": "ShirshenduR", - "url": "https://github.com/ShirshenduR", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/kom-senapati/bot-verse/pull/9", - "https://github.com/Kota-Karthik/twinTrim/pull/161", - "https://github.com/Kota-Karthik/twinTrim/pull/156", - "https://github.com/Kota-Karthik/twinTrim/pull/68", - "https://github.com/Kota-Karthik/twinTrim/pull/60", - "https://github.com/AlgoGenesis/C/pull/1350" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-03", - "2024-10-04", - "2024-10-27", - "2024-10-28" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86069454?u=fe53c5eef7b827c5c53310b3617203ceb0e47dce&v=4", - "login": "kushal7201", - "url": "https://github.com/kushal7201", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/652", - "https://github.com/PriyaGhosal/BuddyTrail/pull/286", - "https://github.com/samyakmaitre/eventmint/pull/204" - ], - "pr_dates": ["2024-10-08", "2024-10-10", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144673309?u=215680a2c262d5ed42f4b7d0b18ec853a7d23209&v=4", - "login": "Shreyaa173", - "url": "https://github.com/Shreyaa173", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Shreyaa173/Code-Book/pull/448", - "https://github.com/Shreyaa173/Code-Book/pull/446", - "https://github.com/Shreyaa173/Code-Book/pull/38" - ], - "pr_dates": ["2024-10-02", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144580796?v=4", - "login": "anushkajjadhav", - "url": "https://github.com/anushkajjadhav", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/07sumit1002/CabRental/pull/205", - "https://github.com/07sumit1002/CabRental/pull/166", - "https://github.com/multiverseweb/CodeIt/pull/58" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143412156?u=2a7c295533297b2d5371df36ca7710c5138d31f2&v=4", - "login": "CodexRaunak", - "url": "https://github.com/CodexRaunak", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Trisha-tech/OnlineBookSales/pull/563", - "https://github.com/Trisha-tech/OnlineBookSales/pull/387", - "https://github.com/Trisha-tech/OnlineBookSales/pull/281" - ], - "pr_dates": ["2024-10-03", "2024-10-08", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59223186?v=4", - "login": "Talha-ai", - "url": "https://github.com/Talha-ai", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/125", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/83", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/71" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173529070?u=e4d14801c2b2977ce9c4ab64e3ca4e65ec9157f5&v=4", - "login": "Akash-Gupta-git", - "url": "https://github.com/Akash-Gupta-git", - "score": 75, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1118", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1111", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1110" - ], - "pr_dates": ["2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169090270?u=b97c1303911a32e8a6638733ab59347964459757&v=4", - "login": "abir499-ban", - "url": "https://github.com/abir499-ban", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/59", - "https://github.com/Soujanya2004/wanderlust-2024/pull/244" - ], - "pr_dates": ["2024-10-12", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143121854?u=c852fb3c6b31e94cc7fcb5abd15a62f0fcdcc440&v=4", - "login": "meetarora10", - "url": "https://github.com/meetarora10", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/707", - "https://github.com/ankit071105/Ticket-Booking/pull/464", - "https://github.com/ankit071105/Ticket-Booking/pull/427", - "https://github.com/sanjay-kv/Open-source-Practice/pull/210" - ], - "pr_dates": ["2024-05-10", "2024-10-15", "2024-10-18", "2024-10-19"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84682963?u=3167befa6f620e1f76f360a2c4ce84d3fa3429c7&v=4", - "login": "Rishikagoyal", - "url": "https://github.com/Rishikagoyal", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/403", - "https://github.com/vishanurag/Canvas-Editor/pull/835", - "https://github.com/ayush-that/FinVeda/pull/1186" - ], - "pr_dates": ["2024-10-07", "2024-10-13", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121110503?u=cc428e951065e2f3a3a0c094fb600458481b5904&v=4", - "login": "nishakp3005", - "url": "https://github.com/nishakp3005", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/238", - "https://github.com/ajay-dhangar/algo/pull/73", - "https://github.com/TenzDelek/DearDiary/pull/39", - "https://github.com/yashksaini-coder/BookStream/pull/32" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152068143?v=4", - "login": "PavaniKudulla", - "url": "https://github.com/PavaniKudulla", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/76", - "https://github.com/aditya-bhaumik/Pathsphere/pull/61" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125077858?u=b8bfe8efebe72fef85cf65e82d699aea52a94f41&v=4", - "login": "1-SubhamSingh", - "url": "https://github.com/1-SubhamSingh", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/386", - "https://github.com/Code-Social/official-website/pull/420", - "https://github.com/dhairyagothi/StationGuide/pull/37", - "https://github.com/TenzDelek/DearDiary/pull/53" - ], - "pr_dates": ["2024-10-02", "2024-10-06", "2024-10-09", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155195875?u=bec005a188e34db962e48d6824ce7b650ca813b3&v=4", - "login": "akshitbansal2005", - "url": "https://github.com/akshitbansal2005", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/401", - "https://github.com/vishanurag/Canvas-Editor/pull/569", - "https://github.com/ayush-that/FinVeda/pull/1280", - "https://github.com/Yashgabani845/hiring-portal/pull/174" - ], - "pr_dates": ["2024-10-15", "2024-10-16", "2024-10-17"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141745373?u=a9fa01e4e5f033cfd019a3ac08ca1e4b17a4942e&v=4", - "login": "Dhruv-Gaba", - "url": "https://github.com/Dhruv-Gaba", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/219", - "https://github.com/samyakmaitre/eventmint/pull/192" - ], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130808542?u=8c47dc9f580b08f4ce8d146e913f35ade1240eca&v=4", - "login": "Gamerking177", - "url": "https://github.com/Gamerking177", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/37", - "https://github.com/anuragverma108/SwapReads/pull/2925", - "https://github.com/swarooppatilx/scruter/pull/41", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/306" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182359908?u=9fd0262632355aab4660db78ed12c6485305d083&v=4", - "login": "Karthik3904", - "url": "https://github.com/Karthik3904", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/387", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/375", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/879", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/198", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/184", - "https://github.com/daccotta-org/daccotta/pull/265", - "https://github.com/Vin205/Enyanjyoti/pull/482", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/610" - ], - "pr_dates": [ - "2024-10-22", - "2024-10-24", - "2024-10-27", - "2024-10-28", - "2024-10-29" - ], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107393948?v=4", - "login": "Charvi-14", - "url": "https://github.com/Charvi-14", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/4", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1089", - "https://github.com/prrockzed/nvimDev/pull/32", - "https://github.com/UTSAVS26/PyVerse/pull/81" - ], - "pr_dates": ["2024-10-01", "2024-10-04", "2024-10-05", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178503518?v=4", - "login": "Jazz-45", - "url": "https://github.com/Jazz-45", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/45", - "https://github.com/ANSHIKA-26/WordWise/pull/470", - "https://github.com/ANSHIKA-26/WordWise/pull/204", - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/44", - "https://github.com/param-code/counter-app/pull/57", - "https://github.com/SanchitGeez/Investra/pull/87", - "https://github.com/Trisha-tech/OnlineBookSales/pull/311", - "https://github.com/Vin205/Enyanjyoti/pull/105" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-04", - "2024-10-05", - "2024-10-07", - "2024-10-12" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161283785?v=4", - "login": "SatyaJaiss", - "url": "https://github.com/SatyaJaiss", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/40", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/43", - "https://github.com/Vin205/Enyanjyoti/pull/64", - "https://github.com/Vin205/Enyanjyoti/pull/52" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176757208?u=b0d629c6a11075d48c897d9821f75f683e104ede&v=4", - "login": "akhandpratap18", - "url": "https://github.com/akhandpratap18", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anki2003ta/Museum/pull/55", - "https://github.com/himeshparashar/Social-Morph/pull/32", - "https://github.com/PriyaGhosal/BuddyTrail/pull/106", - "https://github.com/PriyaGhosal/BuddyTrail/pull/39" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138434890?u=a0932b7ca6900800d87330b0f17d346e7af1597b&v=4", - "login": "Raj-Aditya-27", - "url": "https://github.com/Raj-Aditya-27", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/342", - "https://github.com/PriyaGhosal/BuddyTrail/pull/232", - "https://github.com/recodehive/awesome-github-profiles/pull/793", - "https://github.com/recodehive/awesome-github-profiles/pull/647", - "https://github.com/apu52/Travel_Website/pull/1550" - ], - "pr_dates": ["2024-10-05", "2024-10-07", "2024-10-12", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138971524?u=18401fd53fd8fa058005a91382d6e3e4a0c5ce6f&v=4", - "login": "aniketraut16", - "url": "https://github.com/aniketraut16", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4222", - "https://github.com/divyansh-2005/FinNews/pull/142" - ], - "pr_dates": ["2024-10-11", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175941375?v=4", - "login": "Raj-Ganatra", - "url": "https://github.com/Raj-Ganatra", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3915", - "https://github.com/vishanurag/Canvas-Editor/pull/860", - "https://github.com/ayush-that/FinVeda/pull/1879", - "https://github.com/mansiruhil13/Bobble-AI/pull/983" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140053105?u=13a45c1a3b4ce017daeac281a2169f03b95db24e&v=4", - "login": "SATYAM0LUFFY", - "url": "https://github.com/SATYAM0LUFFY", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3851", - "https://github.com/anuragverma108/SwapReads/pull/3438", - "https://github.com/anuragverma108/SwapReads/pull/3430", - "https://github.com/codeaashu/DevDisplay/pull/507" - ], - "pr_dates": ["2024-10-14", "2024-10-21", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169278740?v=4", - "login": "SalehaTabassum", - "url": "https://github.com/SalehaTabassum", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3461", - "https://github.com/anuragverma108/SwapReads/pull/3413", - "https://github.com/anuragverma108/SwapReads/pull/3410", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/842" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114380197?u=a8d95d32986a6ba1bb60ea2020413500b492183c&v=4", - "login": "Anju-Narnolia", - "url": "https://github.com/Anju-Narnolia", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3107", - "https://github.com/anuragverma108/SwapReads/pull/3084", - "https://github.com/mansiruhil13/Bobble-AI/pull/431", - "https://github.com/PriyaGhosal/BuddyTrail/pull/530" - ], - "pr_dates": ["2024-10-08", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98476572?u=2f8fbcd143b169747d41d77ced34d719cede6028&v=4", - "login": "rounakdey6", - "url": "https://github.com/rounakdey6", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/614", - "https://github.com/vishanurag/Canvas-Editor/pull/252", - "https://github.com/vishanurag/Canvas-Editor/pull/105", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/597" - ], - "pr_dates": ["2024-10-04", "2024-10-06", "2024-10-15", "2024-10-16"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138312154?v=4", - "login": "VivekShahare04", - "url": "https://github.com/VivekShahare04", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/235", - "https://github.com/mansiruhil13/Bobble-AI/pull/392", - "https://github.com/mansiruhil13/Bobble-AI/pull/391", - "https://github.com/param-code/counter-app/pull/78" - ], - "pr_dates": ["2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119536812?u=85b38395da73db9a3a633f25cf4451fbfa2a9cf5&v=4", - "login": "Amit-10101", - "url": "https://github.com/Amit-10101", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/117", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/33" - ], - "pr_dates": ["2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70816995?u=b1e49aae19598094802923fb9abf4e26959fd84e&v=4", - "login": "KumarAmrendram", - "url": "https://github.com/KumarAmrendram", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/73", - "https://github.com/TherkuTech/tturl/pull/59" - ], - "pr_dates": ["2024-10-06", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147246984?u=7d54b1d6a172ddb20a4508758aabdc1be34b75c3&v=4", - "login": "venkat-2811", - "url": "https://github.com/venkat-2811", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/263", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/210", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/394", - "https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1153" - ], - "pr_dates": ["2024-10-15", "2024-10-16", "2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138239688?u=f1c3d9145d80e4be080c60d420f1968bde1fe867&v=4", - "login": "damarudhvarma", - "url": "https://github.com/damarudhvarma", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/195", - "https://github.com/Kushal997-das/Project-Guidance/pull/1461" - ], - "pr_dates": ["2024-10-09", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137239336?u=a917258287724f61dbfc07ed61b5cea040a8dcd9&v=4", - "login": "maniranjan2023", - "url": "https://github.com/maniranjan2023", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/527", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/502", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/386", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/373" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97563838?u=c482a302de9b9b506afa00d8bb6924106e21d867&v=4", - "login": "mawalou14", - "url": "https://github.com/mawalou14", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/995", - "https://github.com/Avdhesh-Varshney/WebMasterLog/pull/889" - ], - "pr_dates": ["2024-10-13", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146446556?u=c99ecb0cc4dc0a690cf8140df28d3b34896b5897&v=4", - "login": "Crimson-Typhoon-147", - "url": "https://github.com/Crimson-Typhoon-147", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2482", - "https://github.com/ayush-that/FinVeda/pull/2041", - "https://github.com/ayush-that/FinVeda/pull/2019", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/87" - ], - "pr_dates": ["2024-10-19", "2024-10-24", "2024-10-25", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96512703?v=4", - "login": "AnishaDevi", - "url": "https://github.com/AnishaDevi", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1715", - "https://github.com/ayush-that/FinVeda/pull/1576", - "https://github.com/recodehive/awesome-github-profiles/pull/965", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1194" - ], - "pr_dates": ["2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144436606?u=8f1070507679285f809ed2539e0bede87ac8a7eb&v=4", - "login": "gouravi19", - "url": "https://github.com/gouravi19", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/527", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/434" - ], - "pr_dates": ["2024-10-12", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87687236?u=acb858b1a71da91821c754f434b3c4df5efb2ace&v=4", - "login": "muhafiz5814", - "url": "https://github.com/muhafiz5814", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/153", - "https://github.com/mdazfar2/Ezyshop/pull/62" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127867874?u=28e5a15bed313ddb88b631ac071859a8fcb16326&v=4", - "login": "Ojas-Arora", - "url": "https://github.com/Ojas-Arora", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/76", - "https://github.com/dhairyagothi/StationGuide/pull/58" - ], - "pr_dates": ["2024-10-04", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130372733?u=592cb8a35871d1dd4cbb9b23f9c5791454c38a51&v=4", - "login": "RabdeepKaur", - "url": "https://github.com/RabdeepKaur", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/GAME_PLAYER/pull/62", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/43", - "https://github.com/Ratnesh-Team/Rehabify/pull/136", - "https://github.com/SaranshBangar/Daneizo/pull/109" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142864215?u=ac24f0cbfcb3d833fe97dd0d984a08785b05d924&v=4", - "login": "adityas1309", - "url": "https://github.com/adityas1309", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/smilewithkhushi/BasicNative/pull/131", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/35" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95683323?v=4", - "login": "MrunalKashid02", - "url": "https://github.com/MrunalKashid02", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/296", - "https://github.com/Harshdev098/Research-Nexas/pull/111" - ], - "pr_dates": ["2024-10-13", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141134361?v=4", - "login": "ritik6559", - "url": "https://github.com/ritik6559", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/32", - "https://github.com/Jiggy9/JCT/pull/21" - ], - "pr_dates": ["2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105500361?u=d43a4fab430d8dab1d68544bd8b1b71081c3f5a2&v=4", - "login": "Ameerjafar", - "url": "https://github.com/Ameerjafar", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/178", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/114", - "https://github.com/gupta-ritik/ExpenseTracker/pull/54", - "https://github.com/notsoocool/codecache/pull/130" - ], - "pr_dates": ["2024-10-12", "2024-10-15", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/41900188?u=a2e105525860c8932d5af7a4087101990b65d6b0&v=4", - "login": "deji-ice", - "url": "https://github.com/deji-ice", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/176", - "https://github.com/Luson045/medi-connect/pull/150" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124066968?u=e54bbb8b5cf88a9d600acac5f050930612aa268e&v=4", - "login": "AYUSHI-SHA", - "url": "https://github.com/AYUSHI-SHA", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/88", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/86", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/68", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/24" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177692306?u=2eeb0901eb4eac11462adf8958f45eae05a42366&v=4", - "login": "SagnikGos", - "url": "https://github.com/SagnikGos", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/479", - "https://github.com/mansiruhil13/Bobble-AI/pull/470", - "https://github.com/PriyaGhosal/BuddyTrail/pull/324", - "https://github.com/PriyaGhosal/BuddyTrail/pull/243" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97538500?u=3d7faae7eeb23cdc9f8744d650d09f716b5990d4&v=4", - "login": "Karnmayank07", - "url": "https://github.com/Karnmayank07", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/83", - "https://github.com/mansiruhil13/Bobble-AI/pull/68" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115407231?v=4", - "login": "ZayedShahcode", - "url": "https://github.com/ZayedShahcode", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MitulSonagara/truth-tunnel/pull/41", - "https://github.com/notsoocool/codecache/pull/47", - "https://github.com/notsoocool/codecache/pull/35", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/36" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-07", "2024-10-08"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178977380?u=dc44bb0ca2ce48ff3588a95e6b0f23670bb47dac&v=4", - "login": "Sunilkumarchavhan9", - "url": "https://github.com/Sunilkumarchavhan9", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/252", - "https://github.com/Anjaliavv51/Retro/pull/160" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76200195?u=8f6fff55318f7d29c645061045f9b6f773bee62d&v=4", - "login": "pushkardev123", - "url": "https://github.com/pushkardev123", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/256", - "https://github.com/Trisha-tech/OnlineBookSales/pull/288" - ], - "pr_dates": ["2024-10-03", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149246272?v=4", - "login": "Lavavarshney", - "url": "https://github.com/Lavavarshney", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PranavBarthwal/backend-generator-cli/pull/48", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/43" - ], - "pr_dates": ["2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171579231?u=bbac0d5231f7acde9b09536a4a8c7b68c2960f66&v=4", - "login": "pynaman", - "url": "https://github.com/pynaman", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1447", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1385", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1230", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1220" - ], - "pr_dates": ["2024-10-21", "2024-10-22", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144110931?v=4", - "login": "divyamprabhudessai", - "url": "https://github.com/divyamprabhudessai", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1304", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1232" - ], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87174663?u=6412b17b8f836e82d551058a2fc6d8d8725a5fe0&v=4", - "login": "Titus210", - "url": "https://github.com/Titus210", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/847", - "https://github.com/iamrahulmahato/master-web-development/pull/464" - ], - "pr_dates": ["2024-10-05", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121611425?u=fba8a0f04fa1497494ba97f981aea441caae5c96&v=4", - "login": "madhura-ingole", - "url": "https://github.com/madhura-ingole", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/231", - "https://github.com/iamrahulmahato/master-web-development/pull/196" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171673365?v=4", - "login": "Abhishek89chauhan", - "url": "https://github.com/Abhishek89chauhan", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/127", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/130" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144435177?u=30f75a6a5c20741e9a798b763fda7b1327ac7f9c&v=4", - "login": "toufiqfarhan0", - "url": "https://github.com/toufiqfarhan0", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rahulsainlll/git-trace/pull/138", - "https://github.com/rahulsainlll/git-trace/pull/75" - ], - "pr_dates": ["2024-10-10", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115030365?u=aac97f190781250e13be026813c45cb8cb209281&v=4", - "login": "manikjain105", - "url": "https://github.com/manikjain105", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/190", - "https://github.com/yashasvini121/predictive-calc/pull/166" - ], - "pr_dates": ["2024-10-19", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106465753?v=4", - "login": "yr1404", - "url": "https://github.com/yr1404", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/samyakmaitre/eventmint/pull/403", - "https://github.com/samyakmaitre/eventmint/pull/362" - ], - "pr_dates": ["2024-10-18", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/in/23186?v=4", - "login": "allcontributors", - "url": "https://github.com/apps/allcontributors", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1157", - "https://github.com/recodehive/awesome-github-profiles/pull/506" - ], - "pr_dates": ["2024-09-18", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144978373?v=4", - "login": "vasudhawaman", - "url": "https://github.com/vasudhawaman", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/800", - "https://github.com/recodehive/awesome-github-profiles/pull/605", - "https://github.com/codervivek5/VigyBag/pull/2317", - "https://github.com/codervivek5/VigyBag/pull/2252" - ], - "pr_dates": ["2024-10-02", "2024-10-05", "2024-10-13", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146704161?u=2739f4b6f1aad8f36eaf56795027b145b4075503&v=4", - "login": "Archi20876", - "url": "https://github.com/Archi20876", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1508", - "https://github.com/recodehive/machine-learning-repos/pull/1466" - ], - "pr_dates": ["2024-10-16", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130790017?u=31afd767969db86c9381dbd0d6ea412722f23892&v=4", - "login": "samyakmaitre", - "url": "https://github.com/samyakmaitre", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/160", - "https://github.com/sanjay-kv/Open-source-Practice/pull/552" - ], - "pr_dates": ["2024-05-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169595093?u=619a58fb5463fce7ed0811909795f8e3fe94d78b&v=4", - "login": "garimabhayanaa", - "url": "https://github.com/garimabhayanaa", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vansh-codes/Gityzer/pull/31", - "https://github.com/vansh-codes/Gityzer/pull/22" - ], - "pr_dates": ["2024-10-08", "2024-10-09"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/39164064?v=4", - "login": "Yash8077", - "url": "https://github.com/Yash8077", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vansh-codes/ChaosWeb/pull/210", - "https://github.com/vansh-codes/ChaosWeb/pull/207", - "https://github.com/vansh-codes/ChaosWeb/pull/197", - "https://github.com/vansh-codes/ChaosWeb/pull/165" - ], - "pr_dates": ["2024-10-22", "2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100463643?u=1501401765a9953697a5e3d49ef741ce22c4ed5a&v=4", - "login": "Rohityadav9575", - "url": "https://github.com/Rohityadav9575", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vishwajith-Shettigar/NextGen/pull/88", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/10" - ], - "pr_dates": ["2024-10-02", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134730928?u=94c667cfd02bba1e0652d4121e2755cfd38afdc5&v=4", - "login": "shubham-mehta-002", - "url": "https://github.com/shubham-mehta-002", - "score": 70, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Scribbie-Notes/notes-app/pull/51", - "https://github.com/Scribbie-Notes/notes-app/pull/19" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133964268?v=4", - "login": "Pooja3Bhattrai", - "url": "https://github.com/Pooja3Bhattrai", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/102", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/113", - "https://github.com/mansiruhil13/Bobble-AI/pull/100" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127642353?v=4", - "login": "Bhanuprakash842", - "url": "https://github.com/Bhanuprakash842", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/25", - "https://github.com/anuragverma108/SwapReads/pull/2950", - "https://github.com/anuragverma108/SwapReads/pull/2917", - "https://github.com/divyansh-2005/GAME_PLAYER/pull/163", - "https://github.com/SaranshBangar/Daneizo/pull/66" - ], - "pr_dates": ["2024-10-01", "2024-10-03", "2024-10-04", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76259086?u=385df67fd0c6a5fbd4876e9360685408a46bb926&v=4", - "login": "AmanPathan", - "url": "https://github.com/AmanPathan", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/977", - "https://github.com/ajay-dhangar/algo/pull/878", - "https://github.com/ajay-dhangar/algo/pull/521", - "https://github.com/ajay-dhangar/algo/pull/413", - "https://github.com/Vin205/Enyanjyoti/pull/213" - ], - "pr_dates": ["2024-10-10", "2024-10-11", "2024-10-17", "2024-10-18"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102909367?u=a9263ac485ba0182b9182cffc01b1f20e415cda6&v=4", - "login": "adwityac", - "url": "https://github.com/adwityac", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/969", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/173", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/690", - "https://github.com/UTSAVS26/PySnippets/pull/270", - "https://github.com/UTSAVS26/PyVerse/pull/471" - ], - "pr_dates": [ - "2024-10-11", - "2024-10-12", - "2024-10-18", - "2024-10-28", - "2024-10-31" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173184793?u=ffcb0b1f1595aa737f9038798e940043db885669&v=4", - "login": "lakshmirajvagu", - "url": "https://github.com/lakshmirajvagu", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/170", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/196", - "https://github.com/swarooppatilx/scruter/pull/286" - ], - "pr_dates": ["2024-10-08", "2024-10-16", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176763247?u=26733ff1f6d1e510055b9a06d4ae4af64dbcdd39&v=4", - "login": "AHSANATIQ98", - "url": "https://github.com/AHSANATIQ98", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/36", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/290", - "https://github.com/andoriyaprashant/DevDocsHub/pull/36", - "https://github.com/prrockzed/nvimDev/pull/4", - "https://github.com/yashasvini121/predictive-calc/pull/91" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-07", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88264744?u=7e182660f795870ca3d619e381695018558c9636&v=4", - "login": "saimohan11", - "url": "https://github.com/saimohan11", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/510", - "https://github.com/ankit071105/Ticket-Booking/pull/500", - "https://github.com/ankit071105/Ticket-Booking/pull/497", - "https://github.com/ankit071105/Ticket-Booking/pull/452", - "https://github.com/subhadipbhowmik/bio-branch/pull/103" - ], - "pr_dates": ["2024-10-08", "2024-10-19", "2024-10-20", "2024-10-21"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113301075?u=769e33b5cabefda01def16f4203d56c3db9c3171&v=4", - "login": "KAmaL-senpai", - "url": "https://github.com/KAmaL-senpai", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anki2003ta/Museum/pull/70", - "https://github.com/anuragverma108/SwapReads/pull/2912", - "https://github.com/vishanurag/Canvas-Editor/pull/51", - "https://github.com/mansiruhil13/Bobble-AI/pull/54", - "https://github.com/vansh-codes/ChaosWeb/pull/216" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-05", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115152849?u=8030cf8c8bcc3acdce1bcc60e761ad0e576ef202&v=4", - "login": "kartik3110", - "url": "https://github.com/kartik3110", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anmode/grabtern-frontend/pull/896", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/407", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/333" - ], - "pr_dates": ["2024-10-12", "2024-10-13"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96922407?v=4", - "login": "AnujSisodiya", - "url": "https://github.com/AnujSisodiya", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1242", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/710", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/708", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/609", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/608" - ], - "pr_dates": ["2024-10-16", "2024-10-18", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118704821?v=4", - "login": "master-ginger", - "url": "https://github.com/master-ginger", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/502", - "https://github.com/jahnvisahni31/DesignDeck/pull/105", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/50" - ], - "pr_dates": ["2024-10-07", "2024-10-13", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162816561?v=4", - "login": "bm9240", - "url": "https://github.com/bm9240", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/281", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/93", - "https://github.com/Trisha-tech/OnlineBookSales/pull/478" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171619030?u=d313055285ab3241b6cd19a3f8c2fa99cd891b21&v=4", - "login": "ZoyaYusuf", - "url": "https://github.com/ZoyaYusuf", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuj123upadhyay/MegaBlog/pull/194", - "https://github.com/Manishkr1007/WordWeaver/pull/82", - "https://github.com/Anjaliavv51/Retro/pull/635", - "https://github.com/multiverseweb/Dataverse/pull/138", - "https://github.com/multiverseweb/CodeIt/pull/179" - ], - "pr_dates": ["2024-10-14", "2024-10-16", "2024-10-17"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126749983?v=4", - "login": "jeevika17", - "url": "https://github.com/jeevika17", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3540", - "https://github.com/anuragverma108/SwapReads/pull/3534", - "https://github.com/tushargupta1504/Medical-Website/pull/520", - "https://github.com/tushargupta1504/Medical-Website/pull/518", - "https://github.com/tushargupta1504/Medical-Website/pull/484" - ], - "pr_dates": ["2024-10-16", "2024-10-17", "2024-10-18"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90393324?u=259438677e593ee4602ad24aaef9222a6b8ee0d7&v=4", - "login": "somil0701", - "url": "https://github.com/somil0701", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3255", - "https://github.com/dohinaf/basic-icecream-website/pull/329", - "https://github.com/iamrahulmahato/master-web-development/pull/740" - ], - "pr_dates": ["2024-10-07", "2024-10-08", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126002795?u=d0dd43a9d7cb0233dd0f7ce4f3c22bae065da6e8&v=4", - "login": "Bhoomysingh10", - "url": "https://github.com/Bhoomysingh10", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/1012", - "https://github.com/vishanurag/Canvas-Editor/pull/157", - "https://github.com/AlgoGenesis/C/pull/1347" - ], - "pr_dates": ["2024-10-05", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160501765?v=4", - "login": "shwetzz14", - "url": "https://github.com/shwetzz14", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/498", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/191", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/443" - ], - "pr_dates": ["2024-10-12", "2024-10-13", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118789592?u=2a0ea3b828ebd087d3c10a8e549d2cc0a7eb42e2&v=4", - "login": "srii5477", - "url": "https://github.com/srii5477", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/19", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/293", - "https://github.com/AlgoGenesis/C/pull/236", - "https://github.com/recodehive/machine-learning-repos/pull/1374", - "https://github.com/recodehive/machine-learning-repos/pull/1257" - ], - "pr_dates": ["2024-10-02", "2024-10-06", "2024-10-11", "2024-10-12"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/64344960?u=9681dc050e243e4ea1461945534834758d3df99f&v=4", - "login": "AdityaBavadekar", - "url": "https://github.com/AdityaBavadekar", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/277", - "https://github.com/Luson045/medi-connect/pull/410", - "https://github.com/iamrahulmahato/master-web-development/pull/1006" - ], - "pr_dates": ["2024-10-11", "2024-10-12", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140835316?u=e4ce3b3f6dbf600066842df88bc80b9449e5ddb9&v=4", - "login": "mrpeace07", - "url": "https://github.com/mrpeace07", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/198", - "https://github.com/codeaashu/DevDisplay/pull/181", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/321", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/268" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182990598?v=4", - "login": "KAUSHIKRM-36", - "url": "https://github.com/KAUSHIKRM-36", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1781", - "https://github.com/AlgoGenesis/C/pull/1135", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/599", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/578", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/546" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-20", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142973627?v=4", - "login": "prajwaln07", - "url": "https://github.com/prajwaln07", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/BamaCharanChhandogi/READMEasy/pull/83", - "https://github.com/divyansh-2005/FinNews/pull/79", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/150", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/91", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/37" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-06", - "2024-10-09", - "2024-10-14", - "2024-10-16" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142382794?u=231383eeeda0d6bcd3b3b9083a51805272680ab7&v=4", - "login": "akshadgujarkar", - "url": "https://github.com/akshadgujarkar", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/BamaCharanChhandogi/GitFinder/pull/60", - "https://github.com/Open-Code-Crafters/FitFlex/pull/369", - "https://github.com/Open-Code-Crafters/FitFlex/pull/305", - "https://github.com/Open-Code-Crafters/FitFlex/pull/227", - "https://github.com/Open-Code-Crafters/FitFlex/pull/25" - ], - "pr_dates": [ - "2024-10-02", - "2024-10-11", - "2024-10-14", - "2024-10-22", - "2024-10-28" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118730455?u=7c36aecceef8858494988cbfdee0ea256f94f6be&v=4", - "login": "Visheshpgowda", - "url": "https://github.com/Visheshpgowda", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/33", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/11", - "https://github.com/visheshrwl/Uber-like/pull/36" - ], - "pr_dates": ["2024-10-02", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117567542?u=954f806c9de3b297bdb2c5833fa59321eace3ed0&v=4", - "login": "Devamani11D", - "url": "https://github.com/Devamani11D", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devamani11D/salt-app-kickstart/pull/71", - "https://github.com/Devamani11D/salt-app-kickstart/pull/31", - "https://github.com/Devamani11D/salt-app-kickstart/pull/30", - "https://github.com/Devamani11D/salt-app-kickstart/pull/26" - ], - "pr_dates": ["2024-10-12", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123314145?v=4", - "login": "shivamv003", - "url": "https://github.com/shivamv003", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/89", - "https://github.com/Anjaliavv51/Retro/pull/111", - "https://github.com/Anjaliavv51/Retro/pull/86", - "https://github.com/Anjaliavv51/Retro/pull/72", - "https://github.com/Anjaliavv51/Retro/pull/35" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124419483?v=4", - "login": "Orca-63", - "url": "https://github.com/Orca-63", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/121", - "https://github.com/Anjaliavv51/Retro/pull/99", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/78", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/75", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/149" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-04"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165279311?v=4", - "login": "ABHI-SHEK-001", - "url": "https://github.com/ABHI-SHEK-001", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/750", - "https://github.com/mansiruhil13/Bobble-AI/pull/733", - "https://github.com/mansiruhil13/Bobble-AI/pull/237" - ], - "pr_dates": ["2024-10-06", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151112711?v=4", - "login": "Dcode-7", - "url": "https://github.com/Dcode-7", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/255", - "https://github.com/mansiruhil13/Bobble-AI/pull/84", - "https://github.com/mansiruhil13/Bobble-AI/pull/72" - ], - "pr_dates": ["2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160993404?v=4", - "login": "aarushsaboo", - "url": "https://github.com/aarushsaboo", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MinavKaria/Ratna-Supermarket/pull/181", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/154", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/153" - ], - "pr_dates": ["2024-10-20", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89592054?u=9b594aa2e570e4a3d6dd4fe77df4ce6d748cc3e6&v=4", - "login": "Kiran-Jadhav200", - "url": "https://github.com/Kiran-Jadhav200", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1068", - "https://github.com/AlgoGenesis/C/pull/388", - "https://github.com/iamrahulmahato/master-web-development/pull/1091", - "https://github.com/iamrahulmahato/master-web-development/pull/1015", - "https://github.com/iamrahulmahato/master-web-development/pull/915" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-10", - "2024-10-11", - "2024-10-12", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113253997?v=4", - "login": "aashika-j18", - "url": "https://github.com/aashika-j18", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/andoriyaprashant/OpSo/pull/359", - "https://github.com/andoriyaprashant/OpSo/pull/357", - "https://github.com/yagnik2411/Quiz-Genius/pull/83" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164743217?u=e125a1bb09380e82ddc88616bde34807c5e47d6e&v=4", - "login": "prachitriv", - "url": "https://github.com/prachitriv", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1104", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1065", - "https://github.com/PriyaGhosal/BuddyTrail/pull/904", - "https://github.com/PriyaGhosal/BuddyTrail/pull/813", - "https://github.com/PriyaGhosal/BuddyTrail/pull/770" - ], - "pr_dates": ["2024-10-15", "2024-10-16", "2024-10-17", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131283498?u=c33a0c3e8d3454554b7fbf8000fb04ce96caaab3&v=4", - "login": "rishikaa1", - "url": "https://github.com/rishikaa1", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/31", - "https://github.com/UTSAVS26/PySnippets/pull/128", - "https://github.com/AmateursLeague/sneaky-package/pull/61" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95691809?u=4179d17c26adb3caef44b6af0fa5ccb0427ff5d7&v=4", - "login": "Vivek7038", - "url": "https://github.com/Vivek7038", - "score": 65, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/notsoocool/codecache/pull/37", - "https://github.com/notsoocool/codecache/pull/28", - "https://github.com/notsoocool/codecache/pull/24" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115890460?u=5a340d9c5ef2615e9d409d12b0f42fc93e0d8ef5&v=4", - "login": "abhayksahu369", - "url": "https://github.com/abhayksahu369", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/79", - "https://github.com/jinx-vi-0/passop/pull/76", - "https://github.com/jinx-vi-0/passop/pull/55" - ], - "pr_dates": ["2024-10-07", "2024-10-10", "2024-10-11"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167862155?u=5e05db086a8f22886f8d1629e5d0d4f615089819&v=4", - "login": "Siddhi-sahu", - "url": "https://github.com/Siddhi-sahu", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/90", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/58", - "https://github.com/himeshparashar/Social-Morph/pull/102" - ], - "pr_dates": ["2024-10-04", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129333571?u=87b8efa4cae35fb70b3087a31968a23bc6634b32&v=4", - "login": "0vai5", - "url": "https://github.com/0vai5", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/16", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/305", - "https://github.com/SaranshBangar/Daneizo/pull/113" - ], - "pr_dates": ["2024-10-04", "2024-10-10", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139967182?u=c388dbbefa00b34be6a37a72fba868839b2eba09&v=4", - "login": "varshapandiann", - "url": "https://github.com/varshapandiann", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/863", - "https://github.com/PriyaGhosal/BuddyTrail/pull/822", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1127" - ], - "pr_dates": ["2024-10-09", "2024-10-16", "2024-10-17"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89182735?u=f42ce2de52124d1468871788c9f5def6eeeecd34&v=4", - "login": "nilesh-fatfatwale", - "url": "https://github.com/nilesh-fatfatwale", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/Uttarakhand-Culture-NewUI/pull/107", - "https://github.com/iamrahulmahato/master-web-development/pull/147", - "https://github.com/Yashgabani845/hiring-portal/pull/26" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114720478?v=4", - "login": "shreyamaheshwari1", - "url": "https://github.com/shreyamaheshwari1", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajaynegi45/LibraryMan-API/pull/51", - "https://github.com/subhadipbhowmik/bio-branch/pull/48", - "https://github.com/TejasNasre/nexmeet/pull/115", - "https://github.com/TejasNasre/nexmeet/pull/69" - ], - "pr_dates": ["2024-10-02", "2024-10-05", "2024-10-10", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170444089?u=c56db96998e56ce2160aa8d299a87d187636c79f&v=4", - "login": "ChampGupta", - "url": "https://github.com/ChampGupta", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/346", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/141", - "https://github.com/iamrahulmahato/master-web-development/pull/1212" - ], - "pr_dates": ["2024-10-10", "2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82692757?u=01de54e3824c153fe14a24d33658fd6349340fc6&v=4", - "login": "pand-coder", - "url": "https://github.com/pand-coder", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/67", - "https://github.com/anuragverma108/SwapReads/pull/2904", - "https://github.com/Anjaliavv51/Retro/pull/29" - ], - "pr_dates": ["2024-10-01", "2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/37536551?u=386a1f6dec649ec7ce98583c731936d50df784d5&v=4", - "login": "AlaminPu1007", - "url": "https://github.com/AlaminPu1007", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/51", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/42", - "https://github.com/Scribbie-Notes/notes-app/pull/39" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154537760?u=dacf2f8943519ad60264ec75790b9162194f2e81&v=4", - "login": "shivamy009", - "url": "https://github.com/shivamy009", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/21", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/35", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/26", - "https://github.com/param-code/counter-app/pull/28", - "https://github.com/param-code/counter-app/pull/19", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/89" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116333715?u=1022a0797ae53451322023d3f3e524363a92b88f&v=4", - "login": "Bluesparx", - "url": "https://github.com/Bluesparx", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/BhattAnsh/Quiz-Quest/pull/89", - "https://github.com/BhattAnsh/Quiz-Quest/pull/72", - "https://github.com/BhattAnsh/Quiz-Quest/pull/20" - ], - "pr_dates": ["2024-10-03", "2024-10-13", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116655535?u=b3a3d03db929db72c461fbf7669d8e067ca7e693&v=4", - "login": "Pushpa472", - "url": "https://github.com/Pushpa472", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2993", - "https://github.com/codeaashu/DevDisplay/pull/376", - "https://github.com/iamrahulmahato/master-web-development/pull/1084", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/395", - "https://github.com/recodehive/Opensource-practice/pull/170", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1173" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-12", - "2024-10-19", - "2024-10-22", - "2024-10-25" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165468720?u=63afc0e075762db41845d51fdc777bb989cc3c05&v=4", - "login": "bvvivek6", - "url": "https://github.com/bvvivek6", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2907", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/48", - "https://github.com/dohinaf/basic-icecream-website/pull/100" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107976020?u=53415141f400ec2aefd3fcd58d783103bde43bfe&v=4", - "login": "mrpankajpandey", - "url": "https://github.com/mrpankajpandey", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/310", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/154", - "https://github.com/sharmavikas4/MERN_BLOG/pull/27" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140056615?u=bd7a9b6d600bdfd209b6f0888b908fc59b0f7559&v=4", - "login": "hannah-maria", - "url": "https://github.com/hannah-maria", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/55", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/86", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/34" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138869112?v=4", - "login": "vansh-m012", - "url": "https://github.com/vansh-m012", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2409", - "https://github.com/ayush-that/FinVeda/pull/2149", - "https://github.com/ayush-that/FinVeda/pull/1440" - ], - "pr_dates": ["2024-10-17", "2024-10-26", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149445634?v=4", - "login": "saiprasanna56", - "url": "https://github.com/saiprasanna56", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1138", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/197", - "https://github.com/Anjaliavv51/Retro/pull/409", - "https://github.com/Anjaliavv51/Retro/pull/371", - "https://github.com/Anjaliavv51/Retro/pull/227", - "https://github.com/iamrahulmahato/master-web-development/pull/939" - ], - "pr_dates": ["2024-10-05", "2024-10-09", "2024-10-10", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146735447?u=0bfa0cc3fc2786f693f7840874d840ee3bfb9e0f&v=4", - "login": "Priyesh017", - "url": "https://github.com/Priyesh017", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/362", - "https://github.com/mdazfar2/Ezyshop/pull/168", - "https://github.com/jahnvisahni31/DesignDeck/pull/96" - ], - "pr_dates": ["2024-10-04", "2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174681595?v=4", - "login": "prvn-kumar01", - "url": "https://github.com/prvn-kumar01", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/251", - "https://github.com/dohinaf/basic-icecream-website/pull/59", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/205" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162272415?u=cf08d02570454de2cff904f3498285e57014ced6&v=4", - "login": "Devanik21", - "url": "https://github.com/Devanik21", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/63", - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/55", - "https://github.com/sanjay-kv/Open-source-Practice/pull/565" - ], - "pr_dates": ["2024-05-11", "2024-10-15", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174894437?v=4", - "login": "Mradul-code", - "url": "https://github.com/Mradul-code", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/386", - "https://github.com/dhairyagothi/StationGuide/pull/360", - "https://github.com/dhairyagothi/StationGuide/pull/358" - ], - "pr_dates": ["2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117946464?u=d9233c05651b77396cdb0bafa72ba1808f2a559c&v=4", - "login": "Mausumi134", - "url": "https://github.com/Mausumi134", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/719", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/421", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/320", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/267" - ], - "pr_dates": ["2024-10-16", "2024-10-18", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123140963?u=f7901d23d6e69b293a7cf56aa7b1e02fbf5752e6&v=4", - "login": "prathamesh-pichkate", - "url": "https://github.com/prathamesh-pichkate", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/92", - "https://github.com/divyansh-2005/FinNews/pull/57", - "https://github.com/divyansh-2005/FinNews/pull/47" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112353160?v=4", - "login": "Blessy-B-Sherin", - "url": "https://github.com/Blessy-B-Sherin", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/189", - "https://github.com/dohinaf/basic-icecream-website/pull/91", - "https://github.com/iamrahulmahato/master-web-development/pull/206" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182071963?u=0e2c19bf6e124b09ddf760295a97781fc6f4d9c7&v=4", - "login": "Gahlotkumkum", - "url": "https://github.com/Gahlotkumkum", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/386", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/987", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/922" - ], - "pr_dates": ["2024-10-07", "2024-10-21", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72681624?u=babf068359c1638b401bd29df5f650ac5c8a9fe6&v=4", - "login": "Md-SabbirHosen", - "url": "https://github.com/Md-SabbirHosen", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/463", - "https://github.com/Luson045/medi-connect/pull/422", - "https://github.com/Luson045/medi-connect/pull/377" - ], - "pr_dates": ["2024-10-11", "2024-10-13", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142908269?u=ad97f41ccc0612bf31ad95cdcc6acb94a6594361&v=4", - "login": "OmAmar106", - "url": "https://github.com/OmAmar106", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/1041", - "https://github.com/mansiruhil13/Bobble-AI/pull/848", - "https://github.com/mansiruhil13/Bobble-AI/pull/622" - ], - "pr_dates": ["2024-10-12", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132494312?u=417152d8f9542ddbfcb1f09d9e0121c68ae6ba3e&v=4", - "login": "Rahul-Morabiya", - "url": "https://github.com/Rahul-Morabiya", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1117", - "https://github.com/AlgoGenesis/C/pull/924", - "https://github.com/AlgoGenesis/C/pull/916", - "https://github.com/AlgoGenesis/C/pull/852", - "https://github.com/AlgoGenesis/C/pull/543", - "https://github.com/AlgoGenesis/C/pull/409" - ], - "pr_dates": [ - "2024-10-09", - "2024-10-11", - "2024-10-15", - "2024-10-17", - "2024-10-22" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81503323?v=4", - "login": "Sameera-05", - "url": "https://github.com/Sameera-05", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1804", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1198", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1023" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59512209?u=78fd17dacd24816832c5ef62bd442e24022ff143&v=4", - "login": "Arkyapatwa", - "url": "https://github.com/Arkyapatwa", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1463", - "https://github.com/SaranshBangar/Daneizo/pull/141", - "https://github.com/SaranshBangar/Daneizo/pull/107" - ], - "pr_dates": ["2024-10-16", "2024-10-21", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110994217?u=7ef139d19691acecb6e6d4056a3455f74d2df294&v=4", - "login": "Sitambhra02", - "url": "https://github.com/Sitambhra02", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1162", - "https://github.com/recodehive/awesome-github-profiles/pull/648", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1091" - ], - "pr_dates": ["2024-10-02", "2024-10-07", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140689703?v=4", - "login": "ar-rana", - "url": "https://github.com/ar-rana", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/788", - "https://github.com/rahulsainlll/git-trace/pull/15", - "https://github.com/Trisha-tech/OnlineBookSales/pull/275" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125259987?u=fc6db58ed5f5373bba7cf869715c434e63a92a80&v=4", - "login": "prachi-kurmi", - "url": "https://github.com/prachi-kurmi", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/668", - "https://github.com/iamrahulmahato/master-web-development/pull/277", - "https://github.com/iamrahulmahato/master-web-development/pull/133" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121337325?u=2d946a283292dff0e7bb3d5039561467bc67e2c4&v=4", - "login": "Japneet001", - "url": "https://github.com/Japneet001", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/360", - "https://github.com/iamrahulmahato/master-web-development/pull/315", - "https://github.com/sanjay-kv/Open-source-Practice/pull/118" - ], - "pr_dates": ["2024-05-10", "2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130992856?u=77b6352bf32e60f560955bd8dbdee182a5686a1f&v=4", - "login": "prateek2102", - "url": "https://github.com/prateek2102", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayerhssb/Appointment-booking-app/pull/12", - "https://github.com/Soujanya2004/wanderlust-2024/pull/73", - "https://github.com/GVishnudhasan/NoDueProject/pull/20", - "https://github.com/Scribbie-Notes/notes-app/pull/42" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156564932?u=4ea90aa3524daedbdcf965e50271f99655395513&v=4", - "login": "garvitnegi17", - "url": "https://github.com/garvitnegi17", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/189", - "https://github.com/multiverseweb/CodeIt/pull/286", - "https://github.com/multiverseweb/CodeIt/pull/241" - ], - "pr_dates": ["2024-10-19", "2024-10-25", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155154094?u=0efe2c34d5289dd849db4f9a622ab2fb5aaefb78&v=4", - "login": "AfrozeSVU", - "url": "https://github.com/AfrozeSVU", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/637", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/538", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/261" - ], - "pr_dates": ["2024-10-09", "2024-10-18", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118440051?u=868d2e091f17d4bbfd894e5b0b20588097903605&v=4", - "login": "Lanaanvar", - "url": "https://github.com/Lanaanvar", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Trisha-tech/OnlineBookSales/pull/573", - "https://github.com/Trisha-tech/OnlineBookSales/pull/380", - "https://github.com/Trisha-tech/OnlineBookSales/pull/282" - ], - "pr_dates": ["2024-10-03", "2024-10-08", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126794938?u=fecabd44e16c3357c331dbcc628e1fe6b5a28384&v=4", - "login": "Amit-4186", - "url": "https://github.com/Amit-4186", - "score": 60, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/71", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/46", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/37" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83386703?u=7ef4da0dc27b875f3e4b6a25a5f22a103356bf35&v=4", - "login": "Vaibhav-Samdani", - "url": "https://github.com/Vaibhav-Samdani", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RCCTechzClub/TechzRevamp/pull/19", - "https://github.com/dhairyagothi/StationGuide/pull/216" - ], - "pr_dates": ["2024-10-06", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175245075?u=e1e51a8a62374ed6a3cf638e0ee1b9f681382971&v=4", - "login": "shashmitha46", - "url": "https://github.com/shashmitha46", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1291", - "https://github.com/recodehive/machine-learning-repos/pull/1566", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/100", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1139" - ], - "pr_dates": ["2024-10-12", "2024-10-18", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108350583?u=ed6d1e146a5156abc6cba3887b07db52da54272f&v=4", - "login": "AdityaJani616", - "url": "https://github.com/AdityaJani616", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1074", - "https://github.com/ajay-dhangar/algo/pull/1038", - "https://github.com/ajay-dhangar/algo/pull/957", - "https://github.com/iamrahulmahato/master-web-development/pull/2012" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-20", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/26879616?u=03ea52793e3debbf25444bf28946e8872762ebd1&v=4", - "login": "KunikaMakker", - "url": "https://github.com/KunikaMakker", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/645", - "https://github.com/ajay-dhangar/algo/pull/418", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/273", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/330" - ], - "pr_dates": ["2024-10-10", "2024-10-13", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94513009?u=8887649b38bb0624149a1500ce7b052029d36ccd&v=4", - "login": "Sarthak027", - "url": "https://github.com/Sarthak027", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/567", - "https://github.com/yatulearn/yatulearn/pull/279" - ], - "pr_dates": ["2024-10-09", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114599159?v=4", - "login": "NumlStudentSE", - "url": "https://github.com/NumlStudentSE", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/470", - "https://github.com/vishanurag/Canvas-Editor/pull/933", - "https://github.com/recodehive/awesome-github-profiles/pull/1149", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/716" - ], - "pr_dates": ["2024-10-21", "2024-10-25", "2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86615124?u=83e58f34ba43628e68fb8144bf8499a6faff525a&v=4", - "login": "VaibhavKatariya", - "url": "https://github.com/VaibhavKatariya", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/105", - "https://github.com/Vin205/Enyanjyoti/pull/101" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123423315?u=ea274d1f725c1961f0184e19542be1bdcbb6cdb2&v=4", - "login": "Ajdecoder", - "url": "https://github.com/Ajdecoder", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/102", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/105" - ], - "pr_dates": ["2024-10-06", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122773178?u=4b5bae0567f07f398559574d8eb5eb2eff021ec1&v=4", - "login": "Raj-banerjee25", - "url": "https://github.com/Raj-banerjee25", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/817", - "https://github.com/vishanurag/Canvas-Editor/pull/1043", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/927", - "https://github.com/recodehive/awesome-github-profiles/pull/1125" - ], - "pr_dates": ["2024-10-26", "2024-10-27", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184142687?v=4", - "login": "shauryaq05", - "url": "https://github.com/shauryaq05", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/389", - "https://github.com/ayush-that/FinVeda/pull/1691", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1139", - "https://github.com/ayerhssb/Appointment-booking-app/pull/60", - "https://github.com/tanishaness/SPROCTOR/pull/51" - ], - "pr_dates": ["2024-10-16", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93949960?u=df8cca9cfea01f89d4d16272618014d317445db1&v=4", - "login": "Arnab7456", - "url": "https://github.com/Arnab7456", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/133", - "https://github.com/param-code/counter-app/pull/73", - "https://github.com/samyakmaitre/eventmint/pull/102", - "https://github.com/soham0005/ElectroKart/pull/90" - ], - "pr_dates": ["2024-10-05", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165581871?u=ceebe9651a77166b72225679755c89442cdd2a09&v=4", - "login": "rishika105", - "url": "https://github.com/rishika105", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/793", - "https://github.com/recodehive/awesome-github-profiles/pull/1179", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/637", - "https://github.com/apu52/Travel_Website/pull/1536" - ], - "pr_dates": ["2024-10-11", "2024-10-20", "2024-10-28", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176419513?u=b54139db0715245f55fdbb28ccfb1267d4a384b4&v=4", - "login": "richa-k23", - "url": "https://github.com/richa-k23", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/436", - "https://github.com/dohinaf/basic-icecream-website/pull/471", - "https://github.com/dohinaf/basic-icecream-website/pull/184", - "https://github.com/iamrahulmahato/master-web-development/pull/1357" - ], - "pr_dates": ["2024-10-04", "2024-10-06", "2024-10-11", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65664667?u=eef6aeb18548d404e1aee34093f54badce9d18fa&v=4", - "login": "PYIArun", - "url": "https://github.com/PYIArun", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/41", - "https://github.com/GarimaSingh0109/WasteManagment/pull/10", - "https://github.com/Open-Code-Crafters/FitFlex/pull/19", - "https://github.com/kom-senapati/bot-verse/pull/71", - "https://github.com/kom-senapati/bot-verse/pull/13" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153616705?v=4", - "login": "RaviP9973", - "url": "https://github.com/RaviP9973", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/344", - "https://github.com/apu52/Travel_Website/pull/1590" - ], - "pr_dates": ["2024-10-20", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156528626?u=f9f4299c0b602cc18b977fce75c0f5da53274c13&v=4", - "login": "Deeptig9138", - "url": "https://github.com/Deeptig9138", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/9", - "https://github.com/mdazfar2/Ezyshop/pull/17", - "https://github.com/AlgoGenesis/C/pull/61", - "https://github.com/AlgoGenesis/C/pull/25" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145896527?v=4", - "login": "Pragati1466", - "url": "https://github.com/Pragati1466", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2572", - "https://github.com/ayush-that/FinVeda/pull/2554", - "https://github.com/ayush-that/FinVeda/pull/1999", - "https://github.com/ayush-that/FinVeda/pull/1555" - ], - "pr_dates": ["2024-10-19", "2024-10-24", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100368589?u=59599d05238345f2ed7f955a952830f174dc1a06&v=4", - "login": "Sachin2815", - "url": "https://github.com/Sachin2815", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/327", - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/16" - ], - "pr_dates": ["2024-10-03", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138502362?u=695dbc242995cb684ca0ec3909fda6b24f5d3e3c&v=4", - "login": "vijaychandra1910", - "url": "https://github.com/vijaychandra1910", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/265", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/593", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/501", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/354", - "https://github.com/recodehive/awesome-github-profiles/pull/618" - ], - "pr_dates": [ - "2024-10-05", - "2024-10-06", - "2024-10-10", - "2024-10-13", - "2024-10-15" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133033353?v=4", - "login": "Siddhant432", - "url": "https://github.com/Siddhant432", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/437", - "https://github.com/tushargupta1504/Medical-Website/pull/50" - ], - "pr_dates": ["2024-10-02", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/39555517?u=f2a2e3a9b95e493259b6288aff18a516d8001b90&v=4", - "login": "VRtheKing", - "url": "https://github.com/VRtheKing", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/214", - "https://github.com/jahnvisahni31/DesignDeck/pull/201", - "https://github.com/jahnvisahni31/DesignDeck/pull/144", - "https://github.com/jahnvisahni31/DesignDeck/pull/127" - ], - "pr_dates": ["2024-10-15", "2024-10-16", "2024-10-25", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156535853?u=bafa10ecbf7b1cf8daa07403cc52be67247bf431&v=4", - "login": "Navneetdadhich", - "url": "https://github.com/Navneetdadhich", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/72", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/85", - "https://github.com/TejasNasre/nexmeet/pull/30", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/325" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-06", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128227743?u=d2aa1116e4a7b792c24e32d8c6bebc55113ee9f2&v=4", - "login": "RilAbbSnehaM", - "url": "https://github.com/RilAbbSnehaM", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jiggy9/JCT/pull/47", - "https://github.com/Jiggy9/JCT/pull/15" - ], - "pr_dates": ["2024-10-07", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139773759?v=4", - "login": "Karm-Dave", - "url": "https://github.com/Karm-Dave", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/606", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/604", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/556", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/497" - ], - "pr_dates": ["2024-10-21", "2024-10-24", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97835955?u=5f6fd0d980c6406601c5e0840689e8ab5c77b67c&v=4", - "login": "bj-jiwrajka", - "url": "https://github.com/bj-jiwrajka", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/kartikayasijaa/talk-trove/pull/69", - "https://github.com/kartikayasijaa/talk-trove/pull/63", - "https://github.com/Luson045/medi-connect/pull/304", - "https://github.com/Luson045/medi-connect/pull/298" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-10"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130696335?u=aef5df850687891d36fcfffcf791ffedaed332fe&v=4", - "login": "TanushreeBorase", - "url": "https://github.com/TanushreeBorase", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1149", - "https://github.com/iamrahulmahato/master-web-development/pull/75" - ], - "pr_dates": ["2024-10-01", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147691266?v=4", - "login": "lkksharma", - "url": "https://github.com/lkksharma", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/144", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/54", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/398", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/394" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136772607?u=04fb6560ab833b3c96928ff34e31763bffdd4fe6&v=4", - "login": "RishavKumarSinha", - "url": "https://github.com/RishavKumarSinha", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/andoriyaprashant/OpSo/pull/327", - "https://github.com/andoriyaprashant/OpSo/pull/320" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142469729?v=4", - "login": "TanviGandhotra", - "url": "https://github.com/TanviGandhotra", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1196", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/349" - ], - "pr_dates": ["2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70109255?u=11e5441d5bc19f8d515a4c6185ce2bc0663b3a82&v=4", - "login": "Mujtabaa07", - "url": "https://github.com/Mujtabaa07", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/samyakmaitre/eventmint/pull/72", - "https://github.com/samyakmaitre/eventmint/pull/41" - ], - "pr_dates": ["2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168055039?u=90912b4a769dab5cd92684a92c71abc6c7e7637e&v=4", - "login": "tanvi0909", - "url": "https://github.com/tanvi0909", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/Stackoverflow-Analysis/pull/437", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/436", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/429", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/428" - ], - "pr_dates": ["2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123398386?u=8149917ff73d8bf97f896d39b1e7ff120195a23e&v=4", - "login": "Dharun235", - "url": "https://github.com/Dharun235", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tanishaness/SPROCTOR/pull/75", - "https://github.com/UTSAVS26/PyVerse/pull/900" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118070626?u=0d190d20997417957fa6e364fcd1c3433a07c60f&v=4", - "login": "PeroxideParadox", - "url": "https://github.com/PeroxideParadox", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/76", - "https://github.com/UTSAVS26/PySnippets/pull/57", - "https://github.com/UTSAVS26/PyVerse/pull/676", - "https://github.com/UTSAVS26/PyVerse/pull/483" - ], - "pr_dates": ["2024-10-08", "2024-10-11", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91556756?u=dd595173902877b852c4f3fa820d7a3bf2b66590&v=4", - "login": "OINDIL", - "url": "https://github.com/OINDIL", - "score": 55, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Scribbie-Notes/notes-app/pull/133", - "https://github.com/Scribbie-Notes/notes-app/pull/74", - "https://github.com/Scribbie-Notes/notes-app/pull/65", - "https://github.com/Scribbie-Notes/notes-app/pull/34" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118583676?u=a6826c3000c75645c0c658c42c8a09e508167786&v=4", - "login": "smrutiranjanbhuyan", - "url": "https://github.com/smrutiranjanbhuyan", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/BlogLog/pull/22", - "https://github.com/AlfiyaSiddique/TastyTrails/pull/60" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116761608?u=aae79009da17bd8873cafa97509342db9c96e901&v=4", - "login": "anwesha2002", - "url": "https://github.com/anwesha2002", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1106", - "https://github.com/aditya-bhaumik/Pathsphere/pull/881" - ], - "pr_dates": ["2024-10-20", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163543210?v=4", - "login": "Sayali-740", - "url": "https://github.com/Sayali-740", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/705", - "https://github.com/aditya-bhaumik/Pathsphere/pull/687" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153702729?u=f7eea296df518987ff3eb1cd25ee6da759de7d20&v=4", - "login": "PradeepFSTdhane123", - "url": "https://github.com/PradeepFSTdhane123", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1674", - "https://github.com/ajay-dhangar/algo/pull/1206", - "https://github.com/ajay-dhangar/algo/pull/1170", - "https://github.com/ajay-dhangar/algo/pull/1168", - "https://github.com/UTSAVS26/PyVerse/pull/818" - ], - "pr_dates": ["2024-10-22", "2024-10-23", "2024-10-24", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164558135?u=e15da70ea031651f102be497e5235b64f3efc822&v=4", - "login": "Soumya03007", - "url": "https://github.com/Soumya03007", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/153", - "https://github.com/ajay-dhangar/algo/pull/142" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71096605?u=9e6b6113a67318e79abf216a03e1cafb3274adcd&v=4", - "login": "IRFANSARI", - "url": "https://github.com/IRFANSARI", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/101", - "https://github.com/ajay-dhangar/algo/pull/49" - ], - "pr_dates": ["2024-10-04", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114222308?u=8574bba92069bff0d1ee78b0b0e6b361905f5d36&v=4", - "login": "sairampolisetty", - "url": "https://github.com/sairampolisetty", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/89", - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/67" - ], - "pr_dates": ["2024-10-04", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168258223?v=4", - "login": "ayushrana83", - "url": "https://github.com/ayushrana83", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/71", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/63" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78400704?u=21e8b9d0d92bed1ffe1c3c453bc29c240ef76da1&v=4", - "login": "rahulgithub-web", - "url": "https://github.com/rahulgithub-web", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/46", - "https://github.com/yatulearn/yatulearn/pull/235", - "https://github.com/yatulearn/yatulearn/pull/196", - "https://github.com/Anjaliavv51/Retro/pull/122", - "https://github.com/Anjaliavv51/Retro/pull/121", - "https://github.com/Anjaliavv51/Retro/pull/87" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150465879?u=d612ab997a4d03e7e397a0441c2a25825e2b6069&v=4", - "login": "byteom", - "url": "https://github.com/byteom", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/714", - "https://github.com/ankit071105/Ticket-Booking/pull/710", - "https://github.com/ankit071105/Ticket-Booking/pull/700", - "https://github.com/ankit071105/Ticket-Booking/pull/618", - "https://github.com/ankit071105/Ticket-Booking/pull/608" - ], - "pr_dates": ["2024-10-24", "2024-10-25", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160593251?u=5033ce784a6b276f9d5bfc1e1bfd16dcaa617513&v=4", - "login": "Samuel-0316", - "url": "https://github.com/Samuel-0316", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/440", - "https://github.com/ankit071105/Ticket-Booking/pull/436" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157324153?u=61dd3e702b9750d4a7d04857b2b0ac5b5477c749&v=4", - "login": "Ayushchandra416", - "url": "https://github.com/Ayushchandra416", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/210", - "https://github.com/iamrahulmahato/master-web-development/pull/63" - ], - "pr_dates": ["2024-10-01", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149526937?u=89e08c467ce57d3e7769fda22e52ca5e4597da32&v=4", - "login": "Vd7905", - "url": "https://github.com/Vd7905", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/508", - "https://github.com/Anjaliavv51/Retro/pull/76" - ], - "pr_dates": ["2024-10-02", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164533685?v=4", - "login": "reshamsai150", - "url": "https://github.com/reshamsai150", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/151", - "https://github.com/anuragverma108/SwapReads/pull/3071", - "https://github.com/anuragverma108/SwapReads/pull/3070", - "https://github.com/Luson045/medi-connect/pull/76", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/359" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-07", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135571770?u=e18cf37d289dc40ac486b0d2f91580ae3e5ab460&v=4", - "login": "Mohd-FaiZ-Jr", - "url": "https://github.com/Mohd-FaiZ-Jr", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3405", - "https://github.com/PriyaGhosal/BuddyTrail/pull/998" - ], - "pr_dates": ["2024-10-13", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147741415?u=65d2a7fa4c549b9a15f13c81eb1bb57e11c5cdef&v=4", - "login": "solanki03", - "url": "https://github.com/solanki03", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2987", - "https://github.com/iamrahulmahato/master-web-development/pull/272" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183373949?v=4", - "login": "Shalini22-ui", - "url": "https://github.com/Shalini22-ui", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/398", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/347" - ], - "pr_dates": ["2024-10-19", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139262612?v=4", - "login": "call-meRavi-SHORT-CODE", - "url": "https://github.com/call-meRavi-SHORT-CODE", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/358", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/329" - ], - "pr_dates": ["2024-10-18", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67545586?u=2a26ca8e0cb25595943304878ec7cd579d90a64a&v=4", - "login": "omkarmakar", - "url": "https://github.com/omkarmakar", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/353", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/273" - ], - "pr_dates": ["2024-10-16", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105419506?v=4", - "login": "Shaistaattar42", - "url": "https://github.com/Shaistaattar42", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/220", - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/211" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152031628?u=500f4f2af74d81d8a45b4fb761f71708a21d0e5f&v=4", - "login": "parshvi1508", - "url": "https://github.com/parshvi1508", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/Jarvis/pull/202", - "https://github.com/Avdhesh-Varshney/Jarvis/pull/122" - ], - "pr_dates": ["2024-10-03", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115392574?u=ab975df4c6b271b66d886f4ec4a7308feae23846&v=4", - "login": "aashutosh148", - "url": "https://github.com/aashutosh148", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Avdhesh-Varshney/WebMasterLog/pull/912"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183457106?v=4", - "login": "khwa04", - "url": "https://github.com/khwa04", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1216", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/412", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/110", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/399", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/561" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145453119?u=894994213f1d57f1f3ac191ff6299ad381460c8f&v=4", - "login": "Arshia-163", - "url": "https://github.com/Arshia-163", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1044", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/1017" - ], - "pr_dates": ["2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105520366?u=99815402bcd3f97a59c4a5aa01772ea042065fcc&v=4", - "login": "Khushalsarode", - "url": "https://github.com/Khushalsarode", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/184", - "https://github.com/rahulsainlll/git-trace/pull/55" - ], - "pr_dates": ["2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156942206?u=3cf3a5f47bea484c93c685ef70cfb0815e1cf894&v=4", - "login": "Piyushsahu99", - "url": "https://github.com/Piyushsahu99", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/112", - "https://github.com/GarimaSingh0109/WasteManagment/pull/111", - "https://github.com/GarimaSingh0109/WasteManagment/pull/110", - "https://github.com/GarimaSingh0109/WasteManagment/pull/108", - "https://github.com/GarimaSingh0109/WasteManagment/pull/107" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75948652?v=4", - "login": "ak-0404", - "url": "https://github.com/ak-0404", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/61", - "https://github.com/recodehive/machine-learning-repos/pull/1330" - ], - "pr_dates": ["2024-10-02", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141256334?u=d1e81818122d0a535a4a3430fab75704332e5002&v=4", - "login": "ROHAN7051", - "url": "https://github.com/ROHAN7051", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/105", - "https://github.com/iamrahulmahato/master-web-development/pull/317" - ], - "pr_dates": ["2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156236945?v=4", - "login": "Shy029", - "url": "https://github.com/Shy029", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/682", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/661", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/532", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/424", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/352" - ], - "pr_dates": [ - "2024-10-14", - "2024-10-18", - "2024-10-22", - "2024-10-29", - "2024-10-30" - ], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91681619?u=ca584cb67c53dde92b24ed0f39deaca9e7ecb689&v=4", - "login": "ShreyasSN", - "url": "https://github.com/ShreyasSN", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/635", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/628", - "https://github.com/recodehive/machine-learning-repos/pull/1382" - ], - "pr_dates": ["2024-10-11", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170247405?u=d9e66cd7f8ff0e34d25493a6fe199dc9269b85c2&v=4", - "login": "arhaanarif", - "url": "https://github.com/arhaanarif", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/109", - "https://github.com/UTSAVS26/PyVerse/pull/156" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184121787?v=4", - "login": "Janmejai24", - "url": "https://github.com/Janmejai24", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/442", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1005", - "https://github.com/PriyaGhosal/BuddyTrail/pull/888", - "https://github.com/PriyaGhosal/BuddyTrail/pull/828", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/557" - ], - "pr_dates": ["2024-10-13", "2024-10-16", "2024-10-17", "2024-10-18"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113241137?u=c7e3a3b187a83a0649406e6d9087dfa4b52d7d7b&v=4", - "login": "Manishkr1007", - "url": "https://github.com/Manishkr1007", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Manishkr1007/WordWeaver/pull/84", - "https://github.com/Manishkr1007/WordWeaver/pull/56" - ], - "pr_dates": ["2024-10-12", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92082181?v=4", - "login": "Dhruv7055", - "url": "https://github.com/Dhruv7055", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/972", - "https://github.com/mansiruhil13/Bobble-AI/pull/887", - "https://github.com/mansiruhil13/Bobble-AI/pull/805", - "https://github.com/mansiruhil13/Bobble-AI/pull/719", - "https://github.com/mansiruhil13/Bobble-AI/pull/638", - "https://github.com/Anjaliavv51/Retro/pull/129" - ], - "pr_dates": [ - "2024-10-03", - "2024-10-12", - "2024-10-14", - "2024-10-15", - "2024-10-17", - "2024-10-19" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180007541?u=04fbcee3d519a395f34ff34b757b09987ace88d8&v=4", - "login": "DeekshaVarshney123", - "url": "https://github.com/DeekshaVarshney123", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/851", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/681" - ], - "pr_dates": ["2024-10-16", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107213582?u=2633af56a243cefadf69ef9829ca2771caff7b4b&v=4", - "login": "Kaif9999", - "url": "https://github.com/Kaif9999", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Megh2005/Med-o-Next/pull/49", - "https://github.com/Megh2005/Med-o-Next/pull/47" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164530944?u=02589f6f618721494da67f27989adb5262787747&v=4", - "login": "sv410", - "url": "https://github.com/sv410", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/387", - "https://github.com/Anjaliavv51/Retro/pull/386", - "https://github.com/Anjaliavv51/Retro/pull/385", - "https://github.com/Anjaliavv51/Retro/pull/363", - "https://github.com/iamrahulmahato/master-web-development/pull/886" - ], - "pr_dates": ["2024-10-08", "2024-10-09"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122329300?u=6586f4869864cd0c0c35130d9c9b1b1f8a70ddab&v=4", - "login": "MahraibFatima", - "url": "https://github.com/MahraibFatima", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/486", - "https://github.com/recodehive/machine-learning-repos/pull/1316" - ], - "pr_dates": ["2024-10-09", "2024-10-10"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163833888?v=4", - "login": "sumankr15", - "url": "https://github.com/sumankr15", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/231", - "https://github.com/AlgoGenesis/C/pull/78" - ], - "pr_dates": ["2024-10-02", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143835467?v=4", - "login": "prishsha", - "url": "https://github.com/prishsha", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamparas0/TIC-TAC-TOE/pull/43", - "https://github.com/07sumit1002/CabRental/pull/235" - ], - "pr_dates": ["2024-10-04", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96869754?u=5877a2ec6a5ae099f4e7f988bfb1485319312225&v=4", - "login": "Rahilsamani", - "url": "https://github.com/Rahilsamani", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1840", - "https://github.com/recodehive/awesome-github-profiles/pull/1122", - "https://github.com/recodehive/awesome-github-profiles/pull/928", - "https://github.com/recodehive/awesome-github-profiles/pull/768", - "https://github.com/recodehive/awesome-github-profiles/pull/566" - ], - "pr_dates": ["2024-10-03", "2024-10-12", "2024-10-18", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163538829?u=64225bec72f198b0189e508abe38ffce9eaf718b&v=4", - "login": "re-sha", - "url": "https://github.com/re-sha", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/643", - "https://github.com/recodehive/awesome-github-profiles/pull/614", - "https://github.com/recodehive/awesome-github-profiles/pull/610", - "https://github.com/recodehive/awesome-github-profiles/pull/593", - "https://github.com/recodehive/awesome-github-profiles/pull/591" - ], - "pr_dates": ["2024-10-05", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117302134?u=b9105f194d6db1561338a6b39def772175ecaca8&v=4", - "login": "Kruthik111", - "url": "https://github.com/Kruthik111", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/shivamyadavrgipt/Social_media_management/pull/170", - "https://github.com/shivamyadavrgipt/Social_media_management/pull/160" - ], - "pr_dates": ["2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149723236?v=4", - "login": "jency1", - "url": "https://github.com/jency1", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/176", - "https://github.com/multiverseweb/Dataverse/pull/161", - "https://github.com/multiverseweb/Dataverse/pull/159", - "https://github.com/multiverseweb/Dataverse/pull/134", - "https://github.com/multiverseweb/Dataverse/pull/129" - ], - "pr_dates": ["2024-10-13", "2024-10-16", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131242049?u=0b33784b82578e5a831a95c59d963b620aefa0ec&v=4", - "login": "ankurrrrr7", - "url": "https://github.com/ankurrrrr7", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/CodeIt/pull/33", - "https://github.com/multiverseweb/CodeIt/pull/12" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143053261?v=4", - "login": "00Himnshi", - "url": "https://github.com/00Himnshi", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/239", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/183" - ], - "pr_dates": ["2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/54212357?u=7a9bd5d5b5736be7fbefe19eb3d971a5fb4ada6a&v=4", - "login": "RushilJalal", - "url": "https://github.com/RushilJalal", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vanshchauhan21/CryptoTracker/pull/68", - "https://github.com/vanshchauhan21/CryptoTracker/pull/49" - ], - "pr_dates": ["2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111981100?u=85dbc3cef132ecea82e31e11e7802da55a168c37&v=4", - "login": "kash-1007", - "url": "https://github.com/kash-1007", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1256", - "https://github.com/sanjay-kv/Open-source-Practice/pull/30" - ], - "pr_dates": ["2024-05-10", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146866979?u=304cb73e7fbc9fe1755226fa18747de47d5d529c&v=4", - "login": "riyaarora954", - "url": "https://github.com/riyaarora954", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1149", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1148" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117969165?u=71f23a6f8e162f9df2d248ad0754c7f39e522def&v=4", - "login": "Ojha8421", - "url": "https://github.com/Ojha8421", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1137", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1136" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110612588?u=13353dc4de3ef290ae5a766e966ca829f7130382&v=4", - "login": "SaiKumar297", - "url": "https://github.com/SaiKumar297", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/747", - "https://github.com/sanjay-kv/Open-source-Practice/pull/634" - ], - "pr_dates": ["2024-05-11", "2024-05-12"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107876888?u=d7de9ce99e4dfc1ace966f11e05f9d402f4980ca&v=4", - "login": "Sammandy", - "url": "https://github.com/Sammandy", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/445", - "https://github.com/sanjay-kv/Open-source-Practice/pull/440" - ], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100270122?v=4", - "login": "Chelsea67jain", - "url": "https://github.com/Chelsea67jain", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/380", - "https://github.com/sanjay-kv/Open-source-Practice/pull/374" - ], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100013000?u=d3df52048312a4f5c59cda1f5ea88e979c543880&v=4", - "login": "ascoder1109", - "url": "https://github.com/ascoder1109", - "score": 50, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/117"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154724111?u=ac9ddb940497278a7836d03cd2241d002e182ed3&v=4", - "login": "pani2004", - "url": "https://github.com/pani2004", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/97", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/475", - "https://github.com/Scribbie-Notes/notes-app/pull/231" - ], - "pr_dates": ["2024-10-13", "2024-10-19", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/57945895?v=4", - "login": "TalupulaSahithi", - "url": "https://github.com/TalupulaSahithi", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajaynegi45/LibraryMan-API/pull/63"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78447254?u=76bedb2b5f6f5163c0d8837bec79703549c5bb21&v=4", - "login": "GeorgiosDrivas", - "url": "https://github.com/GeorgiosDrivas", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/35" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113302312?u=32036582ae0a821f2c7b1af1537d0b70afd31ff4&v=4", - "login": "userAdityaa", - "url": "https://github.com/userAdityaa", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/107", - "https://github.com/VesperAkshay/qr-code-generator/pull/94", - "https://github.com/Scribbie-Notes/notes-app/pull/104" - ], - "pr_dates": ["2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133044967?u=db269d317c3bcb44b78ca10f6006f39d7367760c&v=4", - "login": "varunvaatsalya", - "url": "https://github.com/varunvaatsalya", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/82", - "https://github.com/VesperAkshay/qr-code-generator/pull/58" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90570571?v=4", - "login": "k3uual", - "url": "https://github.com/k3uual", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/382"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138480884?u=80306825a51a9cf726907e75fa48f9bd9dc032a8&v=4", - "login": "saumy-sh", - "url": "https://github.com/saumy-sh", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/221"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96511418?u=68a0c1c43b18054d71cb4e73e55b4599ee613107&v=4", - "login": "Bruhbytes", - "url": "https://github.com/Bruhbytes", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ChandelAnish/fusionFLOW/pull/109"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121537484?u=46f804e31d07795d6d20f981c742e914fa4b0a43&v=4", - "login": "vaishnavirajj", - "url": "https://github.com/vaishnavirajj", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/765", - "https://github.com/ankit071105/Ticket-Booking/pull/706", - "https://github.com/ankit071105/Ticket-Booking/pull/634" - ], - "pr_dates": ["2024-10-25", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134498717?u=57f0cd9130e84bcb235793e29b22e306e8de49b5&v=4", - "login": "sameer-soni", - "url": "https://github.com/sameer-soni", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anmode/grabtern-frontend/pull/888", - "https://github.com/Luson045/medi-connect/pull/376", - "https://github.com/Yashgabani845/hiring-portal/pull/113" - ], - "pr_dates": ["2024-10-10", "2024-10-11"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76678763?u=5106feae1123700280efb1536dc426cbe65fe7a3&v=4", - "login": "ApoorvaSunkad", - "url": "https://github.com/ApoorvaSunkad", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1396", - "https://github.com/ayush-that/FinVeda/pull/1146", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/761" - ], - "pr_dates": ["2024-10-13", "2024-10-19", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/39260099?u=d08d465d4032c171905253835e0d68fd64857235&v=4", - "login": "vamsi4845", - "url": "https://github.com/vamsi4845", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1367", - "https://github.com/ANSHIKA-26/WordWise/pull/1358", - "https://github.com/TenzDelek/DearDiary/pull/176" - ], - "pr_dates": ["2024-10-24", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149897710?v=4", - "login": "Nivesh2003", - "url": "https://github.com/Nivesh2003", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/877", - "https://github.com/ANSHIKA-26/WordWise/pull/757", - "https://github.com/apu52/Travel_Website/pull/1537" - ], - "pr_dates": ["2024-10-11", "2024-10-13", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139266320?u=31f19bb24ccbfe54c76203a8186a96d78067800e&v=4", - "login": "UTkARsh-RaJ01", - "url": "https://github.com/UTkARsh-RaJ01", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/747"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163301165?v=4", - "login": "Priyanshi231", - "url": "https://github.com/Priyanshi231", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/252", - "https://github.com/ANSHIKA-26/WordWise/pull/211", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/128" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96127802?u=d76c402ac9f4d7d7b431adb18e7d27247f41f1c4&v=4", - "login": "ysachin438", - "url": "https://github.com/ysachin438", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Ramsey99/Admin_Dashboard/pull/26"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70049779?u=cb7382ef35581b55ddfb5d1efbd2a3dad2377422&v=4", - "login": "SubramanyaKS", - "url": "https://github.com/SubramanyaKS", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3735", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1182", - "https://github.com/PriyaGhosal/BuddyTrail/pull/941" - ], - "pr_dates": ["2024-10-18", "2024-10-19", "2024-10-20"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105859390?v=4", - "login": "vivek1842", - "url": "https://github.com/vivek1842", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3497", - "https://github.com/iamrahulmahato/master-web-development/pull/830", - "https://github.com/samyakmaitre/eventmint/pull/191" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124437912?u=eace31244fcc911b41f0316a3ccaae90b89a1964&v=4", - "login": "pankajsaini1", - "url": "https://github.com/pankajsaini1", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3262", - "https://github.com/anuragverma108/SwapReads/pull/3248", - "https://github.com/anuragverma108/SwapReads/pull/2938" - ], - "pr_dates": ["2024-10-04", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125717362?u=e78638bdcce54f48b21a27dad0de81f50552c566&v=4", - "login": "Saketh1714", - "url": "https://github.com/Saketh1714", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/794", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/320", - "https://github.com/sanjay-kv/Open-source-Practice/pull/637" - ], - "pr_dates": ["2024-05-11", "2024-10-20", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166616458?u=c856cfe99292288a7607a893f5cf753aa671708b&v=4", - "login": "ishicodz", - "url": "https://github.com/ishicodz", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/608", - "https://github.com/UTSAVS26/PyVerse/pull/803", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1128" - ], - "pr_dates": ["2024-10-09", "2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/62787510?v=4", - "login": "Sagar2006", - "url": "https://github.com/Sagar2006", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/31"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143503289?u=26559db9d93cad3dcf760912bc28da00b6091214&v=4", - "login": "ayushbhjh", - "url": "https://github.com/ayushbhjh", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/208", - "https://github.com/Code-Social/official-website/pull/206", - "https://github.com/samyakmaitre/eventmint/pull/121" - ], - "pr_dates": ["2024-10-08", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85238910?u=e90dd863d955ef068ac28797dd48f7f2fccd3db3&v=4", - "login": "psr-codes", - "url": "https://github.com/psr-codes", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Code-Social/official-website/pull/172"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118039653?u=39bb4caf249ae186ee57be9a5f1d423c4e2096d9&v=4", - "login": "theomkardeshpande", - "url": "https://github.com/theomkardeshpande", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/40", - "https://github.com/tanishaness/SPROCTOR/pull/16", - "https://github.com/tanishaness/SPROCTOR/pull/7" - ], - "pr_dates": ["2024-10-03", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86219502?v=4", - "login": "mohit-2003", - "url": "https://github.com/mohit-2003", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryainguz/picwise.co/pull/18", - "https://github.com/Aryainguz/picwise.co/pull/10", - "https://github.com/BamaCharanChhandogi/READMEasy/pull/23" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/55939700?v=4", - "login": "ansulagrawal", - "url": "https://github.com/ansulagrawal", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/255"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99238677?u=4d80f7d3882be9ac039f4c73da90c59962b6b435&v=4", - "login": "MeetThakur", - "url": "https://github.com/MeetThakur", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/249"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145285088?v=4", - "login": "Anushaburnwal", - "url": "https://github.com/Anushaburnwal", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/247"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178184249?u=cc12b4eccd49f607e090638aa3b1d749959ef81e&v=4", - "login": "Brijeshthummar02", - "url": "https://github.com/Brijeshthummar02", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/244"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184803115?v=4", - "login": "Kanishka217", - "url": "https://github.com/Kanishka217", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/236"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152001933?u=18507267a1c3b39506f05ee53d65a8882e5ce6c2&v=4", - "login": "AjayAchugatla", - "url": "https://github.com/AjayAchugatla", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/235"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91129857?u=34c508d88a8c5f62b02b5022716b436cdb45eb99&v=4", - "login": "himanshupandey21", - "url": "https://github.com/himanshupandey21", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/234"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139585700?v=4", - "login": "anant-jain01", - "url": "https://github.com/anant-jain01", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/233"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81615820?u=0c8748277997b201278944956617c7d001e22d6d&v=4", - "login": "shrutipandey21", - "url": "https://github.com/shrutipandey21", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/230"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89240686?u=dcc50eb8b72d369fda7b03f5dd670ad7419d4d79&v=4", - "login": "hazraChandrima", - "url": "https://github.com/hazraChandrima", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/225"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103892726?u=90f5ae4961bcae175b65d5691903524b931aff3c&v=4", - "login": "RohithNair27", - "url": "https://github.com/RohithNair27", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/219"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143682367?u=2db2d9d88ba0bbbce9c8fea0a303f87e090e4c9c&v=4", - "login": "Chakridhar2555", - "url": "https://github.com/Chakridhar2555", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/217"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151964309?v=4", - "login": "harshendram", - "url": "https://github.com/harshendram", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/213"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116670097?u=8a4ea3690b76c54f781458face4651d61c4c9073&v=4", - "login": "minji105", - "url": "https://github.com/minji105", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/210"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71664201?u=df9018dd639a0d894948e56b4337a6a5fee9356e&v=4", - "login": "tirdesh", - "url": "https://github.com/tirdesh", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/209"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150299045?u=69b7845c9040bfeaaf1b0c18999432a4de727c05&v=4", - "login": "haylemon", - "url": "https://github.com/haylemon", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/203"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138674254?v=4", - "login": "Thrupthi-shekar", - "url": "https://github.com/Thrupthi-shekar", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/201"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103013781?u=2d1db334f05ac0f5f5724b0a34b4b48f5d5680ff&v=4", - "login": "ritikm31", - "url": "https://github.com/ritikm31", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/285", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/453", - "https://github.com/smilewithkhushi/BasicNative/pull/112" - ], - "pr_dates": ["2024-10-05", "2024-10-21", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183572254?v=4", - "login": "from13", - "url": "https://github.com/from13", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/92" - ], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/35198092?v=4", - "login": "payo101", - "url": "https://github.com/payo101", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Avdhesh-Varshney/Jarvis/pull/120"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111382344?v=4", - "login": "Pheonixrog", - "url": "https://github.com/Pheonixrog", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1981", - "https://github.com/ayush-that/FinVeda/pull/1956", - "https://github.com/ayush-that/FinVeda/pull/1936" - ], - "pr_dates": ["2024-10-23", "2024-10-24"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142688980?u=9b30ad46447239a6001641c4c7a7cdbbba5f0b14&v=4", - "login": "anshxika", - "url": "https://github.com/anshxika", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1341", - "https://github.com/ayush-that/FinVeda/pull/1207", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/700", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/661" - ], - "pr_dates": ["2024-10-14", "2024-10-16", "2024-10-25", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144883228?v=4", - "login": "Kritika745", - "url": "https://github.com/Kritika745", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1287", - "https://github.com/ayush-that/FinVeda/pull/1161", - "https://github.com/Anjaliavv51/Retro/pull/511" - ], - "pr_dates": ["2024-10-13", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147643369?v=4", - "login": "arpit74170", - "url": "https://github.com/arpit74170", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1070", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/44", - "https://github.com/subhadipbhowmik/bio-branch/pull/92" - ], - "pr_dates": ["2024-10-06", "2024-10-07", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145793855?u=795c09d423b5f9aae5365cfe57c2a5d889ca403a&v=4", - "login": "Omansh-Sharma1", - "url": "https://github.com/Omansh-Sharma1", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1038"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155032817?u=0211c044b33ba7357ccd06a0760f6c78c9d899fd&v=4", - "login": "KrHimanshu18", - "url": "https://github.com/KrHimanshu18", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/512", - "https://github.com/mdazfar2/Ezyshop/pull/508", - "https://github.com/mdazfar2/Ezyshop/pull/505" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144323526?v=4", - "login": "Anshikapal05", - "url": "https://github.com/Anshikapal05", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/691" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122116408?u=1288642558131f389ab428c818bfe74b7cbbecb5&v=4", - "login": "satyamra1", - "url": "https://github.com/satyamra1", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/619", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/619", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/552" - ], - "pr_dates": ["2024-10-13", "2024-10-14", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132131308?v=4", - "login": "satyam1024", - "url": "https://github.com/satyam1024", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/42", - "https://github.com/dohinaf/basic-icecream-website/pull/67", - "https://github.com/GarimaSingh0109/WasteManagment/pull/12" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65132434?u=626f884d4b8a1a9c7fcf546c6614ad9986f45edc&v=4", - "login": "vaishnavieieie", - "url": "https://github.com/vaishnavieieie", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/my-calendar-app/pull/23"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143368698?v=4", - "login": "abhivyakti2", - "url": "https://github.com/abhivyakti2", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/741", - "https://github.com/SurajPratap10/Imagine_AI/pull/1281", - "https://github.com/SurajPratap10/Imagine_AI/pull/1252" - ], - "pr_dates": ["2024-10-15", "2024-10-18", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172935099?u=58090073bfa78ca98a0b20091a86fc729bb85f34&v=4", - "login": "Astro-Dude", - "url": "https://github.com/Astro-Dude", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/333"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/17496655?v=4", - "login": "aditya-singhhh", - "url": "https://github.com/aditya-singhhh", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/22"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178766687?v=4", - "login": "momithalasya", - "url": "https://github.com/momithalasya", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/617"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113714156?v=4", - "login": "angadnagar", - "url": "https://github.com/angadnagar", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/314", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/281", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/243" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109886908?u=da6160ce85f64c7c7f386cf5ee69bd4e98cc6b37&v=4", - "login": "wajaht-ali", - "url": "https://github.com/wajaht-ali", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/194", - "https://github.com/Anjaliavv51/Retro/pull/307", - "https://github.com/param-code/counter-app/pull/193" - ], - "pr_dates": ["2024-10-05", "2024-10-07", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156002273?v=4", - "login": "Sarthak1970", - "url": "https://github.com/Sarthak1970", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Harshdev098/Research-Nexas/pull/191"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142593396?v=4", - "login": "ganashree1612", - "url": "https://github.com/ganashree1612", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/11", - "https://github.com/Bitbox-Connect/Bitbox/pull/10", - "https://github.com/swarooppatilx/scruter/pull/54" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122508513?u=41848807546497bb2916fc23443b38e71ac52baa&v=4", - "login": "Upendra48", - "url": "https://github.com/Upendra48", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/30", - "https://github.com/prajapatihet/donorconnect/pull/21", - "https://github.com/AlgoGenesis/C/pull/108" - ], - "pr_dates": ["2024-10-02", "2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118164989?u=48ee1c16043eb883e1d7f4fe01d80447bef56122&v=4", - "login": "VAmanjain", - "url": "https://github.com/VAmanjain", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/64" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121730065?u=7812057f416e171d8d8e1584f9ce5af3a4bba83f&v=4", - "login": "mdrehan369", - "url": "https://github.com/mdrehan369", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/38" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137074724?u=611a03f0ea47e2fbb5e9f360d0a942ad07fe4452&v=4", - "login": "Ankesh-erek", - "url": "https://github.com/Ankesh-erek", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamkanhaiyakumar/ai-content-generator/pull/12", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/45", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/17" - ], - "pr_dates": ["2024-10-02", "2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159874487?u=a7644604531cfbddb6dbb6bb0154f9ffac9cf478&v=4", - "login": "NimraAslamkhan", - "url": "https://github.com/NimraAslamkhan", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1599", - "https://github.com/Kushal997-das/Project-Guidance/pull/1500", - "https://github.com/Kushal997-das/Project-Guidance/pull/1404" - ], - "pr_dates": ["2024-10-09", "2024-10-17", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104911801?u=ae2b1b8ae6caa4aa6cf2f8b6e2778d97462cdcc1&v=4", - "login": "aryanp-86", - "url": "https://github.com/aryanp-86", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/206"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128921226?u=e1494af2f509a5b166e9271e75614142ecbdb107&v=4", - "login": "TheAdich", - "url": "https://github.com/TheAdich", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/108"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123951725?u=efac3b0f36a9c785db47270421f757c3e4b9dcfa&v=4", - "login": "29deepanshutyagi", - "url": "https://github.com/29deepanshutyagi", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/61"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146699961?u=84d6511d0eeb211c4ec3d6b932925a094b7f156f&v=4", - "login": "SuperexMack", - "url": "https://github.com/SuperexMack", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/20"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141123453?u=67fc0c630297fe5332cba0c34c9c14fffa88ddce&v=4", - "login": "abishek1740P", - "url": "https://github.com/abishek1740P", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/73", - "https://github.com/param-code/counter-app/pull/11", - "https://github.com/subhadipbhowmik/bio-branch/pull/107" - ], - "pr_dates": ["2024-10-02", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163817101?u=b2a89146338acaca10f0fe70ccfde81fd5896029&v=4", - "login": "Parthmagdum", - "url": "https://github.com/Parthmagdum", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/239"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101037704?u=2bb9c7a7763eaccebbbbda1867b57f3ca34e19d8&v=4", - "login": "Dipu2552003", - "url": "https://github.com/Dipu2552003", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/52", - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/42", - "https://github.com/SurajPratap10/Imagine_AI/pull/1143" - ], - "pr_dates": ["2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119048084?u=bb1cb4cd60c8b784fe048a01c0701b3c54291d68&v=4", - "login": "OmkeshwarGupta", - "url": "https://github.com/OmkeshwarGupta", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/MinavKaria/Ratna-Supermarket/pull/143"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/73981465?u=f39d7420a19ebef5e27c96c89062291a88be6d34&v=4", - "login": "space-techy", - "url": "https://github.com/space-techy", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/MinavKaria/Ratna-Supermarket/pull/140"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138788842?u=9f6e2009dad952c053058788d55a1cf9591228f6&v=4", - "login": "vidhvath28", - "url": "https://github.com/vidhvath28", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/muruga21/LoadDistrix/pull/9"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117176537?u=10193055ee4dd1301aeaf28b1c6aa23b38068bd4&v=4", - "login": "Prathmesh-rajurkar", - "url": "https://github.com/Prathmesh-rajurkar", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ombhojane/explainableai/pull/19"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145523480?v=4", - "login": "krittika019", - "url": "https://github.com/krittika019", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/113"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138785949?u=95116f03fe84ea7b43fa5204cd448482387c9d57&v=4", - "login": "Rishav123raj", - "url": "https://github.com/Rishav123raj", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1305", - "https://github.com/AlgoGenesis/C/pull/1004", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/403" - ], - "pr_dates": ["2024-10-13", "2024-10-18", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143867566?u=8c179143404b3fa35f036a070696d60bee054b2b&v=4", - "login": "TheRaj71", - "url": "https://github.com/TheRaj71", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/iamparas0/TIC-TAC-TOE/pull/101"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/61325572?u=0a00037b15854f2b8d0eb04f1118b29131faf5ad&v=4", - "login": "partg952", - "url": "https://github.com/partg952", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PranavBarthwal/backend-generator-cli/pull/20", - "https://github.com/SanchitGeez/Investra/pull/44", - "https://github.com/SanchitGeez/Investra/pull/28" - ], - "pr_dates": ["2024-10-03", "2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180212887?v=4", - "login": "Bytebites03", - "url": "https://github.com/Bytebites03", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1511"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145287513?u=419d05bfa1c4e4d5024e85c94d3195a0541fbf4e&v=4", - "login": "DevGajjar28", - "url": "https://github.com/DevGajjar28", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1451", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1240", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1081" - ], - "pr_dates": ["2024-10-19", "2024-10-21", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126807055?u=7b8f0f287958585f3a1ebc00e3428ad6e0ef8002&v=4", - "login": "sum1t-here", - "url": "https://github.com/sum1t-here", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Puskar-Roy/create-my-api/pull/114"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141775335?u=15132684f562e96b9b49b451d07c2e000ae05400&v=4", - "login": "shar2710", - "url": "https://github.com/shar2710", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1966", - "https://github.com/iamrahulmahato/master-web-development/pull/1938", - "https://github.com/vanshchauhan21/CryptoTracker/pull/302" - ], - "pr_dates": ["2024-10-28", "2024-10-29", "2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59614595?u=dd7446df75338b000ee28d60dd993e24ac1a8393&v=4", - "login": "skstanwar", - "url": "https://github.com/skstanwar", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1947", - "https://github.com/iamrahulmahato/master-web-development/pull/1941", - "https://github.com/iamrahulmahato/master-web-development/pull/1814", - "https://github.com/iamrahulmahato/master-web-development/pull/1781" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163627779?u=f70befee90da70529e435ec73d765839adc2388f&v=4", - "login": "Hudson-bot", - "url": "https://github.com/Hudson-bot", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/762" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125487104?u=6a5165f1e79b3839e58dc38392ef25cf85a9e7e3&v=4", - "login": "Soumyodeep-Das", - "url": "https://github.com/Soumyodeep-Das", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/761", - "https://github.com/iamrahulmahato/master-web-development/pull/622", - "https://github.com/iamrahulmahato/master-web-development/pull/409" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-07"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95633624?u=5537ad83194b75428b4cce1b027f4fdd0a3aa64d&v=4", - "login": "Akm592", - "url": "https://github.com/Akm592", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/676" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183265733?v=4", - "login": "Meghana-Poojary", - "url": "https://github.com/Meghana-Poojary", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/163" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182904672?v=4", - "login": "dushyantkanav", - "url": "https://github.com/dushyantkanav", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/126" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147927339?u=2bf674a6a6c4a40f8362d395dc3dc063720f4698&v=4", - "login": "pankaj1132", - "url": "https://github.com/pankaj1132", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/beRajeevKumar/Frontend_Mentor/pull/86"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133988915?u=a65fff8ee447c652251f95caf7f5236e1cc6e38d&v=4", - "login": "mienpham04", - "url": "https://github.com/mienpham04", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Ratnesh-Team/Rehabify/pull/68"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134789277?u=f448a6240d6ea4d3cd4c1a8acd5ec3cc1ef0745f&v=4", - "login": "balbirs22", - "url": "https://github.com/balbirs22", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/151" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149463648?v=4", - "login": "kundana29", - "url": "https://github.com/kundana29", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/97" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118170804?v=4", - "login": "shradiphylleia", - "url": "https://github.com/shradiphylleia", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/89" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149886195?u=753c30985942d9ce51f3b52743692242bcbae992&v=4", - "login": "khushiiagrawal", - "url": "https://github.com/khushiiagrawal", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SanchitGeez/Investra/pull/41"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72350136?u=ee00ed84d561f1a649c210d12d69d9eedf4122e5&v=4", - "login": "arya2004", - "url": "https://github.com/arya2004", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SanchitGeez/Investra/pull/35"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121707227?v=4", - "login": "MuKulsoop", - "url": "https://github.com/MuKulsoop", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1168", - "https://github.com/recodehive/awesome-github-profiles/pull/715", - "https://github.com/vansh-codes/ChaosWeb/pull/162" - ], - "pr_dates": ["2024-10-09", "2024-10-21", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157950124?v=4", - "login": "mansiruhil13", - "url": "https://github.com/mansiruhil13", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/shivamyadavrgipt/Social_media_management/pull/104" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/55955558?u=652aaf79da7260894fd8b2480397d7af759afaf6&v=4", - "login": "Seif-Mamdouh", - "url": "https://github.com/Seif-Mamdouh", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/12" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170451232?u=04e675d4e7c7371e0943402077d6a92185a44304&v=4", - "login": "AnklekarMahima", - "url": "https://github.com/AnklekarMahima", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/CodeIt/pull/219"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98377377?u=2bb0415d86f4d81fde4fb4a3852f5ba99a0946f0&v=4", - "login": "deepanshu-prajapati01", - "url": "https://github.com/deepanshu-prajapati01", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TenzDelek/DearDiary/pull/173"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135184964?u=95fafb2cd0d1461e62d0beb4735ab9181ce84c5f&v=4", - "login": "mchen610", - "url": "https://github.com/mchen610", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TenzDelek/DearDiary/pull/44"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139758175?v=4", - "login": "ekayZ7875", - "url": "https://github.com/ekayZ7875", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Trisha-tech/OnlineBookSales/pull/301"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105368989?v=4", - "login": "PAVAN-VANAM", - "url": "https://github.com/PAVAN-VANAM", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sharmavikas4/MERN_BLOG/pull/13"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118960543?u=dd08ce1c8e9838c2342d2ebd7d64fa5e7881ed18&v=4", - "login": "Ashwanisingh7930", - "url": "https://github.com/Ashwanisingh7930", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vimall03/Alimento/pull/92"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149164301?u=01b54ccf3fdb8afdf8045025289e4ab5e19df442&v=4", - "login": "shivam-thedev", - "url": "https://github.com/shivam-thedev", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/169"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144311630?u=bd2459d8c699f58ca79e90a637e64c8bd5fc926a&v=4", - "login": "Yash05080", - "url": "https://github.com/Yash05080", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/107"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124353488?v=4", - "login": "Abhi-0987", - "url": "https://github.com/Abhi-0987", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/74"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143575891?u=8c2638cf41e312428ae8359835827fba6fb61b18&v=4", - "login": "AkashD625", - "url": "https://github.com/AkashD625", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/277"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120419769?u=abd285cc5eeec3ad1fb34a99b350021b6b8c94a0&v=4", - "login": "Aditya-edith", - "url": "https://github.com/Aditya-edith", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/201"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119737682?v=4", - "login": "ManasaNagaram", - "url": "https://github.com/ManasaNagaram", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/165"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/80886271?u=68365615ad202228e9726161d827ff1b6c7c6577&v=4", - "login": "Abhishek332", - "url": "https://github.com/Abhishek332", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Scribbie-Notes/notes-app/pull/150", - "https://github.com/Scribbie-Notes/notes-app/pull/148", - "https://github.com/Scribbie-Notes/notes-app/pull/138" - ], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163440488?u=daf24d9dd1771d92396a2f304a1ec17a05795f50&v=4", - "login": "Garvit1000", - "url": "https://github.com/Garvit1000", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yashgabani845/hiring-portal/pull/123"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159904318?v=4", - "login": "Manvitha-Vema", - "url": "https://github.com/Manvitha-Vema", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yashgabani845/hiring-portal/pull/102"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113287358?u=277fdace43f4025321ac6a4ecb4f42ec4ba5001a&v=4", - "login": "ShahanasParapporu", - "url": "https://github.com/ShahanasParapporu", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yuvrajsinghgmx/ShopSmart/pull/166"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119247530?u=74e613237cc8b8efb6d169aec912d1356912abbb&v=4", - "login": "Yashvardhan-17", - "url": "https://github.com/Yashvardhan-17", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yuvrajsinghgmx/ShopSmart/pull/148"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149392619?u=1fdf9879554ea1ac7e1c7ea49cf071a153c11007&v=4", - "login": "Satyajit0003", - "url": "https://github.com/Satyajit0003", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/25", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/18", - "https://github.com/yuvrajsinghgmx/ShopSmart/pull/5" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-03"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150288870?u=ba8b2135dbabd96056d419c91b5619cec6347633&v=4", - "login": "zaheer-Khan3260", - "url": "https://github.com/zaheer-Khan3260", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/60", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/59", - "https://github.com/Suraj-kumar00/Flash-Fathom-AI/pull/50" - ], - "pr_dates": ["2024-10-23", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158052549?u=631b9181c3782d1d7b53788e9d605c7987e2f6b7&v=4", - "login": "Sibam-Paul", - "url": "https://github.com/Sibam-Paul", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Swarnendu0123/adopt-pet/pull/16", - "https://github.com/4darsh-Dev/DecenTrade/pull/11", - "https://github.com/sanjay-kv/Open-source-Practice/pull/85" - ], - "pr_dates": ["2024-05-10", "2024-09-29", "2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/44741695?u=94f5a9cfd90740a5402c2f7ae25f4ab565753b31&v=4", - "login": "samarasimhapeyala", - "url": "https://github.com/samarasimhapeyala", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/Opensource-practice/pull/184", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1246", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1242" - ], - "pr_dates": ["2024-10-29", "2024-10-30"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127041109?u=e1b918a80ce9bfef299efb6805c959c106bb02aa&v=4", - "login": "usha-here", - "url": "https://github.com/usha-here", - "score": 45, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Mohit5Upadhyay/WeatherApplication/pull/91" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113301503?u=144d5585eaa754a3d17ae8ef84f9b8060c66bda9&v=4", - "login": "rohitinu6", - "url": "https://github.com/rohitinu6", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/355", - "https://github.com/ANSHIKA-26/WordWise/pull/379", - "https://github.com/dohinaf/basic-icecream-website/pull/267", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/338" - ], - "pr_dates": ["2024-10-06", "2024-10-07"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59005347?u=99785d1056d923430ecdc374f0192c6d3e006196&v=4", - "login": "Rx-Metallica", - "url": "https://github.com/Rx-Metallica", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/72", - "https://github.com/Luson045/medi-connect/pull/89", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/169", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/62", - "https://github.com/sk66641/AquaGuardians/pull/5" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146363721?v=4", - "login": "Risheendra183", - "url": "https://github.com/Risheendra183", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/28", - "https://github.com/anuragverma108/SwapReads/pull/2953", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/68", - "https://github.com/PriyaGhosal/BuddyTrail/pull/90" - ], - "pr_dates": ["2024-10-02", "2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180905090?u=41bfa4b758e119e68e9a6d208a12c45ea0329674&v=4", - "login": "Ankush0286", - "url": "https://github.com/Ankush0286", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/54", - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/48", - "https://github.com/Kota-Karthik/twinTrim/pull/62", - "https://github.com/recodehive/Stackoverflow-Analysis/pull/381" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148472134?u=4acbebab25b156a5e6cca8b671852ac9880a2b5b&v=4", - "login": "Mansi-Tanwar", - "url": "https://github.com/Mansi-Tanwar", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/BhattAnsh/Quiz-Quest/pull/140", - "https://github.com/anuragverma108/SwapReads/pull/4412", - "https://github.com/AlgoGenesis/C/pull/692", - "https://github.com/AlgoGenesis/C/pull/478" - ], - "pr_dates": ["2024-10-10", "2024-10-13", "2024-10-31", "2024-11-01"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118012211?u=8887a9f89f8043105ae224d260643c55ada1f1e1&v=4", - "login": "AkshatSharma5", - "url": "https://github.com/AkshatSharma5", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1080", - "https://github.com/swarooppatilx/scruter/pull/203", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/838", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/744" - ], - "pr_dates": ["2024-10-16", "2024-10-17", "2024-10-18", "2024-10-19"], - "streak": 4 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146500979?u=2c7bacadd345ef7aa17d1603356d5b2764ea93b2&v=4", - "login": "Aditi2k5", - "url": "https://github.com/Aditi2k5", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/839", - "https://github.com/anuragverma108/SwapReads/pull/3232", - "https://github.com/PriyaGhosal/BuddyTrail/pull/36", - "https://github.com/multiverseweb/CodeIt/pull/80" - ], - "pr_dates": ["2024-10-03", "2024-10-06", "2024-10-11", "2024-10-12"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104834389?u=53bcd4e44295f1c685ec02807ab9743e652c5a86&v=4", - "login": "sanskaryo", - "url": "https://github.com/sanskaryo", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/778", - "https://github.com/recodehive/awesome-github-profiles/pull/961", - "https://github.com/recodehive/awesome-github-profiles/pull/957", - "https://github.com/recodehive/machine-learning-repos/pull/1574" - ], - "pr_dates": ["2024-10-11", "2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91334192?u=391d55205e18effb6f17ca8848037793f9a8126d&v=4", - "login": "JHA-geek-AYUSH", - "url": "https://github.com/JHA-geek-AYUSH", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/arjunatapadkar/codeteria/pull/232", - "https://github.com/arjunatapadkar/codeteria/pull/222", - "https://github.com/GarimaSingh0109/WasteManagment/pull/161", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/184" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-22", "2024-10-23"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114400284?v=4", - "login": "MihirSaiDudekula", - "url": "https://github.com/MihirSaiDudekula", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/18", - "https://github.com/Open-Code-Crafters/FitFlex/pull/22", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/11", - "https://github.com/MinavKaria/Ratna-Supermarket/pull/26" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143051969?v=4", - "login": "Amanjayswal500", - "url": "https://github.com/Amanjayswal500", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/188", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/100", - "https://github.com/iamrahulmahato/master-web-development/pull/1659", - "https://github.com/iamrahulmahato/master-web-development/pull/969", - "https://github.com/Yashgabani845/hiring-portal/pull/63" - ], - "pr_dates": ["2024-10-05", "2024-10-06", "2024-10-11", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146544714?v=4", - "login": "khushi-joshi-05", - "url": "https://github.com/khushi-joshi-05", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/924", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/923", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/893", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/892" - ], - "pr_dates": ["2024-10-26", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144893988?u=0c60d31becdca6c841e9bd18bd3c57312b3f86b2&v=4", - "login": "Vinayyy19", - "url": "https://github.com/Vinayyy19", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/188", - "https://github.com/iamrahulmahato/master-web-development/pull/129", - "https://github.com/Soujanya2004/wanderlust-2024/pull/63", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/6" - ], - "pr_dates": ["2024-10-01", "2024-10-02", "2024-10-10", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117108889?u=21c92c7f1fd5c1d8427ce61bff3a7de2b1eddbe9&v=4", - "login": "sayiamarora", - "url": "https://github.com/sayiamarora", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/172", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1206", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1184", - "https://github.com/swarooppatilx/scruter/pull/179" - ], - "pr_dates": ["2024-10-16", "2024-10-19", "2024-10-20"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161715841?v=4", - "login": "Athaxv", - "url": "https://github.com/Athaxv", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/119", - "https://github.com/PriyaGhosal/BuddyTrail/pull/699", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/656", - "https://github.com/Yashgabani845/hiring-portal/pull/109" - ], - "pr_dates": ["2024-10-09", "2024-10-14", "2024-10-15", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75330767?u=fc8cd46514e3e6efc8d5d7a7b3807f43737aa85e&v=4", - "login": "Shariar-Hasan", - "url": "https://github.com/Shariar-Hasan", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/434", - "https://github.com/Luson045/medi-connect/pull/418", - "https://github.com/Luson045/medi-connect/pull/411", - "https://github.com/iamrahulmahato/master-web-development/pull/1232" - ], - "pr_dates": ["2024-10-12", "2024-10-13", "2024-10-14"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132160161?u=bf0d3f8b0349c3053d36d932f354ecc327813b6f&v=4", - "login": "Riya7045", - "url": "https://github.com/Riya7045", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1317", - "https://github.com/AlgoGenesis/C/pull/436", - "https://github.com/vansh-codes/ChaosWeb/pull/201", - "https://github.com/vansh-codes/ChaosWeb/pull/188" - ], - "pr_dates": ["2024-10-09", "2024-10-27", "2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159520305?u=35da824e4d44bb80908cbeedd919da318a745160&v=4", - "login": "deepikaa0402", - "url": "https://github.com/deepikaa0402", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1501", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1424", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1398", - "https://github.com/PriyaGhosal/BuddyTrail/pull/993" - ], - "pr_dates": ["2024-10-18", "2024-10-23", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175851904?u=91a02ac9e53a4201c15df6fa2194b3f6c0dbf9f8&v=4", - "login": "Aarnachauhan", - "url": "https://github.com/Aarnachauhan", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/65", - "https://github.com/PriyaGhosal/BuddyTrail/pull/64", - "https://github.com/Vimall03/Alimento/pull/73", - "https://github.com/Vimall03/Alimento/pull/37" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78996216?u=75feae558dc1a431713ee27be246913a37018381&v=4", - "login": "saurabhbakolia", - "url": "https://github.com/saurabhbakolia", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/104", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/103", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/37", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/33" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111676155?u=b9dc0f90a2da21852702f77db9ddbb4e7419f93d&v=4", - "login": "vedanshjainvj", - "url": "https://github.com/vedanshjainvj", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/174", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/156", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/106", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/102" - ], - "pr_dates": ["2024-10-09", "2024-10-10", "2024-10-15", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134735349?u=dbf522793bc513ae17a1d1d1d1f38198a9f190f9&v=4", - "login": "AnshikaRathour", - "url": "https://github.com/AnshikaRathour", - "score": 40, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/visheshrwl/Uber-like/pull/75", - "https://github.com/visheshrwl/Uber-like/pull/59", - "https://github.com/visheshrwl/Uber-like/pull/55", - "https://github.com/visheshrwl/Uber-like/pull/54" - ], - "pr_dates": ["2024-10-20", "2024-10-22", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154007705?v=4", - "login": "DevanshS9881", - "url": "https://github.com/DevanshS9881", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/177", - "https://github.com/Scribbie-Notes/notes-app/pull/195" - ], - "pr_dates": ["2024-10-12", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114153459?u=99602b327953cc37a15d4e018deb5d4f4ba2ba4f&v=4", - "login": "khaulanauman", - "url": "https://github.com/khaulanauman", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/41", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/120", - "https://github.com/codeaashu/DevDisplay/pull/452" - ], - "pr_dates": ["2024-10-05", "2024-10-17", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140369686?v=4", - "login": "Gurpreet0022", - "url": "https://github.com/Gurpreet0022", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/811", - "https://github.com/AlgoGenesis/C/pull/700" - ], - "pr_dates": ["2024-10-13", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104300431?u=1e1ee51157c05b6570d31bc3c1f156ed0503d24d&v=4", - "login": "RanaJay3101", - "url": "https://github.com/RanaJay3101", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/428", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1126" - ], - "pr_dates": ["2024-10-09", "2024-10-10"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115028578?v=4", - "login": "tanushrigoel", - "url": "https://github.com/tanushrigoel", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/181", - "https://github.com/AlgoGenesis/C/pull/217" - ], - "pr_dates": ["2024-10-05", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137740335?v=4", - "login": "yogeswari05", - "url": "https://github.com/yogeswari05", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/37", - "https://github.com/ajay-dhangar/algo/pull/24" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183288134?v=4", - "login": "devki412", - "url": "https://github.com/devki412", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/569", - "https://github.com/Trisha-tech/OnlineBookSales/pull/477" - ], - "pr_dates": ["2024-10-14", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120911455?v=4", - "login": "dalvishruti14", - "url": "https://github.com/dalvishruti14", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/267", - "https://github.com/anuragverma108/SwapReads/pull/2942" - ], - "pr_dates": ["2024-10-04", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112774038?v=4", - "login": "pranavmugatkar", - "url": "https://github.com/pranavmugatkar", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/188", - "https://github.com/ankit071105/Ticket-Booking/pull/523" - ], - "pr_dates": ["2024-10-08", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141478419?v=4", - "login": "Karan-Mahato", - "url": "https://github.com/Karan-Mahato", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/147", - "https://github.com/iamparas0/TIC-TAC-TOE/pull/140" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144508614?v=4", - "login": "Vaibhav-Kumar10", - "url": "https://github.com/Vaibhav-Kumar10", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/73", - "https://github.com/Anjaliavv51/Retro/pull/224" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/172738038?u=4cd6dbf68da96c4c8fa244f92ecb5c12e882d13b&v=4", - "login": "CodewMilan", - "url": "https://github.com/CodewMilan", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/32", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/62" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132189791?v=4", - "login": "Vaibhav-Kumar-K-R", - "url": "https://github.com/Vaibhav-Kumar-K-R", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/31", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/17", - "https://github.com/Shreyaa173/Code-Book/pull/31" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99392080?u=fb35ff44a60d9bcfa84af8058b8dd9d088531a4d&v=4", - "login": "shreysachani", - "url": "https://github.com/shreysachani", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/254", - "https://github.com/mdazfar2/Ezyshop/pull/624" - ], - "pr_dates": ["2024-10-14", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119807388?u=97ed1f9cd5e62215cf00a7bb144f47b87263d823&v=4", - "login": "Harshitraaaj", - "url": "https://github.com/Harshitraaaj", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/110", - "https://github.com/tushargupta1504/Medical-Website/pull/522" - ], - "pr_dates": ["2024-10-09", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141702349?u=2134ee7e3ba59596e6ee34eba5bd62dd9139aa8a&v=4", - "login": "KhushiChauhan8", - "url": "https://github.com/KhushiChauhan8", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1201", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/404" - ], - "pr_dates": ["2024-10-17", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150824275?u=61f1063fa7cfedd12cef6aaa2b167b8176ee75c9&v=4", - "login": "Shrutibansal22", - "url": "https://github.com/Shrutibansal22", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1018", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/382" - ], - "pr_dates": ["2024-10-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88616105?u=86cdca541d19b2d2cd353bbae7ee1cb14b2f0915&v=4", - "login": "RushikeshGhodke", - "url": "https://github.com/RushikeshGhodke", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/846", - "https://github.com/ANSHIKA-26/WordWise/pull/629" - ], - "pr_dates": ["2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178495897?u=fdf9641f003734daf68b2dd92063231594309592&v=4", - "login": "Debmallya-03", - "url": "https://github.com/Debmallya-03", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/654", - "https://github.com/PriyaGhosal/BuddyTrail/pull/853" - ], - "pr_dates": ["2024-10-09", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110779627?u=3fabb4780ec57507a3b5305633637ddb81fcc98b&v=4", - "login": "akash-inft1905", - "url": "https://github.com/akash-inft1905", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/616", - "https://github.com/ANSHIKA-26/WordWise/pull/614" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161420748?u=34d4503e413b0a26760fb64ad3f1d994c4b26a28&v=4", - "login": "DBasu2610", - "url": "https://github.com/DBasu2610", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/265", - "https://github.com/AlgoGenesis/C/pull/29" - ], - "pr_dates": ["2024-10-01", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117651128?u=5ff2d1e7f6af8f55372a861a502a3a7d28161e4b&v=4", - "login": "AbhinabPalei", - "url": "https://github.com/AbhinabPalei", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/137", - "https://github.com/Anjaliavv51/Retro/pull/79" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123762263?u=e9501c06161982f5c5e6a4f8c517de0a4dd8aa39&v=4", - "login": "Ek-ta-bharti", - "url": "https://github.com/Ek-ta-bharti", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/24", - "https://github.com/iamrahulmahato/master-web-development/pull/1223" - ], - "pr_dates": ["2024-10-02", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143112769?v=4", - "login": "Chitrakadyan2005", - "url": "https://github.com/Chitrakadyan2005", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4168", - "https://github.com/anuragverma108/SwapReads/pull/3563" - ], - "pr_dates": ["2024-10-16", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149177534?u=555b662d462c5f76966ae05dc9a772c8598cbb80&v=4", - "login": "abhijeetw035", - "url": "https://github.com/abhijeetw035", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3345", - "https://github.com/anuragverma108/SwapReads/pull/3006" - ], - "pr_dates": ["2024-10-06", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151459663?u=03f7e5fbc688742664f7ab2b0c94a2a4e84c56a0&v=4", - "login": "psa21git", - "url": "https://github.com/psa21git", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3304", - "https://github.com/param-code/counter-app/pull/109" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119925093?u=cea51e802b293679c7e91974067cdf607dd5398e&v=4", - "login": "Anshuaman2001", - "url": "https://github.com/Anshuaman2001", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3241", - "https://github.com/mansiruhil13/Bobble-AI/pull/753" - ], - "pr_dates": ["2024-10-11", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153719983?u=a3f993b5ea89795ef3dc32716c1c3112ad360894&v=4", - "login": "TusharNaugain", - "url": "https://github.com/TusharNaugain", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3206", - "https://github.com/Vimall03/Alimento/pull/74" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100784095?v=4", - "login": "Chandravan", - "url": "https://github.com/Chandravan", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2869", - "https://github.com/mansiruhil13/Bobble-AI/pull/71" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175989939?v=4", - "login": "triman1905", - "url": "https://github.com/triman1905", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/650", - "https://github.com/tushargupta1504/Medical-Website/pull/494" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144085591?u=9378e5c04e6ac4c4ae00fe777dd377b8d7934321&v=4", - "login": "sumitrathor1", - "url": "https://github.com/sumitrathor1", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/340", - "https://github.com/recodehive/machine-learning-repos/pull/1476" - ], - "pr_dates": ["2024-10-09", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120484393?v=4", - "login": "ash-k121", - "url": "https://github.com/ash-k121", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/28", - "https://github.com/Harshdev098/Research-Nexas/pull/13" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112758477?u=7693c270243cbe1b47a811eba40c535981d562fc&v=4", - "login": "pulkitpathak99", - "url": "https://github.com/pulkitpathak99", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/408", - "https://github.com/Code-Social/official-website/pull/159" - ], - "pr_dates": ["2024-10-11", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122914094?u=4a850c61e6233e5e54329de03d4bd891fffe07e9&v=4", - "login": "rugved0102", - "url": "https://github.com/rugved0102", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/76", - "https://github.com/sanjay-kv/Open-source-Practice/pull/751" - ], - "pr_dates": ["2024-05-12", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/176326903?u=31b78509aeda976e06a6d8eb3b1b0116abf79980&v=4", - "login": "achintyasrivastav", - "url": "https://github.com/achintyasrivastav", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/508", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/472" - ], - "pr_dates": ["2024-10-16", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102624456?u=0eb71fa0b489e5c4f8becb1a82622857eebb8ebf&v=4", - "login": "TeekshaHarish", - "url": "https://github.com/TeekshaHarish", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/469", - "https://github.com/mansiruhil13/Bobble-AI/pull/328" - ], - "pr_dates": ["2024-10-06", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133582566?u=5d7a7971c65bd5c49004f698d653366e2d6799b2&v=4", - "login": "Meetjain1", - "url": "https://github.com/Meetjain1", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/300", - "https://github.com/sanjay-kv/Open-source-Practice/pull/372" - ], - "pr_dates": ["2024-05-10", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154744781?v=4", - "login": "akshjswl", - "url": "https://github.com/akshjswl", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/284", - "https://github.com/param-code/counter-app/pull/58" - ], - "pr_dates": ["2024-10-05", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119685154?u=dd4dbddcaa435fd2ee0d1088e14152a56c96e7db&v=4", - "login": "vaishnav-3", - "url": "https://github.com/vaishnav-3", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/150", - "https://github.com/Luson045/medi-connect/pull/198", - "https://github.com/recodehive/awesome-github-profiles/pull/633" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63981998?u=7deb439a903c041bea202de20bc7eef441f745b9&v=4", - "login": "Dhavisco", - "url": "https://github.com/Dhavisco", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/333", - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/310" - ], - "pr_dates": ["2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175745698?v=4", - "login": "anjali5Xcode", - "url": "https://github.com/anjali5Xcode", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/318", - "https://github.com/ayush-that/FinVeda/pull/2462" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129004417?v=4", - "login": "akarshghildyal", - "url": "https://github.com/akarshghildyal", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Avdhesh-Varshney/Jarvis/pull/121", - "https://github.com/yashasvini121/predictive-calc/pull/82" - ], - "pr_dates": ["2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117700812?u=12f2269229a546cb48b3c76c90a2a9c16fdd89ff&v=4", - "login": "gitsofaryan", - "url": "https://github.com/gitsofaryan", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/2072", - "https://github.com/ayush-that/FinVeda/pull/1608" - ], - "pr_dates": ["2024-10-19", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71658168?v=4", - "login": "AvinashKumar0923", - "url": "https://github.com/AvinashKumar0923", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/1729", - "https://github.com/swarooppatilx/scruter/pull/175" - ], - "pr_dates": ["2024-10-15", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140247389?u=467e6edd6a03b902fbdcc72c87f9f6fcfb405975&v=4", - "login": "ShigrafS", - "url": "https://github.com/ShigrafS", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/48", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/101" - ], - "pr_dates": ["2024-10-05", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100307524?u=49ca344b255114cfe4db25907b96268a5b788863&v=4", - "login": "Sakeebhasan123456", - "url": "https://github.com/Sakeebhasan123456", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/15", - "https://github.com/UTSAVS26/PyVerse/pull/90" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144699472?u=901944b80d994f863d047ac030fc5d911d26a678&v=4", - "login": "khushi1315", - "url": "https://github.com/khushi1315", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/912", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1135" - ], - "pr_dates": ["2024-10-11", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180908237?u=1c7e9369cf4fcae37cdf5608cc4e076f3dea6eb2&v=4", - "login": "mishraRj", - "url": "https://github.com/mishraRj", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/518", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/498" - ], - "pr_dates": ["2024-10-13", "2024-10-14"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99285192?u=16473efe62b902e0d749ff522fc6492f03294196&v=4", - "login": "SoumyaU25", - "url": "https://github.com/SoumyaU25", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Harshdev098/Research-Nexas/pull/170", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1003" - ], - "pr_dates": ["2024-10-16", "2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68611481?u=3be7738363882ed776c6e6a735a26520748ac95d&v=4", - "login": "anothercoder-nik", - "url": "https://github.com/anothercoder-nik", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/160", - "https://github.com/Bitbox-Connect/Bitbox/pull/103" - ], - "pr_dates": ["2024-10-13", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149424201?v=4", - "login": "T-Soni", - "url": "https://github.com/T-Soni", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/18", - "https://github.com/yagnik2411/Quiz-Genius/pull/34" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95768544?u=9ad1302cca63b3c6f9f90f831c19635911aecf91&v=4", - "login": "Zaki2409", - "url": "https://github.com/Zaki2409", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/120", - "https://github.com/rahulsainlll/git-trace/pull/88" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129681700?v=4", - "login": "sanchitgumber", - "url": "https://github.com/sanchitgumber", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/180", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/173" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83769253?u=4545a115cace8f6ef3683966519ee22c5cf7aba0&v=4", - "login": "ashish-um", - "url": "https://github.com/ashish-um", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/112", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/53" - ], - "pr_dates": ["2024-10-07", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88794340?u=29f6332443fd0dc727cfb418b20aadf413ec48c0&v=4", - "login": "abhishekHegde2000", - "url": "https://github.com/abhishekHegde2000", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/75", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/44" - ], - "pr_dates": ["2024-10-05", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161066211?v=4", - "login": "mahipalimkar", - "url": "https://github.com/mahipalimkar", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/511", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/359" - ], - "pr_dates": ["2024-10-15", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149862465?u=f5579bc09be4923f6b1b4fcc699635b379e7216e&v=4", - "login": "Abheeshta-P", - "url": "https://github.com/Abheeshta-P", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/kartikayasijaa/talk-trove/pull/58", - "https://github.com/Sanskriti1102/Techtalksintelligenz/pull/41" - ], - "pr_dates": ["2024-10-07", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92302620?v=4", - "login": "eleensmathew", - "url": "https://github.com/eleensmathew", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kota-Karthik/twinTrim/pull/52", - "https://github.com/Kota-Karthik/twinTrim/pull/50" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142730608?u=cf9980ed309654a4f3c4fe5d65de07273687ad0a&v=4", - "login": "AnkitLuhar", - "url": "https://github.com/AnkitLuhar", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/209", - "https://github.com/Luson045/medi-connect/pull/202" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126372969?v=4", - "login": "NawinKumarSharma", - "url": "https://github.com/NawinKumarSharma", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/161", - "https://github.com/Luson045/medi-connect/pull/133" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128988712?u=45c11777a066991710e587ae89d652090433123b&v=4", - "login": "Priyanshu282003", - "url": "https://github.com/Priyanshu282003", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Megh2005/Med-o-Next/pull/79", - "https://github.com/4darsh-Dev/DecenTrade/pull/39" - ], - "pr_dates": ["2024-10-12", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116897217?u=bbc4775ecb8ae88dc3bcf8ead9046210d5307ee5&v=4", - "login": "c2gup", - "url": "https://github.com/c2gup", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MinavKaria/Ratna-Supermarket/pull/29", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/100" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83450905?u=dc7e7a115dac8b6bd76049da9a5d200426a6cf1a&v=4", - "login": "toastsandwich", - "url": "https://github.com/toastsandwich", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/muruga21/LoadDistrix/pull/7", - "https://github.com/muruga21/LoadDistrix/pull/6", - "https://github.com/Ratnesh-Team/Rehabify/pull/45" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78205431?u=1db99d15af61e34730d1579227d0ece9156a5885&v=4", - "login": "MihirRajeshPanchal", - "url": "https://github.com/MihirRajeshPanchal", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ombhojane/explainableai/pull/64", - "https://github.com/ombhojane/explainableai/pull/13" - ], - "pr_dates": ["2024-10-01", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136880099?u=44c6462875a374041bea2da93520d6d332eb45be&v=4", - "login": "GAURAV8520", - "url": "https://github.com/GAURAV8520", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Anjaliavv51/Retro/pull/580", - "https://github.com/SanchitGeez/Investra/pull/13" - ], - "pr_dates": ["2024-10-02", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139146243?u=0d5851924a9d39e6c46410a92e9e28c221baca4a&v=4", - "login": "Sayantan1024", - "url": "https://github.com/Sayantan1024", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1240", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1228" - ], - "pr_dates": ["2024-10-25", "2024-10-26"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139148519?u=5e80791227d620f723685e5c7e6d1b1a2d47a82e&v=4", - "login": "iamasraful", - "url": "https://github.com/iamasraful", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/662", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1094" - ], - "pr_dates": ["2024-10-02", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149924641?u=eab790db4738d3434d6f6506b3a9d429377f7f72&v=4", - "login": "Viole07", - "url": "https://github.com/Viole07", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/283", - "https://github.com/sanjay-kv/Open-source-Practice/pull/141" - ], - "pr_dates": ["2024-05-10", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149246573?u=01a942df7dc07a76ee65eb3744893e817d67857b&v=4", - "login": "shreyajaiswal17", - "url": "https://github.com/shreyajaiswal17", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PranavBarthwal/backend-generator-cli/pull/55", - "https://github.com/PranavBarthwal/backend-generator-cli/pull/50" - ], - "pr_dates": ["2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122167726?v=4", - "login": "RNAdvani", - "url": "https://github.com/RNAdvani", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PranavBarthwal/backend-generator-cli/pull/26", - "https://github.com/soham0005/ElectroKart/pull/281" - ], - "pr_dates": ["2024-10-10", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149947236?u=2fb6a601fbb8269b1248be9dd7b88f4d6dba78c0&v=4", - "login": "efshaperveen", - "url": "https://github.com/efshaperveen", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1619", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/550" - ], - "pr_dates": ["2024-10-18", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118903685?u=9254a3e80b1be20ebd74cba023b729d6f3043e4f&v=4", - "login": "Nikhileshmauje", - "url": "https://github.com/Nikhileshmauje", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1373", - "https://github.com/PriyaGhosal/BuddyTrail/pull/461" - ], - "pr_dates": ["2024-10-10", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136831716?u=34d6c751c51dbe24fcbc356604bd88c585cc946f&v=4", - "login": "MOHIT-IITP", - "url": "https://github.com/MOHIT-IITP", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/736", - "https://github.com/PriyaGhosal/BuddyTrail/pull/727" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129872752?u=0b6c4bd7436215753e522b337d84c5844dccf799&v=4", - "login": "Aradhya-005", - "url": "https://github.com/Aradhya-005", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/270", - "https://github.com/PriyaGhosal/BuddyTrail/pull/240" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132363962?u=de6e42940b27e3694550fa6b068c4a05a97e1b31&v=4", - "login": "Bhoomidhanu12", - "url": "https://github.com/Bhoomidhanu12", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/972", - "https://github.com/sanjay-kv/Open-source-Practice/pull/1134" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153114467?u=5b385aefb7e6a1eb508403cda3e3a2f84ea9cc11&v=4", - "login": "adarshgupta14", - "url": "https://github.com/adarshgupta14", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/397", - "https://github.com/iamrahulmahato/master-web-development/pull/252", - "https://github.com/iamrahulmahato/master-web-development/pull/250" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119697848?u=ffb034a29e367eea23330c92d155f1fe5c50fa75&v=4", - "login": "ShubhamKadam098", - "url": "https://github.com/ShubhamKadam098", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rahulsainlll/git-trace/pull/34", - "https://github.com/TejasNasre/nexmeet/pull/90" - ], - "pr_dates": ["2024-10-03", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91309280?u=90fd230ba4244d5b6dcb0922cacdb72efbdf4bad&v=4", - "login": "Sapna127", - "url": "https://github.com/Sapna127", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/77", - "https://github.com/TenzDelek/DearDiary/pull/17" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72063139?u=e2527bb3fecfc5b7af3ebf127a779a84c39064f3&v=4", - "login": "Suhas-Koheda", - "url": "https://github.com/Suhas-Koheda", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/15", - "https://github.com/notsoocool/codecache/pull/10" - ], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112485130?v=4", - "login": "sapnilmodak", - "url": "https://github.com/sapnilmodak", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/164", - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/163" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167183967?u=4a163db52d9a4698539e02b8fcdc158ce17e9683&v=4", - "login": "KirtiPratihar", - "url": "https://github.com/KirtiPratihar", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/31", - "https://github.com/AmateursLeague/sneaky-package/pull/56" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121384625?u=e615e69bd625f877ace5676bec374d4282816e69&v=4", - "login": "zakie2003", - "url": "https://github.com/zakie2003", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/SanchitGeez/Investra/pull/63", - "https://github.com/SanchitGeez/Investra/pull/15" - ], - "pr_dates": ["2024-10-02", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168336164?v=4", - "login": "Vivan-1045", - "url": "https://github.com/Vivan-1045", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1140", - "https://github.com/recodehive/awesome-github-profiles/pull/1065" - ], - "pr_dates": ["2024-10-24", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/57017965?u=3b32b58a6a8940592f58cf50ca3ba633739e1658&v=4", - "login": "subhadipbhowmik", - "url": "https://github.com/subhadipbhowmik", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/subhadipbhowmik/bio-branch/pull/345", - "https://github.com/sanjay-kv/Open-source-Practice/pull/771" - ], - "pr_dates": ["2024-05-12", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158424970?v=4", - "login": "JyothiPriya5", - "url": "https://github.com/JyothiPriya5", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/subhadipbhowmik/bio-branch/pull/88", - "https://github.com/tushargupta1504/Medical-Website/pull/316" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92578876?v=4", - "login": "sakshii00", - "url": "https://github.com/sakshii00", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/soham0005/ElectroKart/pull/158", - "https://github.com/soham0005/ElectroKart/pull/124" - ], - "pr_dates": ["2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140371139?u=024e66ae2ab4391c2728ed414ade914d4af4d327&v=4", - "login": "divyansharma001", - "url": "https://github.com/divyansharma001", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/SurajPratap10/Imagine_AI/pull/1317", - "https://github.com/SurajPratap10/Imagine_AI/pull/1241" - ], - "pr_dates": ["2024-10-14", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134217786?u=b3ea0f4e4287f8f29cbe831236047147afbbc09e&v=4", - "login": "Shrihari25-hub", - "url": "https://github.com/Shrihari25-hub", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/280", - "https://github.com/tushargupta1504/Medical-Website/pull/512" - ], - "pr_dates": ["2024-10-10", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156178798?v=4", - "login": "sehajsomal5", - "url": "https://github.com/sehajsomal5", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/461", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/103" - ], - "pr_dates": ["2024-10-03", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117444036?u=c13d85a5fc1a450373b457a8cf33722971fbecb1&v=4", - "login": "Shriya-sinha", - "url": "https://github.com/Shriya-sinha", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vin205/Enyanjyoti/pull/317", - "https://github.com/Vin205/Enyanjyoti/pull/238" - ], - "pr_dates": ["2024-10-12", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156240663?v=4", - "login": "AshiqYadav", - "url": "https://github.com/AshiqYadav", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vishwajith-Shettigar/NextGen/pull/110", - "https://github.com/Vishwajith-Shettigar/NextGen/pull/108" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183344795?u=beac6b055e4433090c11b02ed129ea6e0c111048&v=4", - "login": "slavomirStucka", - "url": "https://github.com/slavomirStucka", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Yashgabani845/hiring-portal/pull/37", - "https://github.com/Yashgabani845/hiring-portal/pull/34" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98628762?u=70a4b1db8c5496fa5d4245ab80a55f75cf0d66ca&v=4", - "login": "Raj100", - "url": "https://github.com/Raj100", - "score": 35, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/153", - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/151" - ], - "pr_dates": ["2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138194069?u=d54efeea657b1c3cdb609b123efa6fd2aea4815d&v=4", - "login": "SHRIVISHNU-CM", - "url": "https://github.com/SHRIVISHNU-CM", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/218", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/215", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/212" - ], - "pr_dates": ["2024-10-15", "2024-10-16"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149812990?u=ffb4d71864bcbf8ee07d5b4106c694b3694362d8&v=4", - "login": "YasirKhan231", - "url": "https://github.com/YasirKhan231", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/167", - "https://github.com/jahnvisahni31/DesignDeck/pull/53", - "https://github.com/TejasNasre/nexmeet/pull/136" - ], - "pr_dates": ["2024-10-07", "2024-10-11", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160476952?u=9c19c5a8b32ad57d454ed5f71e2111e031ae6a15&v=4", - "login": "muskan-fatim", - "url": "https://github.com/muskan-fatim", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1114", - "https://github.com/vishanurag/Canvas-Editor/pull/989", - "https://github.com/ayush-that/FinVeda/pull/2558" - ], - "pr_dates": ["2024-10-27", "2024-10-30", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145954271?u=f969670588ce126fc21c4723e7ed5756c2284297&v=4", - "login": "pbln", - "url": "https://github.com/pbln", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1091", - "https://github.com/iamrahulmahato/master-web-development/pull/1643", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/706" - ], - "pr_dates": ["2024-10-23", "2024-10-28", "2024-10-29"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183179737?u=f41a036362ff22c37880bcd3235e1f6ec9a10dc4&v=4", - "login": "Sanikaaher-19", - "url": "https://github.com/Sanikaaher-19", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/334", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/79", - "https://github.com/Anjaliavv51/Retro/pull/49" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146335332?v=4", - "login": "Lokesh11868", - "url": "https://github.com/Lokesh11868", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/361", - "https://github.com/AlgoGenesis/C/pull/691", - "https://github.com/iamrahulmahato/master-web-development/pull/1327" - ], - "pr_dates": ["2024-10-09", "2024-10-13", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92056170?u=ead2e0f15e1f206ac672b0fdc18eeac8c7c44d26&v=4", - "login": "shimmer12", - "url": "https://github.com/shimmer12", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/271", - "https://github.com/vishanurag/Canvas-Editor/pull/169", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/251" - ], - "pr_dates": ["2024-10-05", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149981630?u=d8ea15948b16cda22261031bd53541b1443730b8&v=4", - "login": "UmeshKumar0143", - "url": "https://github.com/UmeshKumar0143", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/64", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/61", - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/35" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164364526?u=8845be803e58f570d21f3096f63feb3a1f99acaf&v=4", - "login": "Vyshnavi1322", - "url": "https://github.com/Vyshnavi1322", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlfiyaSiddique/TastyTrails/pull/34", - "https://github.com/vishanurag/Canvas-Editor/pull/63", - "https://github.com/MitulSonagara/truth-tunnel/pull/62" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157293964?v=4", - "login": "31Rishita", - "url": "https://github.com/31Rishita", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/864", - "https://github.com/ankit071105/Ticket-Booking/pull/860", - "https://github.com/mansiruhil13/Bobble-AI/pull/1084" - ], - "pr_dates": ["2024-10-25", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139355646?u=8461690015a5b1adeca61ebae65067175a39d957&v=4", - "login": "Shahharshii", - "url": "https://github.com/Shahharshii", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anmode/grabtern-frontend/pull/883", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/366", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/355" - ], - "pr_dates": ["2024-10-11", "2024-10-19", "2024-10-20"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174313849?u=f29ee1694ad68015c15e2d57f977fc14e1a85901&v=4", - "login": "Ravi-1606", - "url": "https://github.com/Ravi-1606", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1284", - "https://github.com/anuragverma108/SwapReads/pull/3865", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1226" - ], - "pr_dates": ["2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152872068?u=f49dd3fe0fa32cbb472993cf6ba5af3c56ded50f&v=4", - "login": "Kiran-F", - "url": "https://github.com/Kiran-F", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1137", - "https://github.com/PriyaGhosal/BuddyTrail/pull/936", - "https://github.com/PriyaGhosal/BuddyTrail/pull/894" - ], - "pr_dates": ["2024-10-17", "2024-10-18"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169473599?u=cdfe0e7d8a99002a23c8dac85664ce219ba0a3e0&v=4", - "login": "Bhupendrakumar20", - "url": "https://github.com/Bhupendrakumar20", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4157", - "https://github.com/AlgoGenesis/C/pull/1407", - "https://github.com/recodehive/awesome-github-profiles/pull/1177" - ], - "pr_dates": ["2024-10-28", "2024-10-29", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68153692?u=388d1046d477c0530600d05a9e6d69fb29bdf5e3&v=4", - "login": "nabeel001", - "url": "https://github.com/nabeel001", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3935", - "https://github.com/anuragverma108/SwapReads/pull/3908", - "https://github.com/anuragverma108/SwapReads/pull/3905" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168399214?u=1e6b9274b1d0af73cb0c3f74b5be972b0414b753&v=4", - "login": "Harshcbx8", - "url": "https://github.com/Harshcbx8", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3845", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/590", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/597" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-21"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116021147?v=4", - "login": "rahmathkhasim", - "url": "https://github.com/rahmathkhasim", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3118", - "https://github.com/anuragverma108/SwapReads/pull/2956", - "https://github.com/anuragverma108/SwapReads/pull/2954" - ], - "pr_dates": ["2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85011280?u=32bf96fbf2b5edba637a812bf147abae1af88366&v=4", - "login": "kanduru-abhiram", - "url": "https://github.com/kanduru-abhiram", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/2964", - "https://github.com/dohinaf/basic-icecream-website/pull/309", - "https://github.com/vansh-codes/ChaosWeb/pull/39" - ], - "pr_dates": ["2024-10-05", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180297474?v=4", - "login": "kartik9737", - "url": "https://github.com/kartik9737", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/294", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/102", - "https://github.com/Jaishree2310/GlassyUI-Components/pull/101" - ], - "pr_dates": ["2024-10-07", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125800432?u=e03682f18b7a4f970ac82fe1e3a69010da42e76a&v=4", - "login": "rupesh-dev30", - "url": "https://github.com/rupesh-dev30", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Code-Social/official-website/pull/147", - "https://github.com/subhadipbhowmik/bio-branch/pull/241", - "https://github.com/subhadipbhowmik/bio-branch/pull/112" - ], - "pr_dates": ["2024-10-08", "2024-10-10", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123246645?v=4", - "login": "Sunny1198", - "url": "https://github.com/Sunny1198", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/188", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/267", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/222" - ], - "pr_dates": ["2024-10-11", "2024-10-12", "2024-10-13"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157781810?u=87427751b83bc4a5484eb1160c91e24c45bc9f6d&v=4", - "login": "Rish6392", - "url": "https://github.com/Rish6392", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/396", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/595", - "https://github.com/tushargupta1504/Medical-Website/pull/536" - ], - "pr_dates": ["2024-10-19", "2024-10-20", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118799941?u=80ca60d139bb6659863bd178dff5e887ae23b280&v=4", - "login": "officeneerajsaini", - "url": "https://github.com/officeneerajsaini", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/393", - "https://github.com/Trisha-tech/OnlineBookSales/pull/605", - "https://github.com/Trisha-tech/OnlineBookSales/pull/604" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146356399?u=4996b36ed8f6232fc69ee3b2e68cd2ef11eca673&v=4", - "login": "RajputSneha17", - "url": "https://github.com/RajputSneha17", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/971", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/948", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/900" - ], - "pr_dates": ["2024-10-25", "2024-10-27", "2024-10-28"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159465464?v=4", - "login": "ahinagangopadhyay", - "url": "https://github.com/ahinagangopadhyay", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/98", - "https://github.com/AlgoGenesis/C/pull/487", - "https://github.com/PriyaGhosal/BuddyTrail/pull/188" - ], - "pr_dates": ["2024-10-02", "2024-10-07", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161505072?u=1a52679a5f2ba118e21a84fc59c7861462fd100d&v=4", - "login": "vinit105", - "url": "https://github.com/vinit105", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/prajapatihet/donorconnect/pull/11", - "https://github.com/prajapatihet/donorconnect/pull/8", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/81" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139450046?v=4", - "login": "Anwishta", - "url": "https://github.com/Anwishta", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/308", - "https://github.com/Anjaliavv51/Retro/pull/271", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/361" - ], - "pr_dates": ["2024-10-06", "2024-10-08", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118660840?u=4bb9e22270d99a4728c1fcb6c936bf1a8cb4df7c&v=4", - "login": "mishradev1", - "url": "https://github.com/mishradev1", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/75", - "https://github.com/manikumarreddyu/AgroTech-AI/pull/69", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/3" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112554289?u=f9ce9cdf3abf7797d70bc93c0747c1aaad5dfb78&v=4", - "login": "SupratitDatta", - "url": "https://github.com/SupratitDatta", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/101", - "https://github.com/PriyaGhosal/BuddyTrail/pull/459", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/211" - ], - "pr_dates": ["2024-10-08", "2024-10-09", "2024-10-10"], - "streak": 3 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183258836?v=4", - "login": "Salini-sat", - "url": "https://github.com/Salini-sat", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/412", - "https://github.com/AlgoGenesis/C/pull/310", - "https://github.com/AlgoGenesis/C/pull/193", - "https://github.com/AlgoGenesis/C/pull/171" - ], - "pr_dates": ["2024-10-05", "2024-10-08", "2024-10-09"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69814108?u=fdaeea1df6e25c5fae9e7560bfdc1ebe511c3ecf&v=4", - "login": "CodeWithBishal", - "url": "https://github.com/CodeWithBishal", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/1788", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1785", - "https://github.com/PriyaGhosal/BuddyTrail/pull/1470" - ], - "pr_dates": ["2024-10-24", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144109826?u=ab1b7e96d97f63bf81e15434262460e42f7c6afa&v=4", - "login": "sheezah01", - "url": "https://github.com/sheezah01", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1725", - "https://github.com/iamrahulmahato/master-web-development/pull/1594", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/844" - ], - "pr_dates": ["2024-10-19", "2024-10-22", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124716958?u=04f8345e6dd1c30de7e9e076adeb6da289b5c350&v=4", - "login": "DeshDeepakKushwaha", - "url": "https://github.com/DeshDeepakKushwaha", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/789", - "https://github.com/iamrahulmahato/master-web-development/pull/787", - "https://github.com/iamrahulmahato/master-web-development/pull/786" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144759739?v=4", - "login": "Ashmita-15", - "url": "https://github.com/Ashmita-15", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/72", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/53", - "https://github.com/notsoocool/codecache/pull/166" - ], - "pr_dates": ["2024-10-02", "2024-10-03", "2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109849199?u=92fc714f0f0efa8a12a94a4afbeab3d598836d5c&v=4", - "login": "harbakshsinghbaath", - "url": "https://github.com/harbakshsinghbaath", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/85", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/25", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/17" - ], - "pr_dates": ["2024-10-01", "2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182402231?u=d066e4312c7ab33c8abf45072a097016ba490ab4&v=4", - "login": "sourabhmajoka", - "url": "https://github.com/sourabhmajoka", - "score": 30, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swarooppatilx/scruter/pull/215", - "https://github.com/swarooppatilx/scruter/pull/212", - "https://github.com/GDSC-RCCIIT/gdg-website/pull/284" - ], - "pr_dates": ["2024-10-19", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119651242?v=4", - "login": "dhruvjain23", - "url": "https://github.com/dhruvjain23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/22", - "https://github.com/codeaashu/DevDisplay/pull/159", - "https://github.com/Luson045/medi-connect/pull/177" - ], - "pr_dates": ["2024-10-03", "2024-10-05", "2024-10-06"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154300084?u=59fee2dd3682d0a196b5ea65fc22360872d52e40&v=4", - "login": "Ayush215mb", - "url": "https://github.com/Ayush215mb", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jinx-vi-0/passop/pull/44", - "https://github.com/mdazfar2/Ezyshop/pull/65" - ], - "pr_dates": ["2024-10-02", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59202801?u=f3c4562db69bcd9d54d8f3119853bfe1a1ed49ca&v=4", - "login": "FazeZxc", - "url": "https://github.com/FazeZxc", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/passop/pull/25"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93068969?u=47029a16ef09f35d11c880ade365f864dd22295f&v=4", - "login": "kashikaga", - "url": "https://github.com/kashikaga", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/passop/pull/16"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171241332?u=fe91bafeaaa4fbf23bcf4cfc99984f1f69e0b987&v=4", - "login": "AnsharaFayazBeigh", - "url": "https://github.com/AnsharaFayazBeigh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/BlogLog/pull/64"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179501980?u=b28dfaa30be11b967288f12338673bf8c0ffa5c7&v=4", - "login": "xenomancy", - "url": "https://github.com/xenomancy", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/781"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86361617?v=4", - "login": "sahildevil", - "url": "https://github.com/sahildevil", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/770"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121884434?u=4f1b49f59a8e9a4f8ff011b55db6fd1e067b7df5&v=4", - "login": "iwanturequity", - "url": "https://github.com/iwanturequity", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/384"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119668078?u=73e51b772b6160f01cad0d8ea59576af6023bb0f&v=4", - "login": "anishmu20", - "url": "https://github.com/anishmu20", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajaynegi45/LibraryMan-API/pull/65"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69838867?u=b61e1971162789c87282053e8e668cd92177f769&v=4", - "login": "atmajaa", - "url": "https://github.com/atmajaa", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/597" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138332085?u=eb88161d64a9f480b9df2efdbaf94011e9ee5409&v=4", - "login": "rahulYUV", - "url": "https://github.com/rahulYUV", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/591" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177462479?u=9cc8eba28f750f291d53b8a473b6d7ff5784c645&v=4", - "login": "ayushdubey570", - "url": "https://github.com/ayushdubey570", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/573" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143064148?v=4", - "login": "taniya542", - "url": "https://github.com/taniya542", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/387" - ], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138269620?u=5ba53ff938923e46f17994256a84b8860ff3724a&v=4", - "login": "rupashreesmagic", - "url": "https://github.com/rupashreesmagic", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/110" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115712853?u=feacc804e999dca3738bf1bd01bc8e24fde38270&v=4", - "login": "Akanshaku", - "url": "https://github.com/Akanshaku", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/57" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91839763?u=f1c4f8597d84ee3c3910b4e3b594eea987788026&v=4", - "login": "Cleveridiot07", - "url": "https://github.com/Cleveridiot07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/103" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114584730?u=7ffdecff6fb70691f13a76300ad461ab11898689&v=4", - "login": "Tholkappiar", - "url": "https://github.com/Tholkappiar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/81"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139164529?u=d128f3535a66a64ec0c6c93cfff928d29a537e0d&v=4", - "login": "Anushkam09", - "url": "https://github.com/Anushkam09", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/128"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94627200?u=cabe9a929f997b4549613aac888bcbc91f62dba2&v=4", - "login": "Himanshuch8055", - "url": "https://github.com/Himanshuch8055", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/43"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138001726?u=d2a401b08ff6e7cf824afc2751d9ea74199ffc07&v=4", - "login": "Saloni3494", - "url": "https://github.com/Saloni3494", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/28"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126314871?u=221a7156c29b59dd3ac1e18a56f6bb8cf80fd9d1&v=4", - "login": "sinhaudita", - "url": "https://github.com/sinhaudita", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/131"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135465642?u=f1e2113b158ce6963f5fa91026abcc362d412bee&v=4", - "login": "sahilwadaskar07", - "url": "https://github.com/sahilwadaskar07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/63"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84288735?v=4", - "login": "SAMluci666", - "url": "https://github.com/SAMluci666", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/592"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123067195?v=4", - "login": "Lakshay1838", - "url": "https://github.com/Lakshay1838", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuj123upadhyay/MegaBlog/pull/69"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120572025?v=4", - "login": "Payal-Sinha09", - "url": "https://github.com/Payal-Sinha09", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/3027"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168267410?v=4", - "login": "sakship2005", - "url": "https://github.com/sakship2005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/1098"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155942674?u=21d7efc86bdc1e2e561a4b26453f00219e1a1e3e&v=4", - "login": "NM3806", - "url": "https://github.com/NM3806", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/758"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174330316?v=4", - "login": "Bhawnarajput1502", - "url": "https://github.com/Bhawnarajput1502", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/547"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130424183?v=4", - "login": "harshitjain476493", - "url": "https://github.com/harshitjain476493", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/534"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85986862?u=c26b92925753d53b52b6306338373379bb4177ed&v=4", - "login": "ayush-py-c", - "url": "https://github.com/ayush-py-c", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/279"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98173884?u=4acddc48c92751a0a2c55af5a81b68ab991c8189&v=4", - "login": "hariscoder3", - "url": "https://github.com/hariscoder3", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/151"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76985864?u=551b688e6c7124875a5b010261feb1d471b08fd3&v=4", - "login": "medakshchoudhary", - "url": "https://github.com/medakshchoudhary", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/72"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113545732?u=c5d834852de27cdaf9a68ed008f568b5e27aaf99&v=4", - "login": "w0wayush", - "url": "https://github.com/w0wayush", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/191", - "https://github.com/Soumojitshome2023/nextjs-videocall-webapp/pull/17" - ], - "pr_dates": ["2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128213933?u=d49ea0469baadfed069d1ae3472da8eabd9bcde1&v=4", - "login": "ishap11", - "url": "https://github.com/ishap11", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/188", - "https://github.com/sanjay-kv/Open-source-Practice/pull/359" - ], - "pr_dates": ["2024-05-10", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169772258?u=06af9ca2090596ec6f8d3045caf567f801090378&v=4", - "login": "synakr", - "url": "https://github.com/synakr", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/149" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127435065?u=e066c799d8e4e5548818545d9e3028aaf707d359&v=4", - "login": "aniruddhaadak80", - "url": "https://github.com/aniruddhaadak80", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/439" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181278649?u=d7119f6e9fc26c050af0abf0cd87af42d595e5fd&v=4", - "login": "Satashee", - "url": "https://github.com/Satashee", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/419" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/50513398?u=7899f15216b7fec7f14ae8cf3111bc5ef1d0b4dc&v=4", - "login": "IshuSinghSE", - "url": "https://github.com/IshuSinghSE", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/351" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82778097?u=199d2e914353a98512531c874ec59c68230a4a5b&v=4", - "login": "NamanVer02", - "url": "https://github.com/NamanVer02", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/261" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150131831?v=4", - "login": "23WH1A0507", - "url": "https://github.com/23WH1A0507", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/133" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145552699?u=9c74ec204962350881aa740c4e6e62770d6b6a4f&v=4", - "login": "Moses-Mk", - "url": "https://github.com/Moses-Mk", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Avdhesh-Varshney/Jarvis/pull/146"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102245218?u=59cd57a96b38a20779f495cc28b426d06c305180&v=4", - "login": "Abhishekgt", - "url": "https://github.com/Abhishekgt", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/2345"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89746236?v=4", - "login": "skycypherxo", - "url": "https://github.com/skycypherxo", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1829"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110579693?u=8b05a7705448abb105df2309c0110b151bcaa2a7&v=4", - "login": "ujjwal-207", - "url": "https://github.com/ujjwal-207", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1825"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116811157?u=9233552948a7c1913f05bad1f488262fb16817c6&v=4", - "login": "Abhijeet14d", - "url": "https://github.com/Abhijeet14d", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1539"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158816854?u=1708c1326d681a77b2c8922444186af72e2a3744&v=4", - "login": "Vanshika-OFFICIAL", - "url": "https://github.com/Vanshika-OFFICIAL", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1517"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121241266?v=4", - "login": "rajfauzdar", - "url": "https://github.com/rajfauzdar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1473"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121218617?u=ad97ce6046732b4b81ea86c8f6bdf595bf5d054c&v=4", - "login": "AnushkaGupta2003", - "url": "https://github.com/AnushkaGupta2003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1446"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63149580?u=b159c9760ea37dad50b35a456eb7468985b12865&v=4", - "login": "Sujal942", - "url": "https://github.com/Sujal942", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1318"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147000981?v=4", - "login": "magancodes", - "url": "https://github.com/magancodes", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1073"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/35933338?u=d0b7994ec10456c4bdba6e90360c1af012f015d3&v=4", - "login": "FaheemOnHub", - "url": "https://github.com/FaheemOnHub", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/966"], - "pr_dates": ["2024-08-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151853567?u=6a52876a07923aba9181897e2cf3a1ff54eaa061&v=4", - "login": "ratna-jaiswal", - "url": "https://github.com/ratna-jaiswal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/224"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87691594?u=cd91a32cde3abaf14c2bc3dc47a2e8ea3990b53e&v=4", - "login": "maitri-vv", - "url": "https://github.com/maitri-vv", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/178"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130924126?v=4", - "login": "S7viks", - "url": "https://github.com/S7viks", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/55"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74350750?u=ff42fae0b9fb2f61bd23869beb65a66e1e1eac6a&v=4", - "login": "DevanshuTripathi", - "url": "https://github.com/DevanshuTripathi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/BamaCharanChhandogi/GitFinder/pull/80"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/54994055?u=fff0988eca48c3ed89f23790458b95f4a13851eb&v=4", - "login": "dharmesh191312", - "url": "https://github.com/dharmesh191312", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/578" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146707453?v=4", - "login": "eshitatalukdar08", - "url": "https://github.com/eshitatalukdar08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/341" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143288592?u=69ade504026d90e6748ceb2d83785b88dc24cc64&v=4", - "login": "soumyajit254", - "url": "https://github.com/soumyajit254", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/144" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133075553?u=8517767df0438d87c04db90b09186c39afa15030&v=4", - "login": "Meharsh7804", - "url": "https://github.com/Meharsh7804", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/FinNews/pull/150"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125309149?v=4", - "login": "KunalPusdekar", - "url": "https://github.com/KunalPusdekar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/FinNews/pull/55"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148000173?u=d1bdd0782bdb3d1cdd16c9609f9e1d5eafb40986&v=4", - "login": "ashishyadav512", - "url": "https://github.com/ashishyadav512", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/169"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139033511?v=4", - "login": "saisaranya2005", - "url": "https://github.com/saisaranya2005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/93"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72178142?u=1832e3035bcf521f34861aa100c60e41ec392e61&v=4", - "login": "devkumar2313", - "url": "https://github.com/devkumar2313", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Devamani11D/salt-app-kickstart/pull/38"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70331875?u=74b2f5652b8628153e2794b366481d3515b17f32&v=4", - "login": "nikhilkalburgi", - "url": "https://github.com/nikhilkalburgi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Devamani11D/salt-app-kickstart/pull/7"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152192451?u=60f87cb50f9843c62f21e12be689f5b76b0239b1&v=4", - "login": "coderashhar", - "url": "https://github.com/coderashhar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/498" - ], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95907789?u=1cdf554fd9e5f7456f23c9205e4f3f49fa9a503d&v=4", - "login": "Shubham0523", - "url": "https://github.com/Shubham0523", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/264" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139130413?u=e394123a39893e7e07376aa5e2fe238f3fb54a54&v=4", - "login": "OmDixit2107", - "url": "https://github.com/OmDixit2107", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/prajapatihet/donorconnect/pull/109"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/8505293?u=0de1edc84079217fc706f78cd697f8df8b713d66&v=4", - "login": "stevenanthonyrevo", - "url": "https://github.com/stevenanthonyrevo", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/268" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146851304?u=2541f75e60c7ff5aec24909262efca0c42d384af&v=4", - "login": "sujalcharati", - "url": "https://github.com/sujalcharati", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/256" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78198704?u=8c93c7041f1f5bd95b809236827d4b166e043207&v=4", - "login": "RajeshTechForge", - "url": "https://github.com/RajeshTechForge", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/170" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169372155?u=0fe7054e9d26d840c2ca5dc0d8652ff57671ecdd&v=4", - "login": "FSBM", - "url": "https://github.com/FSBM", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/129" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103762441?v=4", - "login": "NazTM", - "url": "https://github.com/NazTM", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/59" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161845983?u=832aa3d6e6983f4a28f8ceab22161065e2fa8921&v=4", - "login": "masabinhok", - "url": "https://github.com/masabinhok", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/29", - "https://github.com/tushargupta1504/Medical-Website/pull/126" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91680767?u=5d7c73145168aa45b4621db848b443395c3360de&v=4", - "login": "justhappyuknow", - "url": "https://github.com/justhappyuknow", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Open-Code-Crafters/FitFlex/pull/252"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122472826?u=bc0c93287942415031a1c64b0e16cda1dd4e6119&v=4", - "login": "rajlakshmi18704", - "url": "https://github.com/rajlakshmi18704", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Open-Code-Crafters/FitFlex/pull/39"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120407395?u=b9a44ec3f9a1be53187a15ca384d9ea64e57994c&v=4", - "login": "nandini-queen-of-my-world", - "url": "https://github.com/nandini-queen-of-my-world", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/kom-senapati/bot-verse/pull/235"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161356023?v=4", - "login": "vaishvi2811", - "url": "https://github.com/vaishvi2811", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/540"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183906349?u=e4b4a053ca7ded5dbf350da310e74d90250fc9ce&v=4", - "login": "NanFangDieDao", - "url": "https://github.com/NanFangDieDao", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/121"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83550858?u=ddc73990eb695947dda55062fc1b192511f55fa2&v=4", - "login": "priyans877", - "url": "https://github.com/priyans877", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/86"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100556531?u=45d5829ef3a9c89d062be1085164fdb40fbec5c1&v=4", - "login": "Pseudophoenix", - "url": "https://github.com/Pseudophoenix", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/76"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112469577?u=f2a186a62af8a21d4012ef01fb359ad0ca969f72&v=4", - "login": "Hafsa-shoaib989", - "url": "https://github.com/Hafsa-shoaib989", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Kota-Karthik/twinTrim/pull/152"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182559757?u=6c4d4ae0af6724108b881d495dc956c7e5994c7f&v=4", - "login": "Varun-malviya5", - "url": "https://github.com/Varun-malviya5", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Kota-Karthik/twinTrim/pull/55"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91674437?u=6ee6e8ea93e0d3642c8961729a62e9242aaa79d3&v=4", - "login": "In-Saiyan", - "url": "https://github.com/In-Saiyan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Kota-Karthik/twinTrim/pull/38"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63968799?u=7ab5510aece710967aad5ab605d43921e1706c92&v=4", - "login": "RanjanaShenoy", - "url": "https://github.com/RanjanaShenoy", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/540"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/80532254?u=73353449a942d318e89f2a9a24afc0ab828021af&v=4", - "login": "iam-sarthak", - "url": "https://github.com/iam-sarthak", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/475"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143580538?v=4", - "login": "MdNadimUddin01", - "url": "https://github.com/MdNadimUddin01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/420"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103410083?u=f183d5407c897e0bfd1204e26a11b2927903ad32&v=4", - "login": "akshatshukla13", - "url": "https://github.com/akshatshukla13", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/124"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146568950?v=4", - "login": "prathmesh703", - "url": "https://github.com/prathmesh703", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/75"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115055244?u=6904212d3052408e1327784a63bfc74bc7264796&v=4", - "login": "Mukesh-ghildiyal", - "url": "https://github.com/Mukesh-ghildiyal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Luson045/medi-connect/pull/19", - "https://github.com/Luson045/medi-connect/pull/17" - ], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117840110?v=4", - "login": "kaishwarya24", - "url": "https://github.com/kaishwarya24", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/manikumarreddyu/AgroTech-AI/pull/279"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120174779?u=cffcc83a6d0bb8021d170bbeabc3e8ac9d0acac1&v=4", - "login": "undertakerme", - "url": "https://github.com/undertakerme", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/938"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138992584?u=1f86bffcfb00ed5cd0ea40adf415afcdd6949448&v=4", - "login": "SarangAhlawat", - "url": "https://github.com/SarangAhlawat", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/897"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143793407?v=4", - "login": "kunal649", - "url": "https://github.com/kunal649", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/415"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158484284?v=4", - "login": "solanki505", - "url": "https://github.com/solanki505", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/277", - "https://github.com/iamrahulmahato/master-web-development/pull/914" - ], - "pr_dates": ["2024-10-06", "2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146920220?u=7cfc5f3daffb94dc97d85fbde0f7cff28d6e299b&v=4", - "login": "ketan270", - "url": "https://github.com/ketan270", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/264"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171677507?u=1fd3919e7afa3c03119d670a803950872e9af0be&v=4", - "login": "Engineerrobin7", - "url": "https://github.com/Engineerrobin7", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/117"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98543992?u=7898a125c3bc494b0423148c8073008efbb6968c&v=4", - "login": "Dyslex7c", - "url": "https://github.com/Dyslex7c", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Megh2005/Med-o-Next/pull/45"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140332592?u=2858aa6a1e70ab2fb7346df9bf4817619a2e4776&v=4", - "login": "dhruvishah122", - "url": "https://github.com/dhruvishah122", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/MinavKaria/Ratna-Supermarket/pull/92"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75496387?u=7a16226d0800f8fe6e424f3f45ea16f8da321f3b&v=4", - "login": "BaibhavTiwari", - "url": "https://github.com/BaibhavTiwari", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/MitulSonagara/truth-tunnel/pull/16"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121358775?u=b4143791c697cd901466337be0b9d74ca1f8ca51&v=4", - "login": "mauryavinay1407", - "url": "https://github.com/mauryavinay1407", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TherkuTech/tturl/pull/69"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83836984?u=fd1f3f4187fde1365d7b14062be0eb4e469d3bb0&v=4", - "login": "Sehrishzarin", - "url": "https://github.com/Sehrishzarin", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TherkuTech/tturl/pull/42"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154980682?v=4", - "login": "KunjShah95", - "url": "https://github.com/KunjShah95", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ombhojane/explainableai/pull/28"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154666565?v=4", - "login": "shrashti-19", - "url": "https://github.com/shrashti-19", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/iamparas0/TIC-TAC-TOE/pull/196"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138239894?u=51d9a2211bdddc408aeed583026ceebea0af8198&v=4", - "login": "tejasam571", - "url": "https://github.com/tejasam571", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/iamparas0/TIC-TAC-TOE/pull/159"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119114795?u=5628972e13c5e49e7e0bba2c82e61bd69ea5748e&v=4", - "login": "Shahzal-Rehman", - "url": "https://github.com/Shahzal-Rehman", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/andoriyaprashant/DevDocsHub/pull/63"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/51832219?v=4", - "login": "deekshithdv", - "url": "https://github.com/deekshithdv", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/andoriyaprashant/OpSo/pull/322"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/58940037?v=4", - "login": "Sushil010", - "url": "https://github.com/Sushil010", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1801"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183536793?v=4", - "login": "KhanjarSingh", - "url": "https://github.com/KhanjarSingh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1478"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122166523?v=4", - "login": "sohailshk", - "url": "https://github.com/sohailshk", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1445"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148173480?u=af3b61868073a239cb965f4b7f5420730fd70605&v=4", - "login": "mahigupta16", - "url": "https://github.com/mahigupta16", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1412"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141620322?u=74d92cfc34cc5bf0562223c515015becf59a0162&v=4", - "login": "ayusharyan143", - "url": "https://github.com/ayusharyan143", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1374"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121454018?u=840afae16ec710e551d1966de136b1a99d684ca1&v=4", - "login": "Sakshar-Devgon", - "url": "https://github.com/Sakshar-Devgon", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1322"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84829899?v=4", - "login": "pa1narendra", - "url": "https://github.com/pa1narendra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1315"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167566611?u=f23d36c25c00546c0118e5e23392f4d859af90f5&v=4", - "login": "ayushvyasonwork", - "url": "https://github.com/ayushvyasonwork", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1210"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110977868?u=2ab30f1bb1f99d31e26f24c313685d0206bfea33&v=4", - "login": "thedarkking01", - "url": "https://github.com/thedarkking01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1156"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148559860?u=997b70823afa59bdb8f44215bbf8a556f1888eea&v=4", - "login": "gunajidiksha", - "url": "https://github.com/gunajidiksha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1094"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145857414?v=4", - "login": "Declan1704", - "url": "https://github.com/Declan1704", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1092"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129523087?u=f29f409c46e7240c87afa685489ed9d2631577b3&v=4", - "login": "zeropse", - "url": "https://github.com/zeropse", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/817"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78152828?v=4", - "login": "South-IN", - "url": "https://github.com/South-IN", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Puskar-Roy/create-my-api/pull/43"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133767472?u=d68c07693cee536e9aeea557eddcf8f5c4dd9611&v=4", - "login": "05kaavya", - "url": "https://github.com/05kaavya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/807" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151992419?u=e0bbd9bcfac9ee0b27f4b3a0af491bd7c007f3b1&v=4", - "login": "Winter262005", - "url": "https://github.com/Winter262005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/804" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125984550?u=d397eff0abbd2bc74ee1efb02b2680855a22b4b3&v=4", - "login": "sajalbatra", - "url": "https://github.com/sajalbatra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/RamakrushnaBiswal/PlayCafe/pull/47"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69795247?u=fbf51c4f0990c2db1123a0011bb8852090e05a40&v=4", - "login": "priyansh985", - "url": "https://github.com/priyansh985", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/rohitinu6/Stock-Price-Prediction/pull/136" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135733878?u=53d43fd4ac83070dbfe1a051e72e8e590a81d10c&v=4", - "login": "mrskjha", - "url": "https://github.com/mrskjha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/samyakmaitre/eventmint/pull/189"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137323221?v=4", - "login": "ayush-343", - "url": "https://github.com/ayush-343", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/samyakmaitre/eventmint/pull/147"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143260941?u=ae6f95df805d25e9bb91d20db2fa2a3b3d67b967&v=4", - "login": "vanshika704", - "url": "https://github.com/vanshika704", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/samyakmaitre/eventmint/pull/139"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159925706?u=0b9ac80c37b4f6a0cc357b50998b9c75cbe4afeb&v=4", - "login": "charliehustlr1792", - "url": "https://github.com/charliehustlr1792", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SanchitGeez/Investra/pull/36"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107394576?u=91052af09c4c7d23511d0635a2c9469bd630a15f&v=4", - "login": "rishuishind", - "url": "https://github.com/rishuishind", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SanchitGeez/Investra/pull/21"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106537325?u=e4643c46331b4d6a72f8488f21db707a6833ea00&v=4", - "login": "SanchitGeez", - "url": "https://github.com/SanchitGeez", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SanchitGeez/Investra/pull/20"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141009952?u=1594a6016ef6d749204be19a3bbd3a8e28efa2c5&v=4", - "login": "prashantsingh181", - "url": "https://github.com/prashantsingh181", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1108" - ], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181555122?u=e850d2b9b33dcb3bedc83dd059be7143cdf721e8&v=4", - "login": "jayadarshinig0609", - "url": "https://github.com/jayadarshinig0609", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/985" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138484882?u=c351bcaed97fc7ccc72b1637af562c1703684251&v=4", - "login": "himasnhu018", - "url": "https://github.com/himasnhu018", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/974" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112549772?u=458a92d0daf0cfdc4b8d54cd9099373e095b2aa1&v=4", - "login": "vprathap21", - "url": "https://github.com/vprathap21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/625" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123236348?u=81ad4110c87db38928014b00135eabb67eaac413&v=4", - "login": "harshdeshmukh21", - "url": "https://github.com/harshdeshmukh21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1473" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99339360?v=4", - "login": "Nikhith221B", - "url": "https://github.com/Nikhith221B", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1242" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138043095?u=9048666e860afec773e4043a73eec8a90a8c3686&v=4", - "login": "AJ-Athira", - "url": "https://github.com/AJ-Athira", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/machine-learning-repos/pull/1240" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106096425?u=c8fc58478e78469bbd0c559ddc57aa7662915a0b&v=4", - "login": "aanushkaguptaa", - "url": "https://github.com/aanushkaguptaa", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/recodehive/Scrape-ML/pull/244"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111111887?u=1e874f112179e701b6e14f6bcc9a9741e97153ee&v=4", - "login": "Rashipotey", - "url": "https://github.com/Rashipotey", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SaranshBangar/Daneizo/pull/129"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112960100?v=4", - "login": "ritikprajapat21", - "url": "https://github.com/ritikprajapat21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/shivamyadavrgipt/Social_media_management/pull/108" - ], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91868226?u=17a805abef96c7ccc840eb441a17b68d4c24843e&v=4", - "login": "ChandraST12", - "url": "https://github.com/ChandraST12", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayerhssb/Appointment-booking-app/pull/10", - "https://github.com/SwanandD121/FeatherPerfect_fe/pull/34" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/17063640?v=4", - "login": "JonasBakys0", - "url": "https://github.com/JonasBakys0", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Sidharth-Singh10/Affinity-backend/pull/14" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126897302?u=c01e6d5408f5e4c3b867b2cd74b5f6e119708260&v=4", - "login": "18Prachi", - "url": "https://github.com/18Prachi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/soham0005/ElectroKart/pull/209"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97843514?u=def0338c5d997d1dbc392122351c38d2b0826aba&v=4", - "login": "shubham18102000", - "url": "https://github.com/shubham18102000", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/soham0005/ElectroKart/pull/39"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129115574?v=4", - "login": "Aarushi08sood", - "url": "https://github.com/Aarushi08sood", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Soujanya2004/wanderlust-2024/pull/116"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100504874?u=e59b74361ffe6927af27ff14688ffe61bc79517e&v=4", - "login": "alok-mishra143", - "url": "https://github.com/alok-mishra143", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SurajPratap10/Imagine_AI/pull/1235"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160459313?v=4", - "login": "sumitd9115", - "url": "https://github.com/sumitd9115", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SwanandD121/FeatherPerfect_fe/pull/20"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126486217?u=5abf4821e85a99685e8a799a272804998798330e&v=4", - "login": "YadavAkhileshh", - "url": "https://github.com/YadavAkhileshh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/96" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/3101238?u=16efc144774e4a6e1488886582420c2486f01ae6&v=4", - "login": "JCarlosR", - "url": "https://github.com/JCarlosR", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/81" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91315409?u=0a2a28cf9fa3d7e71b3c11fdfcf2b66259503477&v=4", - "login": "Riddhi12349", - "url": "https://github.com/Riddhi12349", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/swarooppatilx/scruter/pull/313"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/79577256?u=6cfcd19c048521d76542e18f9bc15c968c210fca&v=4", - "login": "yuvraj1107thapa", - "url": "https://github.com/yuvraj1107thapa", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/swarooppatilx/scruter/pull/214"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109578172?u=f160d14f99274a6a24b384949b6eecb8f6882fd6&v=4", - "login": "ishanikundu", - "url": "https://github.com/ishanikundu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/CodeIt/pull/253"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119591555?u=5c78dbf9b11c99df2b7a7b00a8c107897cd5c9ed&v=4", - "login": "eeshwar369", - "url": "https://github.com/eeshwar369", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/CodeIt/pull/191"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134027325?u=60f2190a4dc260d95ca97534acf3c18231d812ac&v=4", - "login": "soham-khedkar", - "url": "https://github.com/soham-khedkar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/195"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/61317144?u=5d70675efbd5abbcdf50762de335f16448d8d98d&v=4", - "login": "0xSaurabhx", - "url": "https://github.com/0xSaurabhx", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/73"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161581810?u=075ba7aaa63c1837b60479a71040466ad0d9ba04&v=4", - "login": "ronit-ghosh", - "url": "https://github.com/ronit-ghosh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/59"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113225478?u=aaea653becd54a239fd40e80f8bece7933425f6f&v=4", - "login": "TejasNasre", - "url": "https://github.com/TejasNasre", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/31"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98106129?u=83a8b18d8c673768064af0bd41d573c62743412d&v=4", - "login": "AashishNandakumar", - "url": "https://github.com/AashishNandakumar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PySnippets/pull/135"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136020845?u=647875200d0d817b92361291052b40922bb83e06&v=4", - "login": "piyushpatelcodes", - "url": "https://github.com/piyushpatelcodes", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/Gityzer/pull/59"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117281416?u=450235cb6a1fea839fc8682eff3a862b63bbd547&v=4", - "login": "Sakshamp19", - "url": "https://github.com/Sakshamp19", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/ChaosWeb/pull/135"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130129504?v=4", - "login": "Aryan-01-star", - "url": "https://github.com/Aryan-01-star", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/ChaosWeb/pull/124"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153188473?v=4", - "login": "Sonalgupta2005", - "url": "https://github.com/Sonalgupta2005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sharmavikas4/MERN_BLOG/pull/38"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145634394?v=4", - "login": "snehasharma200303", - "url": "https://github.com/snehasharma200303", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vimall03/Alimento/pull/144"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159108658?u=966413852d4b35dba8b1591e515d1529cfe6d601&v=4", - "login": "BlitzIQ-Coder", - "url": "https://github.com/BlitzIQ-Coder", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vimall03/Alimento/pull/33"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90744362?u=721d04e4294cce5ebb922d32104823770a454cac&v=4", - "login": "idk-mr4tyunjay", - "url": "https://github.com/idk-mr4tyunjay", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/268"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100095370?u=388d00b0e5f70f1b2ec87aad074da64ea2d6e8bc&v=4", - "login": "SSShogunn", - "url": "https://github.com/SSShogunn", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/164"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97402824?u=31287580306d15a53ccbeaac02be322b97a47dc7&v=4", - "login": "rko0211", - "url": "https://github.com/rko0211", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/54"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115941635?v=4", - "login": "infernodragon456", - "url": "https://github.com/infernodragon456", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/46"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144105275?v=4", - "login": "Agnish1611", - "url": "https://github.com/Agnish1611", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/32"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124813884?v=4", - "login": "Ayushh23", - "url": "https://github.com/Ayushh23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/104"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146313034?v=4", - "login": "Uditya-Raj", - "url": "https://github.com/Uditya-Raj", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/97"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94545831?v=4", - "login": "utkarsh006", - "url": "https://github.com/utkarsh006", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/85"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142222625?u=4c5c8fd3ea692f83b19bdfc4754e88a61363c841&v=4", - "login": "STDYGIT", - "url": "https://github.com/STDYGIT", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/105" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102892315?u=22e9fd7d3f3620df2c036b3c78d942899239817b&v=4", - "login": "Amarjeetkumart", - "url": "https://github.com/Amarjeetkumart", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/57" - ], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/39937989?u=c33402ba8348273b67a1a445dcc845a507ec1758&v=4", - "login": "vijaykarthiktk", - "url": "https://github.com/vijaykarthiktk", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/88"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163281910?u=4896f2d4d10a24f1b8e5d27b1202700fddfb7d9e&v=4", - "login": "MaRyamFatima1120", - "url": "https://github.com/MaRyamFatima1120", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/42"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143927223?u=cf35918a9a2dba4745676f7ac324faf20e4a898e&v=4", - "login": "Sonuu20", - "url": "https://github.com/Sonuu20", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/notsoocool/codecache/pull/162"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118589236?v=4", - "login": "RishabhSri17", - "url": "https://github.com/RishabhSri17", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yashgabani845/hiring-portal/pull/186"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144051175?u=aa4fdcd348fd39cd3ce42d29903b45b012880282&v=4", - "login": "ayyush08", - "url": "https://github.com/ayyush08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yashgabani845/hiring-portal/pull/158"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147709659?v=4", - "login": "Kushagra1taneja", - "url": "https://github.com/Kushagra1taneja", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yashasvini121/predictive-calc/pull/197"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113435632?u=276ab83d31da9286b22eb4169ad2e1fb34c6f0d6&v=4", - "login": "DG492003", - "url": "https://github.com/DG492003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yashasvini121/predictive-calc/pull/113"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173944856?u=94af6cd47d256bd63f85b581b8fdbc022b61ba0c&v=4", - "login": "Virat-Shrimali", - "url": "https://github.com/Virat-Shrimali", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AmateursLeague/sneaky-package/pull/40"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162024388?u=8e20ef46d7780150b3f6627ffc5282661a4e83fb&v=4", - "login": "dfordebarati", - "url": "https://github.com/dfordebarati", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GDSC-RCCIIT/gdg-website/pull/358"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112308255?u=34b7b59804928d69dc8f77da3176dca126ab41d8&v=4", - "login": "Blink-drift", - "url": "https://github.com/Blink-drift", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/147" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108415064?u=8bf14935adbf533dc7ee1c8cfb1acf38e1f48fb6&v=4", - "login": "SagarSharma2809", - "url": "https://github.com/SagarSharma2809", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Vinay-Khanagavi/Cyberbear.github.io/pull/130" - ], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119152160?u=126e73c239e2c40ad3fb8a150832440c2738915e&v=4", - "login": "Parthshukla26", - "url": "https://github.com/Parthshukla26", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/apu52/Travel_Website/pull/1532"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182750153?v=4", - "login": "AyushDubey23", - "url": "https://github.com/AyushDubey23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/apu52/Travel_Website/pull/1528"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148576891?u=7f5c9e77dd75a588a814916a809202722b0207f4&v=4", - "login": "Dharmi-dev", - "url": "https://github.com/Dharmi-dev", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/4darsh-Dev/DecenTrade/pull/89"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113705018?u=3f16cbfd422b8a1bfe2d317f30770d06e97c0303&v=4", - "login": "Saiweb3dev", - "url": "https://github.com/Saiweb3dev", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/4darsh-Dev/DecenTrade/pull/63"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/53639645?u=fac598900682f1a7e6fa6d5f797d4b7a2d893341&v=4", - "login": "PhantomANaz", - "url": "https://github.com/PhantomANaz", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/347"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94289402?u=8e085fd8a710ca316de9262c73098c77f7edb37c&v=4", - "login": "ShreeluSantosh", - "url": "https://github.com/ShreeluSantosh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/56"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/57056757?u=b0e15b61d1a671420db41de4feaef3147dc12783&v=4", - "login": "mohdahsanrazakhan", - "url": "https://github.com/mohdahsanrazakhan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vanshchauhan21/CryptoTracker/pull/297"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113995984?u=4f906dd87c4295d07a2432bf65bd32e0d0c1e981&v=4", - "login": "shreya6286", - "url": "https://github.com/shreya6286", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vanshchauhan21/CryptoTracker/pull/38", - "https://github.com/vanshchauhan21/CryptoTracker/pull/29" - ], - "pr_dates": ["2024-10-19", "2024-10-20"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179908923?v=4", - "login": "suhitha02", - "url": "https://github.com/suhitha02", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1252" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162383855?v=4", - "login": "yg2505", - "url": "https://github.com/yg2505", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1249" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109480953?u=2c96e893c90f089ae5cd6101c8b1986f19e0ea49&v=4", - "login": "nsain25", - "url": "https://github.com/nsain25", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1248" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144353922?v=4", - "login": "msk21shoaib", - "url": "https://github.com/msk21shoaib", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1234" - ], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96858242?u=3b2742cc4e50873f0cc0543d099935d455a77c39&v=4", - "login": "ArchitSr313", - "url": "https://github.com/ArchitSr313", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1203" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183514653?v=4", - "login": "RitikSinha04", - "url": "https://github.com/RitikSinha04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1198" - ], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113936355?u=1f03c86e0471bc82c8850843e9663bf6e7677128&v=4", - "login": "janeeshgithub", - "url": "https://github.com/janeeshgithub", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1189" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168536829?v=4", - "login": "GitGudScrubss", - "url": "https://github.com/GitGudScrubss", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1154" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148810031?u=26c54909a477e0ff261f66c0571bb3e96e74c187&v=4", - "login": "AliGoodarzi-Ai", - "url": "https://github.com/AliGoodarzi-Ai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1150" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122248123?u=b09aba9047f212b848b9eb9baccdfabe682df024&v=4", - "login": "singhabhinendra", - "url": "https://github.com/singhabhinendra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1143" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165240908?u=376947adc7d1bbaff1387d5df6214879baa85a66&v=4", - "login": "emadcode", - "url": "https://github.com/emadcode", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1141" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177007505?u=67964fb2f1176a3f7be51296072aa6c7b49a0bd8&v=4", - "login": "Simran-0024", - "url": "https://github.com/Simran-0024", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1140" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145335328?u=0c48a7976bdfe9040981fcf1878ebfb7770aa894&v=4", - "login": "mahimakathpal", - "url": "https://github.com/mahimakathpal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1138" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116161681?u=c7558e2cc54592fcca90961fccfaf9911c4a9d56&v=4", - "login": "DorafinaTech", - "url": "https://github.com/DorafinaTech", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1133" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135447323?v=4", - "login": "sanjanaapandey", - "url": "https://github.com/sanjanaapandey", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1132" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161478893?u=e9081cd7075b9c1f2f0d399729d563cf92875ae6&v=4", - "login": "neerajsharma897", - "url": "https://github.com/neerajsharma897", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1129" - ], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96936220?u=2fa6cc2da2e9f1e75f0799519e3866acf6ae482c&v=4", - "login": "PriyanshiAgr", - "url": "https://github.com/PriyanshiAgr", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1123" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152974918?v=4", - "login": "Snehagiri554", - "url": "https://github.com/Snehagiri554", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1120" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143961099?v=4", - "login": "farhat-1203", - "url": "https://github.com/farhat-1203", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1116" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166335054?u=72ec2990f95a6d47a34d207022d1157809b9fd0f&v=4", - "login": "AimenDev", - "url": "https://github.com/AimenDev", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1113" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118282182?u=701fa6ff33ae82dd01819bfe4048c1fe04b1eab4&v=4", - "login": "abubakarp789", - "url": "https://github.com/abubakarp789", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1109" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145993687?u=693a8906bd40d3142a8fa563992cfa1c44ba95f6&v=4", - "login": "TanishaBansal101", - "url": "https://github.com/TanishaBansal101", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1108" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165024867?u=d7c0992f6adf8e33a7ef34ac28132cd0cae77178&v=4", - "login": "JeetDas5", - "url": "https://github.com/JeetDas5", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1107" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118209252?u=740d2731557e963c133b1f5e6bec49b06d0f491e&v=4", - "login": "psjhimanshu", - "url": "https://github.com/psjhimanshu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1099" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165153530?v=4", - "login": "Harshini2015", - "url": "https://github.com/Harshini2015", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1097" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150419017?u=c0153b93de3d9b99c01f7b48a649160199582f93&v=4", - "login": "Vaishnavigowda27", - "url": "https://github.com/Vaishnavigowda27", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sanjay-kv/Open-source-Practice/pull/1096" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101520009?v=4", - "login": "Ayushigitgithub", - "url": "https://github.com/Ayushigitgithub", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/783"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155125695?v=4", - "login": "Shridhar2104", - "url": "https://github.com/Shridhar2104", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/781"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151533612?v=4", - "login": "swayamag2004", - "url": "https://github.com/swayamag2004", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/780"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72424695?v=4", - "login": "dhanushsai2006", - "url": "https://github.com/dhanushsai2006", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/778"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88603347?u=b601619983fb0f901181c1326eacea228ee840ef&v=4", - "login": "upadhyayaniket29", - "url": "https://github.com/upadhyayaniket29", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/777"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129399359?u=d97aa17e6f30f5e11d9042f148e4d6f0ac44ff7f&v=4", - "login": "VenuVirparia", - "url": "https://github.com/VenuVirparia", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/776"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91270040?v=4", - "login": "anishpujari", - "url": "https://github.com/anishpujari", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/775"], - "pr_dates": ["2024-05-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152043981?v=4", - "login": "vandana79039", - "url": "https://github.com/vandana79039", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/770"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145834771?u=4a60195ed6d5a0f7c80c48f309b3707e8d45bf35&v=4", - "login": "sk66641", - "url": "https://github.com/sk66641", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/767"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148184793?v=4", - "login": "siddub306", - "url": "https://github.com/siddub306", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/766"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143938614?v=4", - "login": "Sreehithabasireddy666", - "url": "https://github.com/Sreehithabasireddy666", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/765"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125756220?u=faac6270dbd07e44a768ecbff2e7668c872a011a&v=4", - "login": "Tarungupta18", - "url": "https://github.com/Tarungupta18", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/763"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169289872?v=4", - "login": "R1ya4git", - "url": "https://github.com/R1ya4git", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/761"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140538692?v=4", - "login": "Vis1hal", - "url": "https://github.com/Vis1hal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/758"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146347963?v=4", - "login": "havishyareddy", - "url": "https://github.com/havishyareddy", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/757"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128524706?v=4", - "login": "Faiz-Shaikh-16", - "url": "https://github.com/Faiz-Shaikh-16", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/756"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138472894?u=cf3f1a716e9cc7cba1985c9d932f6a24ce4ffa61&v=4", - "login": "aditijha-123", - "url": "https://github.com/aditijha-123", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/755"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95037464?u=b105dea95f44e18c23e4f2481223af853cf302a5&v=4", - "login": "aakashjangra", - "url": "https://github.com/aakashjangra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/754"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148769177?v=4", - "login": "AmanSinghh345", - "url": "https://github.com/AmanSinghh345", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/752"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110554721?u=e770b1fdbe8c790f6c20ffebaed1afa6f0fcbf30&v=4", - "login": "harshiltomar", - "url": "https://github.com/harshiltomar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/750"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149161662?u=8a9b6efd94dffc400eefc6fa66ce52771ac7df86&v=4", - "login": "yuvraj-singh009", - "url": "https://github.com/yuvraj-singh009", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/749"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126945506?u=1d4409d716ce6d856d72d8f722e9fd76059359e7&v=4", - "login": "biswajeetyadavv", - "url": "https://github.com/biswajeetyadavv", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/748"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121748364?u=b3131134c8b72bb20b718e3f4e4b6b7f59e24e20&v=4", - "login": "AnkitMourya12", - "url": "https://github.com/AnkitMourya12", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/745"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115775581?u=9472d7a02d22ec254e509b26a9400e7f02b7a419&v=4", - "login": "harshjoshi1312", - "url": "https://github.com/harshjoshi1312", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/744"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150791025?u=ce0b61720d31476653a7f7d88bed0f88fafa3f88&v=4", - "login": "GaurRitika", - "url": "https://github.com/GaurRitika", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/742"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123586645?u=e8ecbc36d145315b819f7bcb64b2adc7e16c3968&v=4", - "login": "akshaydubey05", - "url": "https://github.com/akshaydubey05", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/740"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129383968?v=4", - "login": "bhuvanakadiyam", - "url": "https://github.com/bhuvanakadiyam", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/739"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112504678?v=4", - "login": "ShubhiGupta20", - "url": "https://github.com/ShubhiGupta20", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/737"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153413982?v=4", - "login": "jayanth16122005", - "url": "https://github.com/jayanth16122005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/736"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91682299?u=f9e2dc97664f105c4b47e2dcf53c90a002858c28&v=4", - "login": "iDharshan", - "url": "https://github.com/iDharshan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/735"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122172211?u=daa7eea01b8a9948074775ae41edadef3cbe2b11&v=4", - "login": "Akshitha-reddy-13", - "url": "https://github.com/Akshitha-reddy-13", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/734"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98680539?u=dcf1a0449610a9f51df3b3eeffb0ab4b4affd195&v=4", - "login": "babasekhar", - "url": "https://github.com/babasekhar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/733"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98553116?v=4", - "login": "ShadowyBliss", - "url": "https://github.com/ShadowyBliss", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/732"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93049828?u=eb7ba929176409bb8a870a9b7e746e995144f81a&v=4", - "login": "Vishnu-Babu", - "url": "https://github.com/Vishnu-Babu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/729"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125124845?u=5045b2cc47c2507f57c778db04e337148a0babaa&v=4", - "login": "gungunjain15", - "url": "https://github.com/gungunjain15", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/728"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152267480?u=47c4e7489894f0d0dfc035350248ce998598a0d8&v=4", - "login": "vaishnavikarra", - "url": "https://github.com/vaishnavikarra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/727"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142076224?v=4", - "login": "ChethanaPotukanam", - "url": "https://github.com/ChethanaPotukanam", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/726"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166977453?u=816bbbc47fa84ecddc3a9bdfdc98e37eee092402&v=4", - "login": "Shreesanyog", - "url": "https://github.com/Shreesanyog", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/724"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149225785?u=8ddfa03d89fea9b6d26dfc9545e5ebb4344ab292&v=4", - "login": "NitinChakrawarti", - "url": "https://github.com/NitinChakrawarti", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/723"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113576376?v=4", - "login": "sarthaknitnaware", - "url": "https://github.com/sarthaknitnaware", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/722"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141125453?v=4", - "login": "krinalsuthar", - "url": "https://github.com/krinalsuthar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/720"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149088181?v=4", - "login": "YathishGP003", - "url": "https://github.com/YathishGP003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/718"], - "pr_dates": ["2024-05-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96136016?v=4", - "login": "Sanikommus", - "url": "https://github.com/Sanikommus", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/717"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134062997?u=b745cbc7e8a91ac316978e4305ef4cf5a65c28ce&v=4", - "login": "psychic-coder", - "url": "https://github.com/psychic-coder", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/715"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143715111?v=4", - "login": "aryak-1", - "url": "https://github.com/aryak-1", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/714"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130644754?u=bc17f7f04201f1988340eb95a1596bc134e247d2&v=4", - "login": "kip-07", - "url": "https://github.com/kip-07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/713"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130560281?u=2049e64fad0f10e415d6320fceafe19314f0cbef&v=4", - "login": "ishagothwad", - "url": "https://github.com/ishagothwad", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/712"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124715194?u=ed00d00cf585133274275050cf3670a8ffcd6656&v=4", - "login": "MadhurimaNayak", - "url": "https://github.com/MadhurimaNayak", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/711"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93878803?u=ea03c33a7349c48b2bc83100fe5d22b3b56dbda5&v=4", - "login": "purvathnere", - "url": "https://github.com/purvathnere", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/710"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124374837?v=4", - "login": "AP200408", - "url": "https://github.com/AP200408", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/707"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122393891?u=310919464e62137c22fd9c8c1908cc978827e039&v=4", - "login": "sohan-gupthak", - "url": "https://github.com/sohan-gupthak", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/706"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108581214?u=d3e7811ea8f27711fcb1775712a67bf6e155a698&v=4", - "login": "AaryanManghnani", - "url": "https://github.com/AaryanManghnani", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/705"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128178418?u=8b11fa08d82fec0eaeb2ff9b7f4d8b56913d4583&v=4", - "login": "shivamgaur99", - "url": "https://github.com/shivamgaur99", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/704"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140900099?v=4", - "login": "rriddhi-04", - "url": "https://github.com/rriddhi-04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/702"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146535698?v=4", - "login": "Madhuril-Bhaskar", - "url": "https://github.com/Madhuril-Bhaskar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/701"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142963016?u=8f1d05e850481ddd32e14ca1ecee0240996b04b3&v=4", - "login": "Peanut2123650", - "url": "https://github.com/Peanut2123650", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/699"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107762133?u=f42d2c8c12799b759ae905fc9fcca3a70f3a134d&v=4", - "login": "Jeet-0510", - "url": "https://github.com/Jeet-0510", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/698"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149036369?u=0307006baf4f9f012dce073edd89925dec434748&v=4", - "login": "Vaibhav2154", - "url": "https://github.com/Vaibhav2154", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/697"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124747628?v=4", - "login": "anuni03", - "url": "https://github.com/anuni03", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/695"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104677740?u=541ac24fd44d792956b854da8267ca3119a72041&v=4", - "login": "sudipamandal", - "url": "https://github.com/sudipamandal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/692"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156914582?u=9b6f20f772464db848ab9d9009f79fb6d35bb5cb&v=4", - "login": "bhuvangoel04", - "url": "https://github.com/bhuvangoel04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/691"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122175234?u=8ee171e255a9a75b392bddda917fc69ec6dccaec&v=4", - "login": "garvit-exe", - "url": "https://github.com/garvit-exe", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/690"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146800705?v=4", - "login": "Shrid55", - "url": "https://github.com/Shrid55", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/689"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145546912?u=9e347126ca97b68fb470538c3aa8fe477366b7dd&v=4", - "login": "lodhivishalcoder28", - "url": "https://github.com/lodhivishalcoder28", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/687"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87404878?u=542c4f9d1df15aee03809d257d05e3466e1a1886&v=4", - "login": "itzAk27", - "url": "https://github.com/itzAk27", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/686"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149296496?v=4", - "login": "shereen-24", - "url": "https://github.com/shereen-24", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/684"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111896909?u=d5a4abd58e638451e1353ad838a6b87b9debb72c&v=4", - "login": "riffhi", - "url": "https://github.com/riffhi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/683"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142510612?v=4", - "login": "Anushka-Sharma-008", - "url": "https://github.com/Anushka-Sharma-008", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/682"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72182484?v=4", - "login": "dharshanaagb", - "url": "https://github.com/dharshanaagb", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/680"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145250198?u=06276528455c8298e7f25309ea9d0be78912e2a5&v=4", - "login": "nishthaaggarwal15", - "url": "https://github.com/nishthaaggarwal15", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/677"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142904704?u=b19301181784bd9df2e42ce2e42cd653e86f9079&v=4", - "login": "Swapnilden", - "url": "https://github.com/Swapnilden", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/675"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141896790?v=4", - "login": "PakhiJoshi", - "url": "https://github.com/PakhiJoshi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/674"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71881295?u=640ab56822e735d87b58f7afa2da53e94e057b2f&v=4", - "login": "sasidhara-kashyap0903", - "url": "https://github.com/sasidhara-kashyap0903", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/673"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89777420?u=60204547e85c0dcd206506c21210dd0c302b3f95&v=4", - "login": "vaishali-sharma-20", - "url": "https://github.com/vaishali-sharma-20", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/672"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134522022?u=196368b28648df1d3685df37aa9668e51376322c&v=4", - "login": "himanshuraimau", - "url": "https://github.com/himanshuraimau", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/671"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130205331?v=4", - "login": "preetikumari5", - "url": "https://github.com/preetikumari5", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/670"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99739282?v=4", - "login": "kumar8074", - "url": "https://github.com/kumar8074", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/668"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152347245?v=4", - "login": "varsha-kotegar", - "url": "https://github.com/varsha-kotegar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/666"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155907456?v=4", - "login": "Tejasri-Pendota", - "url": "https://github.com/Tejasri-Pendota", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/664"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76436605?u=11f67d6b1d5b7b584343162163f39dada67a37e3&v=4", - "login": "kalalsahil", - "url": "https://github.com/kalalsahil", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/663"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150993434?u=8631121614b79b86e10a2efa06b691d6d68eb764&v=4", - "login": "AA1-34-Ganesh", - "url": "https://github.com/AA1-34-Ganesh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/662"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110902627?v=4", - "login": "TejaswiKandunuri", - "url": "https://github.com/TejaswiKandunuri", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/658"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164178782?u=0e5ca866397fdf29fe9aaa25e33b28a21abd0d23&v=4", - "login": "krishan-07", - "url": "https://github.com/krishan-07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/655"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139970041?u=828390ae9ce77ae9211437177da5eb3ba51b0406&v=4", - "login": "RiyaRaj28", - "url": "https://github.com/RiyaRaj28", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/652"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70370699?u=9ad9927fb6b38d38920e076373a6b300a9d49b59&v=4", - "login": "Prachurya-Ray", - "url": "https://github.com/Prachurya-Ray", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/651"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132535945?u=8adb8503991c3d653ec7d572f4c30640a6261e36&v=4", - "login": "harshagarwal0401", - "url": "https://github.com/harshagarwal0401", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/650"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83555554?v=4", - "login": "wilsonprodige", - "url": "https://github.com/wilsonprodige", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/649"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123158526?v=4", - "login": "KARTHIKEYANS111", - "url": "https://github.com/KARTHIKEYANS111", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/646"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120707400?v=4", - "login": "Vaishnavi4008", - "url": "https://github.com/Vaishnavi4008", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/645"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138527576?u=ff835a8e2ecde405fb53db7c242fa6affff940fc&v=4", - "login": "lakshay-1809", - "url": "https://github.com/lakshay-1809", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/641"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134535589?u=322912b54879249b9538d414f767531f65dcae86&v=4", - "login": "MeetJariwala10", - "url": "https://github.com/MeetJariwala10", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/640"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154974584?v=4", - "login": "Nehalakshmi04", - "url": "https://github.com/Nehalakshmi04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/639"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154623856?v=4", - "login": "akshara12code", - "url": "https://github.com/akshara12code", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/632"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119663430?u=ea727bd9c08e9d0e66f1c6b9a6bf1d4dac7c9487&v=4", - "login": "srivardhan-kondu", - "url": "https://github.com/srivardhan-kondu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/629"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107784738?u=d90ff6281ef3df81d812213f475cfd8560b80c06&v=4", - "login": "Mediboyina", - "url": "https://github.com/Mediboyina", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/628"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115372902?u=5d2d11581fd94b456cb537d5436c5395e38cb014&v=4", - "login": "Laksh-01", - "url": "https://github.com/Laksh-01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/627"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149137458?v=4", - "login": "Akansha452001", - "url": "https://github.com/Akansha452001", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/626"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97443167?u=901d963910f7a5c14611e7d5c84f3b69e4bfe74a&v=4", - "login": "Sailza", - "url": "https://github.com/Sailza", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/625"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143828642?u=6f5f9c8d68382da949029d7d88e20b3ff25a0240&v=4", - "login": "Spandan-Mishra", - "url": "https://github.com/Spandan-Mishra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/624"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153625296?u=9dd40d88ee02e862e394398f931788be8f1d5289&v=4", - "login": "Khushishah224", - "url": "https://github.com/Khushishah224", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/623"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102013665?u=4fc32d7f5c3783cbda75ddb8a84f8943b31bf094&v=4", - "login": "IshikaBrar21", - "url": "https://github.com/IshikaBrar21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/622"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142714564?u=4c7df49188b78121fb0ce8b8b87f11b75df60b45&v=4", - "login": "SATYAM-PRATIBHAN", - "url": "https://github.com/SATYAM-PRATIBHAN", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/621"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110547728?u=98b005c4d7036b9d48eaec7c623c913f228ba9b6&v=4", - "login": "jasjeev013", - "url": "https://github.com/jasjeev013", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/620"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136841666?u=ff15e6d2db59d68bc8728fa6fcb04facfe141361&v=4", - "login": "anikalohia", - "url": "https://github.com/anikalohia", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/617"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132088009?u=db21f26ac11d97bb767870d2b9a692de42f872a6&v=4", - "login": "GayathriPCh", - "url": "https://github.com/GayathriPCh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/615"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136093474?v=4", - "login": "Blue-Always", - "url": "https://github.com/Blue-Always", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/614"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82309980?u=dc0a460a7f3aee663ceb8591a4db75619a948d1e&v=4", - "login": "Aman0413", - "url": "https://github.com/Aman0413", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/613"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143348689?v=4", - "login": "Shubhra-Narang", - "url": "https://github.com/Shubhra-Narang", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/612"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135317707?u=6c44f93bb7968dad99313c6e16046fc9e1641ab2&v=4", - "login": "mary446", - "url": "https://github.com/mary446", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/610"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/59796187?u=9d2df5408437bbdc8f3f8673bd88202bfccf9ab6&v=4", - "login": "sipsdaoracle", - "url": "https://github.com/sipsdaoracle", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/609"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129287425?u=606d5e770a5e0f23c1daaead850300350e2106c3&v=4", - "login": "sakshiglaze", - "url": "https://github.com/sakshiglaze", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/608"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167680713?v=4", - "login": "Nehayp21242929", - "url": "https://github.com/Nehayp21242929", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/606"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159153956?u=8f5fdf385b3856fe3eaadd472f5ef3cb78476745&v=4", - "login": "Hardikchandra", - "url": "https://github.com/Hardikchandra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/605"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150885930?u=1c16b490573855db800a1c03922188ffbdb2155d&v=4", - "login": "Dev-AyushTrivedi", - "url": "https://github.com/Dev-AyushTrivedi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/604"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149699731?v=4", - "login": "hithasam24", - "url": "https://github.com/hithasam24", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/602"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129776752?u=0a403a5e6c8d912899a60b898f8d86596d7667a7&v=4", - "login": "itssarvani394", - "url": "https://github.com/itssarvani394", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/601"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132771555?v=4", - "login": "Spider1109", - "url": "https://github.com/Spider1109", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/600"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154441863?v=4", - "login": "akshayavazrala", - "url": "https://github.com/akshayavazrala", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/599"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132612259?u=ba3db240a8319037338c0fa9cef96dd57d2313d4&v=4", - "login": "jinalraghwani18", - "url": "https://github.com/jinalraghwani18", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/598"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155064370?v=4", - "login": "Shamyuktha06", - "url": "https://github.com/Shamyuktha06", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/597"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/55952519?u=4edf22159abc3d889906ad9a6ed02d54730b08da&v=4", - "login": "1cYinfinity", - "url": "https://github.com/1cYinfinity", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/596"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148564168?v=4", - "login": "arun0r7", - "url": "https://github.com/arun0r7", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/595"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157377426?v=4", - "login": "khavya-798", - "url": "https://github.com/khavya-798", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/594"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144522556?u=3ed4e6017a4adda0fc1ad09087ca9bb2d9541ffc&v=4", - "login": "its-kritika", - "url": "https://github.com/its-kritika", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/592"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137862752?v=4", - "login": "kpt2210", - "url": "https://github.com/kpt2210", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/591"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129517420?v=4", - "login": "khuship23", - "url": "https://github.com/khuship23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/590"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120419659?v=4", - "login": "vaidehipate", - "url": "https://github.com/vaidehipate", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/589"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113226919?v=4", - "login": "MaragathaMeenakshi", - "url": "https://github.com/MaragathaMeenakshi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/586"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130422753?u=21e1f2bcce4e13981da2bd791dfa1e0c510be6bf&v=4", - "login": "1235vishal", - "url": "https://github.com/1235vishal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/585"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121350355?u=b5496d0b5a3de9af7021adb3625e612136199927&v=4", - "login": "royalrajputayush", - "url": "https://github.com/royalrajputayush", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/584"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98275372?u=3e3fa24381a5c6367e17df4ccee3dd507bc19e95&v=4", - "login": "i-am-faith", - "url": "https://github.com/i-am-faith", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/583"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135339425?u=75de21e35bbec9da84e84d278673ce7d44e126fa&v=4", - "login": "Tejaswini-628", - "url": "https://github.com/Tejaswini-628", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/582"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93462562?u=02e26674540ed31d4e641567a2890214d25b4dd5&v=4", - "login": "srinidhifd", - "url": "https://github.com/srinidhifd", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/581"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96401557?u=7d6342641d3f10827b1e24f8b2a9125ef6d5c0cb&v=4", - "login": "Dimple-Choudhary", - "url": "https://github.com/Dimple-Choudhary", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/580"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97722920?u=076470f7ac905a5c6c5a8c2802f2d564600d2d96&v=4", - "login": "ArshnoorKaur21", - "url": "https://github.com/ArshnoorKaur21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/579"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154689485?u=3869044fb36b0ca6359fcf43f713fb6d73f3f7f2&v=4", - "login": "Kalyan9064", - "url": "https://github.com/Kalyan9064", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/577"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113412672?v=4", - "login": "hxtanishq", - "url": "https://github.com/hxtanishq", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/576"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153320417?v=4", - "login": "Nit-25", - "url": "https://github.com/Nit-25", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/575"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111267114?v=4", - "login": "Tabassum-13", - "url": "https://github.com/Tabassum-13", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/574"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138394317?v=4", - "login": "gondesi-anjali", - "url": "https://github.com/gondesi-anjali", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/573"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144805268?v=4", - "login": "pavankumar4404", - "url": "https://github.com/pavankumar4404", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/572"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129493126?v=4", - "login": "singhpratibha98", - "url": "https://github.com/singhpratibha98", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/571"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124074204?u=9c8e5c12886db6e4927ff7ac55af35fb6f31a0d8&v=4", - "login": "samikshapandagle", - "url": "https://github.com/samikshapandagle", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/569"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91887086?v=4", - "login": "Bindusree1515", - "url": "https://github.com/Bindusree1515", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/567"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129864881?v=4", - "login": "riddhi5474", - "url": "https://github.com/riddhi5474", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/566"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169140852?v=4", - "login": "okayananddd", - "url": "https://github.com/okayananddd", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/564"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116477978?u=2dd923acf2bfb69c3018cf86845d84c24a20973d&v=4", - "login": "supriyajathar", - "url": "https://github.com/supriyajathar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/563"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149804618?u=a45ff722f42e7815eeedf9e703b9cdf941c823f0&v=4", - "login": "Mohammad-Qamar", - "url": "https://github.com/Mohammad-Qamar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/562"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144142094?u=ccae61a9107747e33cb2ea259d28ad8cf2ee7b94&v=4", - "login": "mesumitkumarsk", - "url": "https://github.com/mesumitkumarsk", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/561"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138435877?u=7b166f874f0f86773fb1a8a7002d44f9157d2448&v=4", - "login": "binguliki", - "url": "https://github.com/binguliki", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/559"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155385140?u=3ac403831ce1599187cdc9176b185b68491dc9a9&v=4", - "login": "Bharathhh30", - "url": "https://github.com/Bharathhh30", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/558"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128416587?u=9d878d25fbd5335642f8e60cf6b4708372581026&v=4", - "login": "royalsachan", - "url": "https://github.com/royalsachan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/557"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149600879?u=413781a2ea43ae1ed49a980816975327480da247&v=4", - "login": "sdass1918", - "url": "https://github.com/sdass1918", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/556"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145131674?u=f130e37e2e996dd1e549b157915289a96545a9e1&v=4", - "login": "Priyadeara2427", - "url": "https://github.com/Priyadeara2427", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/555"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115173871?u=b790714ec738417980cef9eda7a23e83c96f59d5&v=4", - "login": "singhrimiumesh", - "url": "https://github.com/singhrimiumesh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/554"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105648231?v=4", - "login": "Darshants6364", - "url": "https://github.com/Darshants6364", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/553"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123761006?v=4", - "login": "Akash19304", - "url": "https://github.com/Akash19304", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/551"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90133892?u=c724089541fef14f1a38a99d4ed337e6a17a63f7&v=4", - "login": "woodwolfswee", - "url": "https://github.com/woodwolfswee", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/550"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97832985?u=0470950101aa14a89e7ede44acdddd40e6bed92b&v=4", - "login": "Dynamic-Aryan", - "url": "https://github.com/Dynamic-Aryan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/547"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133368541?v=4", - "login": "anirudh-why", - "url": "https://github.com/anirudh-why", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/546"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90045501?u=baccf3a7729aeb0b51bc49f33a180bc7d5039233&v=4", - "login": "02Manas-jha", - "url": "https://github.com/02Manas-jha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/544"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124702754?v=4", - "login": "Praharshitha167", - "url": "https://github.com/Praharshitha167", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/542"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164545817?u=63e98765913d2b7e533e646f91e2746c6406212d&v=4", - "login": "EswarPesala", - "url": "https://github.com/EswarPesala", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/539"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98342791?u=ca67dc0de20d22ffee08a3315be383cb2a58c3bf&v=4", - "login": "chirag-tomar2003", - "url": "https://github.com/chirag-tomar2003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/536"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147646116?u=6c69936596d00de93decbb526b63788061f599f9&v=4", - "login": "Dharam13", - "url": "https://github.com/Dharam13", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/533"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91769030?v=4", - "login": "Neha2580", - "url": "https://github.com/Neha2580", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/532"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158172826?u=28f3abd12dfb5d05f140745d9d792e71e339ad8a&v=4", - "login": "Niharika-Behera", - "url": "https://github.com/Niharika-Behera", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/531"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99194424?v=4", - "login": "Eshika-Pawar", - "url": "https://github.com/Eshika-Pawar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/530"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125184228?u=aae7812f5a7d5ff5f6ef03d107eff6f039734069&v=4", - "login": "nisargaa20", - "url": "https://github.com/nisargaa20", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/526"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145102345?v=4", - "login": "VijaySamant4368", - "url": "https://github.com/VijaySamant4368", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/525"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105062172?u=5c33c8943ada07e13ed183f1572ce66794b41b53&v=4", - "login": "Sravani-Kallempudi", - "url": "https://github.com/Sravani-Kallempudi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/522"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151115065?u=94bba0c8d6792be0e6bc222c719552843fbb07d5&v=4", - "login": "Quatecha", - "url": "https://github.com/Quatecha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/520"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123286880?v=4", - "login": "PrathicaShettyM", - "url": "https://github.com/PrathicaShettyM", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/519"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153410698?v=4", - "login": "Praneeth2312", - "url": "https://github.com/Praneeth2312", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/518"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148372065?u=2dcdcb35cd3bf7151622e3efefc75b9e5e5d617e&v=4", - "login": "SaiSruthisri", - "url": "https://github.com/SaiSruthisri", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/517"], - "pr_dates": ["2024-05-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124676576?u=db363ad30d675c91eab4b69cb48662511c898eab&v=4", - "login": "AishMishra001", - "url": "https://github.com/AishMishra001", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/516"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99901964?u=fa119a9159d5cc6b850fa6f82ce7b72f3b05f62c&v=4", - "login": "Madhu-mac", - "url": "https://github.com/Madhu-mac", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/514"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127655453?u=ce3acfd46a1f956e2b9d5b6e0705376a914e74a5&v=4", - "login": "illusion1412", - "url": "https://github.com/illusion1412", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/513"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147923940?v=4", - "login": "Piyushseth55", - "url": "https://github.com/Piyushseth55", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/511"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144714595?v=4", - "login": "abhay-sen", - "url": "https://github.com/abhay-sen", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/510"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115007055?u=b4773eff1e0a73572f0bb8caa583a9bb34908195&v=4", - "login": "Vivek11550", - "url": "https://github.com/Vivek11550", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/505"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140702065?v=4", - "login": "Harman1010", - "url": "https://github.com/Harman1010", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/504"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142080000?u=089c9b721aef325464939ce667ab46203ac45f7c&v=4", - "login": "KartikRajOfficial", - "url": "https://github.com/KartikRajOfficial", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/502"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159940515?v=4", - "login": "akshatsharma2407", - "url": "https://github.com/akshatsharma2407", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/499"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141306905?v=4", - "login": "JVENKATAPHANISAI", - "url": "https://github.com/JVENKATAPHANISAI", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/498"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149894986?u=1690e9777674005106c80aa587e04d4ffdc259d0&v=4", - "login": "HardikTripathi04", - "url": "https://github.com/HardikTripathi04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/497"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136887514?u=f8079051903aed94a63177345a2dfe64a249b4ad&v=4", - "login": "Laxelspal", - "url": "https://github.com/Laxelspal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/496"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157269803?u=c30fa92a531c5fdfbc221ab0d4b771f0fcf67f15&v=4", - "login": "Varun-Sethi-Dev", - "url": "https://github.com/Varun-Sethi-Dev", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/495"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153842880?v=4", - "login": "AritraCh2005", - "url": "https://github.com/AritraCh2005", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/491"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111683503?v=4", - "login": "Kishita16", - "url": "https://github.com/Kishita16", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/490"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138391080?v=4", - "login": "Jaishree-baskaran", - "url": "https://github.com/Jaishree-baskaran", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/487"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147942578?u=fe0e2632405ffcbc8499671482f51b93f3edbb79&v=4", - "login": "yp9435", - "url": "https://github.com/yp9435", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/486"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124362279?u=a0c06988bc49690d5b277be9788cb9d91aaa3120&v=4", - "login": "swataswayam-14", - "url": "https://github.com/swataswayam-14", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/484"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106149925?v=4", - "login": "SanskarShrivastava", - "url": "https://github.com/SanskarShrivastava", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/483"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65616047?v=4", - "login": "SHREEYANSH764", - "url": "https://github.com/SHREEYANSH764", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/482"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134182912?u=5979f7a47383299a3531626423114a097f4cf248&v=4", - "login": "ayush2281", - "url": "https://github.com/ayush2281", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/481"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144212106?v=4", - "login": "Jayashree-04", - "url": "https://github.com/Jayashree-04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/480"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117724228?u=7ae079b474558ef6d12dc5e7a682c0391a3761c7&v=4", - "login": "Unknownmaster0", - "url": "https://github.com/Unknownmaster0", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/479"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152693538?v=4", - "login": "NeerajaGurram", - "url": "https://github.com/NeerajaGurram", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/478"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129594034?u=9c3c91c74fc26f6b2e37781fcfd384308b4adced&v=4", - "login": "its-AkshatJain", - "url": "https://github.com/its-AkshatJain", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/477"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123581143?u=eec56a401bd38e5e341552590b41f3fe9fc3e668&v=4", - "login": "DG8131", - "url": "https://github.com/DG8131", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/476"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139130786?v=4", - "login": "Sudhish23", - "url": "https://github.com/Sudhish23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/475"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137680973?v=4", - "login": "CapAru", - "url": "https://github.com/CapAru", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/472"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119802510?v=4", - "login": "nikkittaa", - "url": "https://github.com/nikkittaa", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/471"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157893582?u=16be1aee7369a5601bc9fae8f54fdefc8d6ac76c&v=4", - "login": "MrCodYrohit", - "url": "https://github.com/MrCodYrohit", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/470"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168729216?v=4", - "login": "yashikakedia", - "url": "https://github.com/yashikakedia", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/469"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142109210?u=0efc4a5942b862dc2825e67fd64252a51c07ce36&v=4", - "login": "codebreaker3008", - "url": "https://github.com/codebreaker3008", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/468"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83268762?v=4", - "login": "Danish0703", - "url": "https://github.com/Danish0703", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/467"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143901772?v=4", - "login": "Akash-nema", - "url": "https://github.com/Akash-nema", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/466"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119498467?u=460b797ee348480eb08bef26a8153c8ae2e59e4b&v=4", - "login": "Prakharkhandelwal02", - "url": "https://github.com/Prakharkhandelwal02", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/464"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74658609?u=26b74f1f1e01a9c0e5c068d0825661725a6027ef&v=4", - "login": "rahul-2004-json", - "url": "https://github.com/rahul-2004-json", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/463"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78924036?u=5f19cec0cdee61e703ec267fddfa550dcdc23b36&v=4", - "login": "ayoush-kumar", - "url": "https://github.com/ayoush-kumar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/462"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138159327?u=8136084ca8bdec6a0474cf8b56ba273346e2fe18&v=4", - "login": "kesri9211", - "url": "https://github.com/kesri9211", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/461"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163830157?u=93cd4181102fd2b8ea862420d51ba126e8fbbed4&v=4", - "login": "LalithKumar77", - "url": "https://github.com/LalithKumar77", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/460"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93979917?v=4", - "login": "khushikunte", - "url": "https://github.com/khushikunte", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/458"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/41834586?u=e811f6c7bdb2130b97f708f8dce6da45f917996b&v=4", - "login": "av0422", - "url": "https://github.com/av0422", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/457"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147930477?v=4", - "login": "Unalia09", - "url": "https://github.com/Unalia09", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/454"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112553668?u=e58fe2d9d026fb8ef4a719936523d44885de1884&v=4", - "login": "Ajay-patidar0", - "url": "https://github.com/Ajay-patidar0", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/453"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125468457?u=008039bd064d3e245090b77cecf6ea0addabdc82&v=4", - "login": "prajwal9773", - "url": "https://github.com/prajwal9773", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/451"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140941043?v=4", - "login": "pragyamyra", - "url": "https://github.com/pragyamyra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/450"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97971538?u=81b48040bb164eff2c47b34b1fcef11dc09007b4&v=4", - "login": "TejaKumar123", - "url": "https://github.com/TejaKumar123", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/449"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122215454?v=4", - "login": "MuskaanMohta", - "url": "https://github.com/MuskaanMohta", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/447"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146975269?v=4", - "login": "codewithishu", - "url": "https://github.com/codewithishu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/442"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154528216?v=4", - "login": "Vatsal-D07", - "url": "https://github.com/Vatsal-D07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/441"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151914813?v=4", - "login": "gopi-trip", - "url": "https://github.com/gopi-trip", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/439"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149000531?v=4", - "login": "khushbujain41709", - "url": "https://github.com/khushbujain41709", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/438"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136967348?u=2e8c53aa4de873c9d7934db8f7e811c435ab3035&v=4", - "login": "iemafzalhassan", - "url": "https://github.com/iemafzalhassan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/437"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90341679?u=7ad05e0ece66afd2a45d0c20ab57681ce405fddd&v=4", - "login": "iam-salman", - "url": "https://github.com/iam-salman", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/436"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122355051?v=4", - "login": "shobit000", - "url": "https://github.com/shobit000", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/435"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161862763?v=4", - "login": "ramajaiswal08", - "url": "https://github.com/ramajaiswal08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/434"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118451184?u=619df8f75ed1439590618c4e03c951c684e6f97e&v=4", - "login": "Kulashekar01", - "url": "https://github.com/Kulashekar01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/433"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114576057?u=1cfb8f8c68dce0ec7ecb2c726c9d8faccf6bcea3&v=4", - "login": "siddhima22", - "url": "https://github.com/siddhima22", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/432"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117100586?u=d41c9cd57cf143fa421937b375b02db9b5cb89ed&v=4", - "login": "ajayprataptomar", - "url": "https://github.com/ajayprataptomar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/431"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137031554?u=a33ac5b72ed05498fcbc101aed309b769c1c0dbb&v=4", - "login": "Anuj054", - "url": "https://github.com/Anuj054", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/429"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156543848?u=aabccf263dba3780246afe611fa6d8f0ecb90eb5&v=4", - "login": "Himanshityagii24", - "url": "https://github.com/Himanshityagii24", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/428"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139635892?v=4", - "login": "vaxxnsh", - "url": "https://github.com/vaxxnsh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/425"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168891951?v=4", - "login": "AnuragKr24", - "url": "https://github.com/AnuragKr24", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/424"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140936561?v=4", - "login": "kskeertana", - "url": "https://github.com/kskeertana", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/423"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122550529?u=19b90c0cc23d7423129dd21ef385973b3ec38985&v=4", - "login": "Pranali3103", - "url": "https://github.com/Pranali3103", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/422"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161623461?v=4", - "login": "Nihal-Somarajupalli", - "url": "https://github.com/Nihal-Somarajupalli", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/420"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119747480?v=4", - "login": "HE-MAN-22603", - "url": "https://github.com/HE-MAN-22603", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/418"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134281589?u=4fed93e954e4735754c7c46a07b76c2f88233d77&v=4", - "login": "saketh-05", - "url": "https://github.com/saketh-05", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/417"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152594323?u=ad3089c1af68c76d40094221efa2702da7b11572&v=4", - "login": "shivam2027", - "url": "https://github.com/shivam2027", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/416"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113124063?u=b62fb69ae1002586d02972f7aea3969128d83b71&v=4", - "login": "harithaguna", - "url": "https://github.com/harithaguna", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/415"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130372618?u=c1074d3beebfd4612c0677b0b83c8d948a3a4959&v=4", - "login": "PallaviGudupallavi", - "url": "https://github.com/PallaviGudupallavi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/414"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118840685?v=4", - "login": "dipti-019", - "url": "https://github.com/dipti-019", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/412"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83902558?v=4", - "login": "Vaishali-ajmera", - "url": "https://github.com/Vaishali-ajmera", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/410"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100562754?u=7b737156b7dffc02a3a2376aa346542b1a7c7a93&v=4", - "login": "SHARITHA2002", - "url": "https://github.com/SHARITHA2002", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/409"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115292072?u=24eefedd5fac999365d40ce5ce51783f088c7c01&v=4", - "login": "PRAYAG0908", - "url": "https://github.com/PRAYAG0908", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/408"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125295270?v=4", - "login": "Dhanashree170", - "url": "https://github.com/Dhanashree170", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/407"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155507095?v=4", - "login": "moutamarakshit", - "url": "https://github.com/moutamarakshit", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/406"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138626629?v=4", - "login": "SarthVader2004", - "url": "https://github.com/SarthVader2004", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/403"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155839385?u=6dc501477d616501bc9810b55d73049b2c7203b3&v=4", - "login": "JansiSabharwal05", - "url": "https://github.com/JansiSabharwal05", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/401"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117253814?u=f092a12845a68dde12cb8e4b17bdb913fef60d01&v=4", - "login": "jigglypufflazybaby", - "url": "https://github.com/jigglypufflazybaby", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/398"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141644207?v=4", - "login": "saikuladeepgithub", - "url": "https://github.com/saikuladeepgithub", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/397"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88208166?u=fd4e34900fa8358230bd6c546092d2809aeba661&v=4", - "login": "KDevendra", - "url": "https://github.com/KDevendra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/396"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147323129?v=4", - "login": "saumyajainnn", - "url": "https://github.com/saumyajainnn", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/395"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141833519?v=4", - "login": "yash-tyagi-2003", - "url": "https://github.com/yash-tyagi-2003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/394"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83231886?v=4", - "login": "yash21sriv", - "url": "https://github.com/yash21sriv", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/392"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111273192?u=51b230ecdccab86098d0934faf7d36cdcf38a954&v=4", - "login": "Naincy04", - "url": "https://github.com/Naincy04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/391"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162709833?u=6e23e86e8ad8e1f9ac15008171f913ce8ad7859d&v=4", - "login": "Virucodes", - "url": "https://github.com/Virucodes", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/389"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118754663?u=012418dd1948e7d2473ef7503b40dc51675f38aa&v=4", - "login": "DevPatel1023", - "url": "https://github.com/DevPatel1023", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/388"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147068640?v=4", - "login": "Dharanilakkireddy", - "url": "https://github.com/Dharanilakkireddy", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/386"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124160795?u=438fe92b68ad6a80f21ea9d8560e8e86fc87d488&v=4", - "login": "dushyant2909", - "url": "https://github.com/dushyant2909", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/385"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123861376?u=f0edf252c66acba2a65a77583c167d4a1d5ea221&v=4", - "login": "ChandelAnish", - "url": "https://github.com/ChandelAnish", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/383"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168505306?v=4", - "login": "MadduHarshitha30", - "url": "https://github.com/MadduHarshitha30", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/381"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143942937?u=ddcebe17904a7b3a729d99b3e041f4f31bf21970&v=4", - "login": "AdityaPrakash-03", - "url": "https://github.com/AdityaPrakash-03", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/377"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143268082?u=0c94de09f3f1369c4dc255f33b852521116fd252&v=4", - "login": "mb-aarfi", - "url": "https://github.com/mb-aarfi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/376"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106909868?v=4", - "login": "BagchiShreya", - "url": "https://github.com/BagchiShreya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/371"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147139262?v=4", - "login": "pragnapadamata", - "url": "https://github.com/pragnapadamata", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/369"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154429742?v=4", - "login": "abhi-la-sha", - "url": "https://github.com/abhi-la-sha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/366"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130782754?u=ef304b92587c4890c40cfafbc93f96b9b3fbb600&v=4", - "login": "MavSneha", - "url": "https://github.com/MavSneha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/365"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168512169?v=4", - "login": "Siwanikaushik", - "url": "https://github.com/Siwanikaushik", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/364"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120307146?v=4", - "login": "gauribahuguna21", - "url": "https://github.com/gauribahuguna21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/363"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/79070318?u=c7d8b643cbd1adc6f3b20c72f9d21d42e0edb1c5&v=4", - "login": "sandeep-garai", - "url": "https://github.com/sandeep-garai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/362"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141510343?v=4", - "login": "vaidehi134", - "url": "https://github.com/vaidehi134", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/361"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137215196?v=4", - "login": "KshitijaGiradkar", - "url": "https://github.com/KshitijaGiradkar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/360"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139895843?v=4", - "login": "Kalamatha-Eshwari", - "url": "https://github.com/Kalamatha-Eshwari", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/358"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91795938?v=4", - "login": "Bharath200415", - "url": "https://github.com/Bharath200415", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/357"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113745975?u=6f832fcda24518af4f85da9c91618f3a88cde311&v=4", - "login": "Woookiiee", - "url": "https://github.com/Woookiiee", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/356"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154973996?v=4", - "login": "nikitha-kandi", - "url": "https://github.com/nikitha-kandi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/354"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166595706?v=4", - "login": "sahithialeti", - "url": "https://github.com/sahithialeti", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/351"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/61881540?u=d9368f388ebc883009080e5c77052b5c52c3c96c&v=4", - "login": "gunner26735", - "url": "https://github.com/gunner26735", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/350"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146928623?v=4", - "login": "yashi-025", - "url": "https://github.com/yashi-025", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/348"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114382367?u=2e22beae90ba5be6f40e506a6812a1b75c106325&v=4", - "login": "Kashif581", - "url": "https://github.com/Kashif581", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/347"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125280130?v=4", - "login": "Rajneeshkarya", - "url": "https://github.com/Rajneeshkarya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/346"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91939963?u=5eff295673ef510896f4afafeb2aaf312a9446f0&v=4", - "login": "MrPC7", - "url": "https://github.com/MrPC7", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/345"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130607343?u=ade6be03558e4e28dfd50be4d2084ec6833dfa74&v=4", - "login": "Mrigaank-9", - "url": "https://github.com/Mrigaank-9", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/344"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121213641?v=4", - "login": "rawani123", - "url": "https://github.com/rawani123", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/341"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135132452?v=4", - "login": "satyaveni299", - "url": "https://github.com/satyaveni299", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/340"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107619088?u=4851469557fa0bbd2f4c2ab17c541a9cc926f58c&v=4", - "login": "Ravindrak0812", - "url": "https://github.com/Ravindrak0812", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/339"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145141126?u=2582d366f58c982e2e3149044cae6e1426343387&v=4", - "login": "Peehu1308", - "url": "https://github.com/Peehu1308", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/338"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112842731?v=4", - "login": "anmol-2004", - "url": "https://github.com/anmol-2004", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/337"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125449257?v=4", - "login": "s4sanyaa", - "url": "https://github.com/s4sanyaa", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/336"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138208959?v=4", - "login": "Prateek0305", - "url": "https://github.com/Prateek0305", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/335"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126666739?u=f60a293c6103991b7902050bb2c7a1bfb284a6ba&v=4", - "login": "ashishmishra4444", - "url": "https://github.com/ashishmishra4444", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/334"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112267753?u=8fa792bd41c18ad5409ccb753aaec816388c5a73&v=4", - "login": "Nimisha-Mavar", - "url": "https://github.com/Nimisha-Mavar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/333"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108205674?v=4", - "login": "AkshayKankaria", - "url": "https://github.com/AkshayKankaria", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/332"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134733248?v=4", - "login": "Amarta113", - "url": "https://github.com/Amarta113", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/331"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146222028?u=e942b793a1811bf17bf4d33d6c2fddf983132987&v=4", - "login": "Madhuri36", - "url": "https://github.com/Madhuri36", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/330"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145827052?u=88e188c12f52103ac296f7b6e474a000d575f89c&v=4", - "login": "Abhay182005dat", - "url": "https://github.com/Abhay182005dat", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/329"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162673707?v=4", - "login": "Ishitva744", - "url": "https://github.com/Ishitva744", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/328"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146218077?v=4", - "login": "d1vyadharsh1n1", - "url": "https://github.com/d1vyadharsh1n1", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/327"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165293713?v=4", - "login": "Asha0509", - "url": "https://github.com/Asha0509", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/325"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154092772?u=ef7334b106fd76b1d6d90240599d6c4ef38dc9ca&v=4", - "login": "rishmiiee26", - "url": "https://github.com/rishmiiee26", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/324"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97448182?u=a23ac9b4fb78f532268e5c58fee21e237748b81b&v=4", - "login": "Shubh-88", - "url": "https://github.com/Shubh-88", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/322"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145243550?v=4", - "login": "tanisha290", - "url": "https://github.com/tanisha290", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/321"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164139993?u=bf4f820b9b9d60bfae92c3ed2e0f9b11fc8f2196&v=4", - "login": "Aishwaryaa-22", - "url": "https://github.com/Aishwaryaa-22", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/319"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109780561?u=ddd7a2d3655b07726c5d8f814c15d069e12e9fa3&v=4", - "login": "Harleen-786", - "url": "https://github.com/Harleen-786", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/318"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146623369?v=4", - "login": "AratiAmbekar", - "url": "https://github.com/AratiAmbekar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/317"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117525704?v=4", - "login": "SomyaAggarwal1209", - "url": "https://github.com/SomyaAggarwal1209", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/316"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147330475?v=4", - "login": "Tanaya-1-2-3", - "url": "https://github.com/Tanaya-1-2-3", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/311"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125785306?u=0e1392d6e02075664361e31bd9a3192fd4d08a4b&v=4", - "login": "Sayanmaity2003", - "url": "https://github.com/Sayanmaity2003", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/310"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122105012?u=a0f890faf1c3cbb6cdbc945d2f7775ce2d4e70ef&v=4", - "login": "tubakhxn", - "url": "https://github.com/tubakhxn", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/309"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109527041?u=a62fe8683bdb46dfc0f73f90483b5c5f5e9db828&v=4", - "login": "khushi-upadhyay", - "url": "https://github.com/khushi-upadhyay", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/308"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140182178?v=4", - "login": "somyasaxena01", - "url": "https://github.com/somyasaxena01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/307"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92024691?v=4", - "login": "varunallagh21022002", - "url": "https://github.com/varunallagh21022002", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/305"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124992398?v=4", - "login": "Mitul1927", - "url": "https://github.com/Mitul1927", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/304"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128816933?u=eaea48dfda9e953231bbb4cee7d86ffc1bb80f92&v=4", - "login": "sobhitsinghal", - "url": "https://github.com/sobhitsinghal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/303"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146444140?v=4", - "login": "gitshott", - "url": "https://github.com/gitshott", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/301"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109761760?v=4", - "login": "NAVJOT-786", - "url": "https://github.com/NAVJOT-786", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/299"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154241808?u=4f94c8bc162573619ae0c9f77f10cfd53aeea645&v=4", - "login": "SaurabhJha19", - "url": "https://github.com/SaurabhJha19", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/298"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84273323?u=c8363f9a772fc182dee11a1e327b2364b75ce3fe&v=4", - "login": "Natasha-kush", - "url": "https://github.com/Natasha-kush", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/296"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167197334?v=4", - "login": "chanmeet01", - "url": "https://github.com/chanmeet01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/295"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74701380?u=a1c6feb51a6005e072bc634e14ac70e723cadd6f&v=4", - "login": "singhtanishq", - "url": "https://github.com/singhtanishq", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/294"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133568249?v=4", - "login": "kartheekmule", - "url": "https://github.com/kartheekmule", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/293"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168826354?v=4", - "login": "rainybug11", - "url": "https://github.com/rainybug11", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/292"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137477471?v=4", - "login": "Samriddha49", - "url": "https://github.com/Samriddha49", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/290"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83583906?u=a261bc2129693829974e7ce005bc9b2ab960d823&v=4", - "login": "Yatin-Sabikhi", - "url": "https://github.com/Yatin-Sabikhi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/289"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139679630?u=152ef39296e40ab63c368fe9848503d4434de9d4&v=4", - "login": "Aditi-Gupta-dev", - "url": "https://github.com/Aditi-Gupta-dev", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/288"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121720827?u=80d5bcdec82a4f394f1ef43bf14b93adc61ebfed&v=4", - "login": "V-anisha", - "url": "https://github.com/V-anisha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/287"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144329638?u=3fc8a7e19c4c460cea5340d42ac3d23533255e12&v=4", - "login": "SkandSingh", - "url": "https://github.com/SkandSingh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/286"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166429764?v=4", - "login": "githubshivanshukumarsrivastava", - "url": "https://github.com/githubshivanshukumarsrivastava", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/284"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143208405?v=4", - "login": "hitanshu04", - "url": "https://github.com/hitanshu04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/281"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91772617?u=b65e9bdd3d1d82ad873e5253603e1f8b754cc609&v=4", - "login": "khushikhuranaa2", - "url": "https://github.com/khushikhuranaa2", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/282"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153826159?v=4", - "login": "Varshini0703", - "url": "https://github.com/Varshini0703", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/279"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136685608?u=ad21cd8e1f70030bc4a67bc3b61977c85d8c71a1&v=4", - "login": "761jayanth8", - "url": "https://github.com/761jayanth8", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/278"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151036140?v=4", - "login": "yashika-45", - "url": "https://github.com/yashika-45", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/277"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113827398?u=fcb45ecd0f2e095ef6ec256f85e1387744e447c5&v=4", - "login": "b-nimai", - "url": "https://github.com/b-nimai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/276"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126195386?v=4", - "login": "Sreejita-code", - "url": "https://github.com/Sreejita-code", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/275"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126623952?v=4", - "login": "khush200145", - "url": "https://github.com/khush200145", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/274"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94672955?u=2ddd6f94bbf5af9ba0805f75f5e93a722291ecec&v=4", - "login": "DownOnCoffee", - "url": "https://github.com/DownOnCoffee", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/273"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110217443?u=0f015e8980ec70a8f9c7bbb5ad3e13f20d894b0c&v=4", - "login": "Rizwanahmad07", - "url": "https://github.com/Rizwanahmad07", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/272"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127044524?v=4", - "login": "disha3110", - "url": "https://github.com/disha3110", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/271"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153064528?v=4", - "login": "snehasahu7", - "url": "https://github.com/snehasahu7", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/269"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152634166?v=4", - "login": "Manojkumar1007", - "url": "https://github.com/Manojkumar1007", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/268"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163149118?v=4", - "login": "Sudiksha18", - "url": "https://github.com/Sudiksha18", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/267"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114350823?v=4", - "login": "radharashmitha", - "url": "https://github.com/radharashmitha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/265"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122529688?v=4", - "login": "Ananya-Singh1901", - "url": "https://github.com/Ananya-Singh1901", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/264"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106011641?u=c4d50b8c9ee5ace6b77c0cfa1bfbdce418ae38d3&v=4", - "login": "vishal-sharma-369", - "url": "https://github.com/vishal-sharma-369", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/261"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136269751?v=4", - "login": "Ayushi22-coder", - "url": "https://github.com/Ayushi22-coder", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/262"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147230518?v=4", - "login": "Sandhyarani23", - "url": "https://github.com/Sandhyarani23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/263"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168836194?v=4", - "login": "abd0777", - "url": "https://github.com/abd0777", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/260"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/62764275?u=987f618ea4cd3b0f3f3192ef34ab4ca1f22c5b34&v=4", - "login": "Rahufkhan", - "url": "https://github.com/Rahufkhan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/257"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140533131?v=4", - "login": "harshitha0004", - "url": "https://github.com/harshitha0004", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/256"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147987356?v=4", - "login": "sherinbaiju", - "url": "https://github.com/sherinbaiju", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/255"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156944252?v=4", - "login": "23Anushkac", - "url": "https://github.com/23Anushkac", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/253"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142712341?u=b16c415e81d7822b233951716b63f26b2476148d&v=4", - "login": "SAHILMPATIL", - "url": "https://github.com/SAHILMPATIL", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/252"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101583512?v=4", - "login": "Rutvik-121", - "url": "https://github.com/Rutvik-121", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/251"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145018048?v=4", - "login": "najir83", - "url": "https://github.com/najir83", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/249"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118914256?u=8f37140482d30e0aa3f0288102495d693a8de135&v=4", - "login": "sonikirtan110", - "url": "https://github.com/sonikirtan110", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/248"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110850648?v=4", - "login": "TechSenseiX", - "url": "https://github.com/TechSenseiX", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/247"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131841846?u=7fc868514c65f2e0351c5f05c44432e760022af2&v=4", - "login": "dev-rsiva", - "url": "https://github.com/dev-rsiva", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/246"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106025020?u=7887770c117659bc7619d5dcb8e894edb2ceee85&v=4", - "login": "shadabalam78698", - "url": "https://github.com/shadabalam78698", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/245"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146124855?u=5e2549bf8cb239ed061bf99dc633e930ecbf0123&v=4", - "login": "SimantaSarma", - "url": "https://github.com/SimantaSarma", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/243"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149717713?u=5f84767dd28ba6027a2fec77bfea1e40ca46211d&v=4", - "login": "KhushAgrawal001", - "url": "https://github.com/KhushAgrawal001", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/242"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121882110?u=8e80a782f8c59d4a66b47ac8f80251a6e310b834&v=4", - "login": "Tanya-Nagpal", - "url": "https://github.com/Tanya-Nagpal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/240"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107982190?v=4", - "login": "KARTHIK174", - "url": "https://github.com/KARTHIK174", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/236"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126545390?u=afe9c0fd7c4a1045dc15148feb509c81005ec9b4&v=4", - "login": "aindrelasaha", - "url": "https://github.com/aindrelasaha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/234"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121919281?v=4", - "login": "Sadhvika55", - "url": "https://github.com/Sadhvika55", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/232"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117162240?u=e7e4eff0ecd1cbdb42720c537f90ab33015f7f06&v=4", - "login": "Amrit-Raj-17", - "url": "https://github.com/Amrit-Raj-17", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/233"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147637701?v=4", - "login": "virenK0211", - "url": "https://github.com/virenK0211", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/231"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118878628?u=30e09536e2c3c135930df692b55461e40da773ec&v=4", - "login": "MUKUL-RAJPUT2004", - "url": "https://github.com/MUKUL-RAJPUT2004", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/230"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142713282?v=4", - "login": "Kanishk-03-Jain", - "url": "https://github.com/Kanishk-03-Jain", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/225"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121486541?u=d6d34e730103611d16bc1b2229ffbfdcfed93ed7&v=4", - "login": "AshaSatpathy08", - "url": "https://github.com/AshaSatpathy08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/224"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129295011?v=4", - "login": "SaumyaSinha11", - "url": "https://github.com/SaumyaSinha11", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/223"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128152517?v=4", - "login": "RishitaChourey", - "url": "https://github.com/RishitaChourey", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/221"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136448829?u=4759496aaec44382445648bd1e79a53a73e37a78&v=4", - "login": "Riddhima-sh", - "url": "https://github.com/Riddhima-sh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/220"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71775244?v=4", - "login": "saisri0102", - "url": "https://github.com/saisri0102", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/218"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87930046?u=df7b0ab679cad4cc07ea32a0b0b2b183e1f4ae15&v=4", - "login": "Ritika-sahu", - "url": "https://github.com/Ritika-sahu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/217"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149311117?v=4", - "login": "NittinBalajee1", - "url": "https://github.com/NittinBalajee1", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/215"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114353434?u=7605a18ef90426ee15cc30e33529ae9c164cb36e&v=4", - "login": "Aditya01229", - "url": "https://github.com/Aditya01229", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/214"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96570918?u=e7039e5ed07e2cf50adb5c87f9451041f8c270ab&v=4", - "login": "Ishika0-0", - "url": "https://github.com/Ishika0-0", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/213"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99522377?v=4", - "login": "mohit2202solanki", - "url": "https://github.com/mohit2202solanki", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/212"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86071448?u=5c97f6d14a65e34b5807e19aa029e1d2cab6afca&v=4", - "login": "pgit80", - "url": "https://github.com/pgit80", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/211"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168272914?v=4", - "login": "Agrima11", - "url": "https://github.com/Agrima11", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/207"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156935991?v=4", - "login": "MitvaGami", - "url": "https://github.com/MitvaGami", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/206"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142713127?u=16f41aa59f6b1be60531dbc1919f3a7e5ca9a971&v=4", - "login": "AaryaBalwadkar", - "url": "https://github.com/AaryaBalwadkar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/205"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163498754?u=f3b411604fbc4a5e6354906b6f0510ce8164e395&v=4", - "login": "JyothsnaThangudu", - "url": "https://github.com/JyothsnaThangudu", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/204"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109607812?u=db1804786a9514b3f25f392fc24b0e71ad340cae&v=4", - "login": "Hemav009", - "url": "https://github.com/Hemav009", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/203"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152963337?u=4099fddc6a00c46a3f3f47e7681021b0c5939d1e&v=4", - "login": "Dishika18", - "url": "https://github.com/Dishika18", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/201"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141651707?v=4", - "login": "22bce355", - "url": "https://github.com/22bce355", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/200"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94544741?v=4", - "login": "Shirapti-nath", - "url": "https://github.com/Shirapti-nath", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/199"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153417476?u=15452eb5f29a19a5853bf370f805fe42f46224a3&v=4", - "login": "SuhainaFathimaM", - "url": "https://github.com/SuhainaFathimaM", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/198"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116961842?u=78c963693fba34a04ae0ccf149b20b51ed741475&v=4", - "login": "ISHAAN-KKR", - "url": "https://github.com/ISHAAN-KKR", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/196"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118350936?u=5e310d4df19513d79f476a55458bfb5bb52e172d&v=4", - "login": "Ayushmaanagarwal1211", - "url": "https://github.com/Ayushmaanagarwal1211", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/195"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97382450?v=4", - "login": "nancyvaryani", - "url": "https://github.com/nancyvaryani", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/194"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123758112?u=13acd77ee3773d2df474b8f88b6f659c92341768&v=4", - "login": "Mohitgit22", - "url": "https://github.com/Mohitgit22", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/193"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86124941?v=4", - "login": "Varshithays", - "url": "https://github.com/Varshithays", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/191"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114976908?v=4", - "login": "Akshayata101", - "url": "https://github.com/Akshayata101", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/190"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109239306?u=f81d000cee13e1adaa74a02f358277118d122c77&v=4", - "login": "KaushikBarnwal", - "url": "https://github.com/KaushikBarnwal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/188"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109980230?v=4", - "login": "RiddhiMenroy", - "url": "https://github.com/RiddhiMenroy", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/187"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142675883?u=c62a7d463d80fbd12f23015456a71a5f123071a3&v=4", - "login": "AnushkaJainFirst", - "url": "https://github.com/AnushkaJainFirst", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/186"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89072615?v=4", - "login": "pranavimehta13", - "url": "https://github.com/pranavimehta13", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/185"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85643543?v=4", - "login": "arnab-mitra", - "url": "https://github.com/arnab-mitra", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/184"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128205418?v=4", - "login": "Ambika03p", - "url": "https://github.com/Ambika03p", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/183"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136837983?v=4", - "login": "Preeti-deora", - "url": "https://github.com/Preeti-deora", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/182"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105533753?u=f2059da569d1fc82ee35c7be7de9bd3a1153c2f8&v=4", - "login": "AkhilJain5", - "url": "https://github.com/AkhilJain5", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/180"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141440717?v=4", - "login": "karthikreddydasari", - "url": "https://github.com/karthikreddydasari", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/178"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151030407?u=d555741994b1ff7c9f04ceab2546ddb607b38119&v=4", - "login": "bhumii-ka", - "url": "https://github.com/bhumii-ka", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/175"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113823534?v=4", - "login": "ApurvaDharam", - "url": "https://github.com/ApurvaDharam", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/174"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/164050245?v=4", - "login": "BhargavTammana", - "url": "https://github.com/BhargavTammana", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/173"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103471906?u=110479ff8ec23db9d4fda676919028a248253fc2&v=4", - "login": "adititapariya", - "url": "https://github.com/adititapariya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/172"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121669832?u=0942f420d2dce8f44593747ca981a4af7040dbc4&v=4", - "login": "nagalakshmi08", - "url": "https://github.com/nagalakshmi08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/171"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144557094?u=0048ec18da21f3384aca7df73e2d51b1b85390e5&v=4", - "login": "spacedust26", - "url": "https://github.com/spacedust26", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/168"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151536566?v=4", - "login": "Navyazitya", - "url": "https://github.com/Navyazitya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/167"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162597558?v=4", - "login": "shrutisachan08", - "url": "https://github.com/shrutisachan08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/166"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157285144?v=4", - "login": "KhushmitaKapoor", - "url": "https://github.com/KhushmitaKapoor", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/165"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124676798?u=7de381e203a44bb59a751a8f3288c429f6ea7d54&v=4", - "login": "anshika-gupta21", - "url": "https://github.com/anshika-gupta21", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/164"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142316099?u=4056ac41fe4ab757ff2f6bf2c0fa14c554b02f9a&v=4", - "login": "Tanish2510", - "url": "https://github.com/Tanish2510", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/163"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120418119?v=4", - "login": "AnkitaWaghode25", - "url": "https://github.com/AnkitaWaghode25", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/160"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97722918?u=43b7bf5e56084bd2565c595daee9ceb887e36cd8&v=4", - "login": "anushreenair", - "url": "https://github.com/anushreenair", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/162"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169088332?v=4", - "login": "sshreyanshii", - "url": "https://github.com/sshreyanshii", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/159"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114985798?u=78bfd30ee50965bc65ebce16a961da04c40ac583&v=4", - "login": "amitdhiman5086", - "url": "https://github.com/amitdhiman5086", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/155"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94301340?v=4", - "login": "ayushpant007", - "url": "https://github.com/ayushpant007", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/156"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145866141?v=4", - "login": "prajwaldp223", - "url": "https://github.com/prajwaldp223", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/153"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128730998?u=0de097b289d38a5f3d12122a3cd3715d7655eea1&v=4", - "login": "richa-dasila", - "url": "https://github.com/richa-dasila", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/154"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124431955?u=92a0cfdc7d064c9dae75771348b263d3f4786210&v=4", - "login": "GAVINESHWAR", - "url": "https://github.com/GAVINESHWAR", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/152"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147407422?u=3d169ceb9a44f7edfb89f783d36042d2c0e04f1e&v=4", - "login": "ishankumax", - "url": "https://github.com/ishankumax", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/150"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119871426?u=8f2eb8d522cea86d07e1ec7262f6326214123605&v=4", - "login": "anythingkartik", - "url": "https://github.com/anythingkartik", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/151"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70941806?u=25ce1b94d301680dd70156830b9de96e8da1a075&v=4", - "login": "Dovineowuor", - "url": "https://github.com/Dovineowuor", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/149"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111629975?u=adf979c5e4c7f092acad2d9337546d0bd3760ba7&v=4", - "login": "siimrann", - "url": "https://github.com/siimrann", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/147"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94740587?v=4", - "login": "ABaijal9", - "url": "https://github.com/ABaijal9", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/146"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138819512?u=ac1de8d99a1005215e58d8f856bc8bcc7b7cdda9&v=4", - "login": "Helios-snd", - "url": "https://github.com/Helios-snd", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/145"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133030594?v=4", - "login": "Vika0408", - "url": "https://github.com/Vika0408", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/140"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143436704?u=7f45318112b2b084ebd9e0cb2373ff1f5e3f194a&v=4", - "login": "VanshikaSabharwal", - "url": "https://github.com/VanshikaSabharwal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/139"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85925305?u=91a5d131359ad98bb7e61fd3083ac8ff72014b0c&v=4", - "login": "arjav-sankadasariya", - "url": "https://github.com/arjav-sankadasariya", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/136"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161048664?v=4", - "login": "muskan18113", - "url": "https://github.com/muskan18113", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/134"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109858950?u=209986899683d050362469a41deaeacb11141aac&v=4", - "login": "navjot369", - "url": "https://github.com/navjot369", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/131"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119872245?u=26ab6f45bc6f796ff582ef21526bd67c7ba49d1c&v=4", - "login": "realHKV", - "url": "https://github.com/realHKV", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/130"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124946186?v=4", - "login": "SwastikGiri", - "url": "https://github.com/SwastikGiri", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/129"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135738292?u=c5a5522878e95ade16f102663f39f39ca1d2bea3&v=4", - "login": "mtg718", - "url": "https://github.com/mtg718", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/126"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109604928?v=4", - "login": "sinchana91", - "url": "https://github.com/sinchana91", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/124"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129886894?v=4", - "login": "Chelseasingla1", - "url": "https://github.com/Chelseasingla1", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/123"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75719949?u=3350feebe4cfc48c2b9d23fa2bf762f30929f34d&v=4", - "login": "saswat733", - "url": "https://github.com/saswat733", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/122"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159511364?v=4", - "login": "SaiTejaswaniBikkasani", - "url": "https://github.com/SaiTejaswaniBikkasani", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/121"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121868188?u=de9066228935b337f57647ebf5a0ead631fb5699&v=4", - "login": "ketaki-c", - "url": "https://github.com/ketaki-c", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/120"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140700179?v=4", - "login": "mrrahulkrr", - "url": "https://github.com/mrrahulkrr", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/119"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128153339?v=4", - "login": "Vishvajeetr", - "url": "https://github.com/Vishvajeetr", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/116"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130916377?v=4", - "login": "Uma-129", - "url": "https://github.com/Uma-129", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/114"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96835754?u=ffa5e4494bd80ad1c4c77bc30787fdc67afb50be&v=4", - "login": "zoey-11", - "url": "https://github.com/zoey-11", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/113"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/40622097?u=139b75c5980dc258c8b976bccfec31cbb3cf0ca2&v=4", - "login": "vishalmaurya850", - "url": "https://github.com/vishalmaurya850", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/112"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125187785?v=4", - "login": "ashishraja", - "url": "https://github.com/ashishraja", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/111"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155550591?v=4", - "login": "nik-r-cmd", - "url": "https://github.com/nik-r-cmd", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/109"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143314026?u=7ca598ec73b2fa6ea8a21f43277bf781999baac3&v=4", - "login": "MoonStar05", - "url": "https://github.com/MoonStar05", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/107"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91557698?u=5159f357a7e2f2e034ee98912d5f7bb9711e97c7&v=4", - "login": "Shivamm138", - "url": "https://github.com/Shivamm138", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/105"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88439503?u=94855b3b8d7618a83abcfc28c53b6df2193a0e13&v=4", - "login": "ojuss", - "url": "https://github.com/ojuss", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/100"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169437722?v=4", - "login": "kusumdesai", - "url": "https://github.com/kusumdesai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/103"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114292400?u=1946f683ce1e25d6c4a975d792b79ca8d9151c2d&v=4", - "login": "sujal1256", - "url": "https://github.com/sujal1256", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/99"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/38392413?u=02f9f59057d4d8440c7be064a260783db2c39be7&v=4", - "login": "asinha828", - "url": "https://github.com/asinha828", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/97"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166292740?u=e4dd884f5b214f78d55f8a3f1bdff59607c340be&v=4", - "login": "Aryan-joh", - "url": "https://github.com/Aryan-joh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/98"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136093003?u=109000605473c23854189a711b813dcfd481339b&v=4", - "login": "avidhanorkar", - "url": "https://github.com/avidhanorkar", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/96"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142377430?v=4", - "login": "Pranavi-04", - "url": "https://github.com/Pranavi-04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/95"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105575423?u=d0c45bdda673be5320e4833ab0569e1384514e89&v=4", - "login": "Prannav-Bansal", - "url": "https://github.com/Prannav-Bansal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/93"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127416976?u=71b45905a8e2fcb7e83fcf9977e65779cff95b91&v=4", - "login": "Swapnita06", - "url": "https://github.com/Swapnita06", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/94"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116277383?u=1a2764fcb6e8dd42f5d2decd1ba6e285b59b3532&v=4", - "login": "jayeshpandey01", - "url": "https://github.com/jayeshpandey01", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/91"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121970496?u=37799b044203b4b39b15818963daaf06f23ceb57&v=4", - "login": "Gaurav-576", - "url": "https://github.com/Gaurav-576", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/90"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149826681?u=08572d7a0c655be937cfc6cb73760c79420b6147&v=4", - "login": "Madhurima-R04", - "url": "https://github.com/Madhurima-R04", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/88"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141858691?u=947bbbaf93052ce7a813bcfa21e35fb57de55694&v=4", - "login": "astitvabajpai", - "url": "https://github.com/astitvabajpai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/87"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/31790226?u=14ea62cf25b4dc8b7bdc8cbb0e94f4fafe7dd351&v=4", - "login": "Vaishalic288", - "url": "https://github.com/Vaishalic288", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/86"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144811227?v=4", - "login": "yashika1900", - "url": "https://github.com/yashika1900", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/83"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141808883?u=bf553484b6b905b8dd8c17415040fe5c712f7686&v=4", - "login": "NamanJain795", - "url": "https://github.com/NamanJain795", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/81"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156688363?u=9d8d6fd7859290f35b03ff5e11b1560e6f39dcb7&v=4", - "login": "Taiyorath", - "url": "https://github.com/Taiyorath", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/80"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114344319?v=4", - "login": "ancelia06", - "url": "https://github.com/ancelia06", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/79"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70209059?u=6ef0746d0472cf66b404e61eb6c3f844dfaac1d7&v=4", - "login": "SwayamTakkamore", - "url": "https://github.com/SwayamTakkamore", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/78"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124462451?u=e0e883ba59781fd821a03d352a6dfd1b606396cd&v=4", - "login": "meenal900", - "url": "https://github.com/meenal900", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/77"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140374924?u=59d8daba0cb78c4004119c31d44b8ce33ff796df&v=4", - "login": "221fa04732", - "url": "https://github.com/221fa04732", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/76"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147132301?v=4", - "login": "Greesma-225B1", - "url": "https://github.com/Greesma-225B1", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/73"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120472258?u=12310bfec24a66a580fa77a5c4f75e07341b2041&v=4", - "login": "nihardas0611", - "url": "https://github.com/nihardas0611", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/72"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102849171?u=33b5d33fbcd1ef0d51db3a045340ee3c16ca9a9e&v=4", - "login": "jinamsancheti", - "url": "https://github.com/jinamsancheti", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/71"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167017252?v=4", - "login": "aryah22", - "url": "https://github.com/aryah22", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/70"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145118298?v=4", - "login": "preethikamal", - "url": "https://github.com/preethikamal", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/68"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144992405?v=4", - "login": "PSP2706", - "url": "https://github.com/PSP2706", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/67"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96912116?u=7a14ccb6d1b6cebb990fc6207dbfdb83808cbc88&v=4", - "login": "Mr-mahato", - "url": "https://github.com/Mr-mahato", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/64"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98510898?u=85d4ef01fd95194e635dc8e84a6f624a833767a6&v=4", - "login": "07sumit1002", - "url": "https://github.com/07sumit1002", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/63"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83562221?u=9466061799cea8c072565ae3ec498e5295ac9dac&v=4", - "login": "deepak9285", - "url": "https://github.com/deepak9285", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/62"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161404554?v=4", - "login": "bhanushri12", - "url": "https://github.com/bhanushri12", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/60"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151991820?v=4", - "login": "Mukta64Chaudhari", - "url": "https://github.com/Mukta64Chaudhari", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/58"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67265990?v=4", - "login": "hpishwe", - "url": "https://github.com/hpishwe", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/56"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143895583?u=bd22cb6a06e2cdf09c66cdde8c26d7d356979d5f&v=4", - "login": "supersaif08", - "url": "https://github.com/supersaif08", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/54"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148907278?u=49d3fa5c1099b4f47c80e1612ad6417f7d16238c&v=4", - "login": "technicalkuldeep", - "url": "https://github.com/technicalkuldeep", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/53"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128249661?v=4", - "login": "SaiMani30", - "url": "https://github.com/SaiMani30", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/52"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74174130?v=4", - "login": "sahilsingh2002", - "url": "https://github.com/sahilsingh2002", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/51"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115137555?u=059c470dff48334114d452c9232c8e2ac352663f&v=4", - "login": "ayush-kumarrai", - "url": "https://github.com/ayush-kumarrai", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/46"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122604770?u=b0caa8d58a2c92af0bf8c5447bfc24e93d65b975&v=4", - "login": "Shadowsweep", - "url": "https://github.com/Shadowsweep", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/47"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140582445?v=4", - "login": "pearll12", - "url": "https://github.com/pearll12", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/44"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137530796?u=9e7450a18cae8bd34712d22981df81136adf2819&v=4", - "login": "roushanverma23", - "url": "https://github.com/roushanverma23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/43"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115869626?u=d5b4d3f5324ebc5c984f952be37c876ff52ed126&v=4", - "login": "Bhumika1312", - "url": "https://github.com/Bhumika1312", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/41"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113108071?v=4", - "login": "gantasrilaitha", - "url": "https://github.com/gantasrilaitha", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/40"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97187233?u=13dbfce809ef75ca4ae24a2905f16d1d1c66b1dc&v=4", - "login": "Hamsikakrishnan", - "url": "https://github.com/Hamsikakrishnan", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/39"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117987490?u=8dc0ff819c61782f5d8e8af2ca128fa91ef316c0&v=4", - "login": "NavuluriBalaji", - "url": "https://github.com/NavuluriBalaji", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/37"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127896918?u=d59bb9305301ad36bcb3e8f724b512f6cf830002&v=4", - "login": "Thewhitewolfsasi", - "url": "https://github.com/Thewhitewolfsasi", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/38"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140430009?v=4", - "login": "Pearlochani131677", - "url": "https://github.com/Pearlochani131677", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/36"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100698912?v=4", - "login": "rahuls49", - "url": "https://github.com/rahuls49", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/33"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153051485?v=4", - "login": "aryadavare19", - "url": "https://github.com/aryadavare19", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/32"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169431837?v=4", - "login": "aditibais", - "url": "https://github.com/aditibais", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/31"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130668745?u=0b9e11bc21affd57f016011f72ed490f42643d7a&v=4", - "login": "MuraliDharan7", - "url": "https://github.com/MuraliDharan7", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/29"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95845265?u=85fd6e871a0caa1a0f9f941102506c893e25616e&v=4", - "login": "Suryansh777777", - "url": "https://github.com/Suryansh777777", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/27"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91836512?v=4", - "login": "sanikadeokule", - "url": "https://github.com/sanikadeokule", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/28"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129723273?v=4", - "login": "Jeba-Rachel-Nesica", - "url": "https://github.com/Jeba-Rachel-Nesica", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/26"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153022605?u=4b81f3b8cbf0c8497ce0ffb1575381aba806258a&v=4", - "login": "rickyrick23", - "url": "https://github.com/rickyrick23", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/23"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114281117?u=a8eed6fb54ef2df46b80f46490a0e533fe2f9d14&v=4", - "login": "ankitgupta143", - "url": "https://github.com/ankitgupta143", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/18"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140625659?v=4", - "login": "VedantKale29", - "url": "https://github.com/VedantKale29", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/21"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97518515?u=0dd20f82bfeb20790fc5eeda3f2a5c3466a6e30c&v=4", - "login": "BhattAnsh", - "url": "https://github.com/BhattAnsh", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/19"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125860170?u=e82f197d0a21f57223e0d867ce558b1a36c2236f&v=4", - "login": "kartikmehta18", - "url": "https://github.com/kartikmehta18", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/16"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94783390?v=4", - "login": "kruthi-sb", - "url": "https://github.com/kruthi-sb", - "score": 25, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/sanjay-kv/Open-source-Practice/pull/13"], - "pr_dates": ["2024-05-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93139973?u=76e65c4e364ad6700691ddbc8a6375a150beef1c&v=4", - "login": "bhavananb062020", - "url": "https://github.com/bhavananb062020", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/79", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/37" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/68294768?u=d18b9a6263d2ba417f414d65e600beedd8cbd86c&v=4", - "login": "sachin2003226", - "url": "https://github.com/sachin2003226", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/39", - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/30" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120786462?u=6b92565f6e2ea8709dae4d1e4e98f500b6458169&v=4", - "login": "Yashhuc", - "url": "https://github.com/Yashhuc", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DeadmanAbir/AgentGenesis/pull/56", - "https://github.com/dhairyagothi/StationGuide/pull/183" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182802565?v=4", - "login": "charu1110", - "url": "https://github.com/charu1110", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1134", - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/677" - ], - "pr_dates": ["2024-10-31", "2024-11-01"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121263870?u=ac5cc9f8dcabfc3780c6006e515c019693c6366f&v=4", - "login": "anshdeep0504", - "url": "https://github.com/anshdeep0504", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/1093", - "https://github.com/vansh-codes/ChaosWeb/pull/200" - ], - "pr_dates": ["2024-10-28", "2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108344062?u=a12f29a5f1fcfa22dc4db327eb983a00943bfd85&v=4", - "login": "SumithThota", - "url": "https://github.com/SumithThota", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/843", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/549" - ], - "pr_dates": ["2024-10-18", "2024-10-19"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/66522620?u=09b8aa288b65cb612e9eba5b5ab4734a4355c892&v=4", - "login": "coderiksenthil", - "url": "https://github.com/coderiksenthil", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/375", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/308" - ], - "pr_dates": ["2024-10-07", "2024-10-08"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154674769?u=68120c29edbb45b821a06dfcb59bc1afe38acd51&v=4", - "login": "ShireenKachroo", - "url": "https://github.com/ShireenKachroo", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aditya-bhaumik/Pathsphere/pull/83", - "https://github.com/subhadipbhowmik/bio-branch/pull/30" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116829016?u=9383e48575e60aaaa1f18a1eb8a18056ee8b5138&v=4", - "login": "ADITHYA-NS", - "url": "https://github.com/ADITHYA-NS", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1331", - "https://github.com/ajay-dhangar/algo/pull/1193" - ], - "pr_dates": ["2024-10-22", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91214235?v=4", - "login": "tanishqkolhatkar93", - "url": "https://github.com/tanishqkolhatkar93", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/1248", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/290" - ], - "pr_dates": ["2024-10-24", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141254298?u=27e10feaf37b02bf577e42454e509e6fa9005e38&v=4", - "login": "Mohith1490", - "url": "https://github.com/Mohith1490", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/14", - "https://github.com/rahulsainlll/git-trace/pull/38" - ], - "pr_dates": ["2024-10-02", "2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151955610?u=e7a58cc0cd367deec32e766cb37bc0c35c2ad21b&v=4", - "login": "RaginiSharma01", - "url": "https://github.com/RaginiSharma01", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/138", - "https://github.com/subhadipbhowmik/bio-branch/pull/20" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157787846?u=110f6141a1900b0f0446a7b445c2908bf41b235d&v=4", - "login": "hetvipopat", - "url": "https://github.com/hetvipopat", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/yatulearn/yatulearn/pull/65", - "https://github.com/Yash-Ainapure/dypcetclubs.live/pull/85" - ], - "pr_dates": ["2024-10-03", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75462806?u=4e529c1544b073046e16b021f92db845a12368bb&v=4", - "login": "RudraKumarSharma", - "url": "https://github.com/RudraKumarSharma", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Amna-Hassan04/Serenity-Guide/pull/72", - "https://github.com/SanchitGeez/Investra/pull/45" - ], - "pr_dates": ["2024-10-04", "2024-10-05"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/79187003?u=fdd92884fde56aede41ad02390b17410f21ae31d&v=4", - "login": "KeshavGogia", - "url": "https://github.com/KeshavGogia", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ankit071105/Ticket-Booking/pull/605", - "https://github.com/ankit071105/Ticket-Booking/pull/583" - ], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74317826?u=455eec37042d0ffcb6489a908c1a75e78866885a&v=4", - "login": "Namit2111", - "url": "https://github.com/Namit2111", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anmode/grabtern-frontend/pull/860", - "https://github.com/yashasvini121/predictive-calc/pull/62" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128963957?u=202ef97c2191483380e1a689f15789b5e6745ce1&v=4", - "login": "KAJAL7764", - "url": "https://github.com/KAJAL7764", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1595", - "https://github.com/vishanurag/Canvas-Editor/pull/862" - ], - "pr_dates": ["2024-10-22", "2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144154013?u=6da6d8832e30148d4bed6daf3d9be62f975b5283&v=4", - "login": "paricharm", - "url": "https://github.com/paricharm", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/1195", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/833" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120731431?v=4", - "login": "Anujyadav0074", - "url": "https://github.com/Anujyadav0074", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/990", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/371" - ], - "pr_dates": ["2024-10-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92710848?u=7300bdbed8ae9a118ae6b2e656b720f5a2ccc68c&v=4", - "login": "1101surabhi", - "url": "https://github.com/1101surabhi", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/403", - "https://github.com/ANSHIKA-26/WordWise/pull/395" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116504580?u=8e978c67905b3bf07a73c8ac3c0ce4cf58dc6ff0&v=4", - "login": "om453", - "url": "https://github.com/om453", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ANSHIKA-26/WordWise/pull/167", - "https://github.com/tushargupta1504/Medical-Website/pull/231" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85074838?u=5f39249778c5668a5df4c1a26e44b0bb954bdb90&v=4", - "login": "Parnab03", - "url": "https://github.com/Parnab03", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ramsey99/Admin_Dashboard/pull/92", - "https://github.com/swarooppatilx/scruter/pull/146" - ], - "pr_dates": ["2024-10-12", "2024-10-13"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163630194?v=4", - "login": "rasmirajesh", - "url": "https://github.com/rasmirajesh", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4338", - "https://github.com/anuragverma108/SwapReads/pull/4314" - ], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146765607?u=efb73dd5906d10d34f69466a0cd087d96694c175&v=4", - "login": "ShreyanshAgrawal17", - "url": "https://github.com/ShreyanshAgrawal17", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4321", - "https://github.com/anuragverma108/SwapReads/pull/4296" - ], - "pr_dates": ["2024-10-30", "2024-10-31"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181862584?v=4", - "login": "RishabxBhardwaj", - "url": "https://github.com/RishabxBhardwaj", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3613", - "https://github.com/swarooppatilx/scruter/pull/149" - ], - "pr_dates": ["2024-10-13", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138794574?v=4", - "login": "sahithinandikula", - "url": "https://github.com/sahithinandikula", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3530", - "https://github.com/anuragverma108/SwapReads/pull/3443" - ], - "pr_dates": ["2024-10-14", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151055910?u=e8d4bc6db5e4486ed5d98a6e1ec09b0e33ca020e&v=4", - "login": "s0wjanyaa", - "url": "https://github.com/s0wjanyaa", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3205", - "https://github.com/anuragverma108/SwapReads/pull/3153" - ], - "pr_dates": ["2024-10-09", "2024-10-10"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170004550?u=4c6250027214e55294c7ee261c4dd8b08004a6cb&v=4", - "login": "rohitsharma2610", - "url": "https://github.com/rohitsharma2610", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/3135", - "https://github.com/Anjaliavv51/Retro/pull/124" - ], - "pr_dates": ["2024-10-03", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118905174?u=f6b252e569b5e6cab53ecb18b80b78eb583b2058&v=4", - "login": "bhatiatanish225", - "url": "https://github.com/bhatiatanish225", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishanurag/Canvas-Editor/pull/350", - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/75" - ], - "pr_dates": ["2024-10-06", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138571862?u=c8f9b398371e0ef64c51ddbb9d930c44e830f716&v=4", - "login": "mjgandhi2305", - "url": "https://github.com/mjgandhi2305", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/103", - "https://github.com/UTSAVS26/PyVerse/pull/530" - ], - "pr_dates": ["2024-10-07", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178973887?v=4", - "login": "diva711", - "url": "https://github.com/diva711", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/20", - "https://github.com/mansiruhil13/Bobble-AI/pull/47" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135150305?u=0d681644a4a25c593dccd73d828602d6efcb7698&v=4", - "login": "Anu142004", - "url": "https://github.com/Anu142004", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/311", - "https://github.com/recodehive/machine-learning-repos/pull/1513" - ], - "pr_dates": ["2024-10-18", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139307139?u=282803e279b9db46c8ba12922f3db71012d7924c&v=4", - "login": "codewithganeshhh", - "url": "https://github.com/codewithganeshhh", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/148", - "https://github.com/iamrahulmahato/master-web-development/pull/1301", - "https://github.com/iamrahulmahato/master-web-development/pull/855" - ], - "pr_dates": ["2024-10-06", "2024-10-09", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171659408?v=4", - "login": "Khushi-Dua", - "url": "https://github.com/Khushi-Dua", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/490", - "https://github.com/UTSAVS26/PySnippets/pull/277" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113383437?u=a2bc7c26efc226bac73e564e1eb33670f1ed4819&v=4", - "login": "subhro1530", - "url": "https://github.com/subhro1530", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Avdhesh-Varshney/WebMasterLog/pull/961"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154976021?v=4", - "login": "sruthi070", - "url": "https://github.com/sruthi070", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/Ezyshop/pull/14", - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/207" - ], - "pr_dates": ["2024-10-01", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100376290?u=b4b4bde6425d84951483dde3be4b456ab53a747a&v=4", - "login": "NitishKumar525", - "url": "https://github.com/NitishKumar525", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mdazfar2/HelpOps-Hub/pull/1383", - "https://github.com/mansiruhil13/Bobble-AI/pull/853" - ], - "pr_dates": ["2024-10-08", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139547705?v=4", - "login": "spc-28", - "url": "https://github.com/spc-28", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/418", - "https://github.com/Luson045/medi-connect/pull/466" - ], - "pr_dates": ["2024-10-16", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111973702?u=ffed9eaeb2d0f6ec1f6cba0efbb3fc7ba4db69ea&v=4", - "login": "ShivaniNikam1", - "url": "https://github.com/ShivaniNikam1", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dhairyagothi/StationGuide/pull/30", - "https://github.com/Yashgabani845/hiring-portal/pull/22" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126318980?u=7a0412611a6b1fa49e887ad2b67509a34c0184a3&v=4", - "login": "QaisarMoin", - "url": "https://github.com/QaisarMoin", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/my-calendar-app/pull/48", - "https://github.com/divyansh-2005/my-calendar-app/pull/22" - ], - "pr_dates": ["2024-10-03", "2024-10-04"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118552563?u=86e689f361d6e8b4142e8db28c67f308f4aa446e&v=4", - "login": "divyansh-2005", - "url": "https://github.com/divyansh-2005", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/divyansh-2005/FinNews/pull/13", - "https://github.com/divyansh-2005/FinNews/pull/4" - ], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143703788?u=7f2d544fd12fedffff1347a92a9c3f4e52b9249c&v=4", - "login": "Vijitverm1234", - "url": "https://github.com/Vijitverm1234", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/dohinaf/basic-icecream-website/pull/101", - "https://github.com/Anjaliavv51/Retro/pull/369" - ], - "pr_dates": ["2024-10-02", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118621969?u=62326ee48287a15e15ac2b85dec51087ce54dee0&v=4", - "login": "Ashutoshrai10630", - "url": "https://github.com/Ashutoshrai10630", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/353", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/25" - ], - "pr_dates": ["2024-10-01", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130893914?u=026b79b1515167b6558deff946b9deb5f177709d&v=4", - "login": "GarimaSingh0109", - "url": "https://github.com/GarimaSingh0109", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/WasteManagment/pull/147", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/207" - ], - "pr_dates": ["2024-10-03", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125338113?v=4", - "login": "Gaurav075", - "url": "https://github.com/Gaurav075", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/79", - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/235" - ], - "pr_dates": ["2024-10-02", "2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135726592?u=2416803ead986cbf4aa00599053794426a82c64d&v=4", - "login": "ankitkrdubey", - "url": "https://github.com/ankitkrdubey", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/69", - "https://github.com/Anjaliavv51/Retro/pull/96" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101326824?u=b650158f96123ebdb0f280ca6ed76b69e031118d&v=4", - "login": "Deepanshi0019", - "url": "https://github.com/Deepanshi0019", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/401", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/112" - ], - "pr_dates": ["2024-10-17", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83627055?u=a5a1abe6f89b4c57fd848efd04d9397da638a72b&v=4", - "login": "harjasae2001", - "url": "https://github.com/harjasae2001", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Bitbox-Connect/Bitbox/pull/271", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/389" - ], - "pr_dates": ["2024-10-23", "2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147196315?v=4", - "login": "CharVaibhav", - "url": "https://github.com/CharVaibhav", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/himeshparashar/Social-Morph/pull/116", - "https://github.com/apu52/Travel_Website/pull/1540" - ], - "pr_dates": ["2024-10-17", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143936287?u=b0405682c50a0ca7f98e02b46db96e91520df3b5&v=4", - "login": "Hemant9808", - "url": "https://github.com/Hemant9808", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/jahnvisahni31/DesignDeck/pull/124", - "https://github.com/jahnvisahni31/DesignDeck/pull/121" - ], - "pr_dates": ["2024-10-14", "2024-10-15"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/61641814?u=94f20531d9c36b95cc9923ab6105bcd60c08e9e9&v=4", - "login": "sank8-2", - "url": "https://github.com/sank8-2", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Open-Code-Crafters/FitFlex/pull/253", - "https://github.com/Open-Code-Crafters/FitFlex/pull/239" - ], - "pr_dates": ["2024-10-15", "2024-10-16"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92933416?v=4", - "login": "Aum8", - "url": "https://github.com/Aum8", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/manikumarreddyu/AgroTech-AI/pull/160", - "https://github.com/AmateursLeague/sneaky-package/pull/166" - ], - "pr_dates": ["2024-10-08", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159127686?u=bee09bad06a4560910befb75d4dd28d6bcd11377&v=4", - "login": "krish2366", - "url": "https://github.com/krish2366", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/286", - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/241" - ], - "pr_dates": ["2024-10-09", "2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95637160?u=460319f169da26b5b5e95c6962cdbea7bbc4e35a&v=4", - "login": "Cgarg9", - "url": "https://github.com/Cgarg9", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/maniyaom/Movie-Ticket-Booking/pull/128", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/409" - ], - "pr_dates": ["2024-10-05", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144504389?u=c5ff0fc4a02d886d5c75671b3e7800328bd8a837&v=4", - "login": "Monojit-Pal", - "url": "https://github.com/Monojit-Pal", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/786", - "https://github.com/mansiruhil13/Bobble-AI/pull/605" - ], - "pr_dates": ["2024-10-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149924007?v=4", - "login": "divyanshii10", - "url": "https://github.com/divyanshii10", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/626", - "https://github.com/multiverseweb/CodeIt/pull/131" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138279046?u=c7968f839dd6895bba8f5486d216e6d4adbd2e59&v=4", - "login": "Rohinipilla", - "url": "https://github.com/Rohinipilla", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/mansiruhil13/Bobble-AI/pull/335", - "https://github.com/samyakmaitre/eventmint/pull/119" - ], - "pr_dates": ["2024-10-06", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179288948?v=4", - "login": "toxic-for-code", - "url": "https://github.com/toxic-for-code", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/c0sm0void/ReVot/pull/51", - "https://github.com/c0sm0void/ReVot/pull/50" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136434860?v=4", - "login": "ananydev", - "url": "https://github.com/ananydev", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1424", - "https://github.com/AlgoGenesis/C/pull/1337" - ], - "pr_dates": ["2024-10-27", "2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100477554?u=1bbab947da01bf03f20a1b32019624aa566a9016&v=4", - "login": "PrasanBora", - "url": "https://github.com/PrasanBora", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/1147", - "https://github.com/AlgoGenesis/C/pull/1017" - ], - "pr_dates": ["2024-10-18", "2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69287212?u=0103685868feda65dbef08767b9c666f88ce4d3c&v=4", - "login": "abhisek247767", - "url": "https://github.com/abhisek247767", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/822", - "https://github.com/iamrahulmahato/master-web-development/pull/1250" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158254960?u=38b1165b6f314988649835313bb6d948974f0ad1&v=4", - "login": "Ambit-ion", - "url": "https://github.com/Ambit-ion", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/664", - "https://github.com/subhadipbhowmik/bio-branch/pull/147" - ], - "pr_dates": ["2024-10-11", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86045051?u=16720761c58052d4d85a5aa1d2a70c9f60b4172a&v=4", - "login": "swarupn17", - "url": "https://github.com/swarupn17", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/579", - "https://github.com/AlgoGenesis/C/pull/519" - ], - "pr_dates": ["2024-10-11", "2024-10-12"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135527820?v=4", - "login": "icemberg", - "url": "https://github.com/icemberg", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AlgoGenesis/C/pull/138", - "https://github.com/AlgoGenesis/C/pull/43" - ], - "pr_dates": ["2024-10-01", "2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146589290?u=7d5b8d7abb4700d7158baf26e02db0b142858964&v=4", - "login": "ayush-singh-26", - "url": "https://github.com/ayush-singh-26", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/218", - "https://github.com/iamrahulmahato/master-web-development/pull/1921" - ], - "pr_dates": ["2024-10-20", "2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99138286?v=4", - "login": "ArinNigam", - "url": "https://github.com/ArinNigam", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/param-code/counter-app/pull/63", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/61" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161146829?u=52334958f5663814fb708a048a9b90fe2252c400&v=4", - "login": "GautamBytes", - "url": "https://github.com/GautamBytes", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/781", - "https://github.com/PriyaGhosal/BuddyTrail/pull/722" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129830187?u=e43562b28c474870a96c8ad0ec31debb02683675&v=4", - "login": "Geet2002", - "url": "https://github.com/Geet2002", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/PriyaGhosal/BuddyTrail/pull/12", - "https://github.com/samyakmaitre/eventmint/pull/28" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174958067?u=daddc8b29bb5bc28a07f2602e7a2ea6158c2da6c&v=4", - "login": "Rohit-Gupta-126", - "url": "https://github.com/Rohit-Gupta-126", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1854", - "https://github.com/iamrahulmahato/master-web-development/pull/1778" - ], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127775780?u=11e35fd8eb98c9c9aa438f426b2fd9a2ab422bb4&v=4", - "login": "Ronnit44", - "url": "https://github.com/Ronnit44", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1306", - "https://github.com/iamrahulmahato/master-web-development/pull/1187" - ], - "pr_dates": ["2024-10-14", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97978729?u=2d84329d3652c0d0060cfaf585ab5ab3cf127fc7&v=4", - "login": "peterdanwan", - "url": "https://github.com/peterdanwan", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/179", - "https://github.com/beRajeevKumar/Frontend_Mentor/pull/59" - ], - "pr_dates": ["2024-10-02", "2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110488337?u=6e5dca9e1624042b28a1840fd27993eff3b5fe20&v=4", - "login": "NilanchalaPanda", - "url": "https://github.com/NilanchalaPanda", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/303", - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/224" - ], - "pr_dates": ["2024-10-11", "2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108807732?u=e3fde76a376fbe5fae4cbaeaa0dc48fe04292175&v=4", - "login": "MutiatBash", - "url": "https://github.com/MutiatBash", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/RamakrushnaBiswal/PlayCafe/pull/83", - "https://github.com/Ratnesh-Team/Rehabify/pull/71" - ], - "pr_dates": ["2024-10-04", "2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154688163?u=433264e05f7f7fe868c165c889811a7cc838136e&v=4", - "login": "syedfardeenjeelani", - "url": "https://github.com/syedfardeenjeelani", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ratnesh-Team/Rehabify/pull/130", - "https://github.com/Ratnesh-Team/Rehabify/pull/119" - ], - "pr_dates": ["2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117620582?u=981ca6254a0e2d383dc15399ed7d73084028a4ae&v=4", - "login": "Roshansuthar1105", - "url": "https://github.com/Roshansuthar1105", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Shreyaa173/Code-Book/pull/337", - "https://github.com/tushargupta1504/Medical-Website/pull/481" - ], - "pr_dates": ["2024-10-17", "2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168887881?u=6c743afdf3b87417d2e95006bc30e3eee2d2b022&v=4", - "login": "Ibrangrd", - "url": "https://github.com/Ibrangrd", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/subhadipbhowmik/bio-branch/pull/216", - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/527" - ], - "pr_dates": ["2024-10-15", "2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/103057900?u=8c025a0895d5a70e23342435dac74d5f480244ee&v=4", - "login": "mdthejaswini123", - "url": "https://github.com/mdthejaswini123", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/multiverseweb/Dataverse/pull/124", - "https://github.com/multiverseweb/Dataverse/pull/87" - ], - "pr_dates": ["2024-10-08", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141764206?v=4", - "login": "sps234", - "url": "https://github.com/sps234", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/TenzDelek/DearDiary/pull/127", - "https://github.com/Yashgabani845/hiring-portal/pull/173" - ], - "pr_dates": ["2024-10-16", "2024-10-17"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72267172?u=59d42b3e1e5d2e368ab6794794d351facc9889aa&v=4", - "login": "akankshagoel28", - "url": "https://github.com/akankshagoel28", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/TenzDelek/DearDiary/pull/83", - "https://github.com/TenzDelek/DearDiary/pull/75" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121554755?u=3fed1f3c5f658135a4426f98924cc6c054bf06b1&v=4", - "login": "MuhammadAshraf23", - "url": "https://github.com/MuhammadAshraf23", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Trisha-tech/OnlineBookSales/pull/481", - "https://github.com/GlobeHoppin/GlobeHoppin/pull/47" - ], - "pr_dates": ["2024-10-12", "2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181656831?v=4", - "login": "Anchal-C09", - "url": "https://github.com/Anchal-C09", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/285", - "https://github.com/visheshrwl/Uber-like/pull/32" - ], - "pr_dates": ["2024-10-07", "2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78863735?u=c348439bdcd78995a9f0fe7eafc16b1c7f7b40d8&v=4", - "login": "rielara", - "url": "https://github.com/rielara", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/116", - "https://github.com/tushargupta1504/Medical-Website/pull/114" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93330349?u=7732a930ad8c1cbf01fb18a6a53e51f8c6093883&v=4", - "login": "softcreations01", - "url": "https://github.com/softcreations01", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UTSAVS26/PySnippets/pull/31", - "https://github.com/AmateursLeague/sneaky-package/pull/79" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179064451?u=d2362d5c37316bf90b5e3ffcfa9fc7457bf922a1&v=4", - "login": "codingkatty", - "url": "https://github.com/codingkatty", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vansh-codes/ChaosWeb/pull/10", - "https://github.com/Vin205/Enyanjyoti/pull/147" - ], - "pr_dates": ["2024-10-07", "2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122532017?u=a6d48f5e7c1ba0ef5a6aa7230030bf002e2ed3b2&v=4", - "login": "Roshn1", - "url": "https://github.com/Roshn1", - "score": 20, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/431", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/615" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120677795?u=11ae1cc468afe635036ee9f248f1e1bccc23b44c&v=4", - "login": "agrawal-2005", - "url": "https://github.com/agrawal-2005", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/192" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136257977?v=4", - "login": "aryanbroy", - "url": "https://github.com/aryanbroy", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/DeadmanAbir/AgentGenesis/pull/49"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91659222?u=d47cbdaf8adf3b7e42a9dc8869998522538b55b5&v=4", - "login": "VinaySatrasala", - "url": "https://github.com/VinaySatrasala", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/passop/pull/120"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146477733?v=4", - "login": "exilonium", - "url": "https://github.com/exilonium", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/passop/pull/96"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158245450?v=4", - "login": "SaiChithra333", - "url": "https://github.com/SaiChithra333", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/BlogLog/pull/79"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106534816?v=4", - "login": "susrithasabbini", - "url": "https://github.com/susrithasabbini", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jinx-vi-0/BlogLog/pull/51"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145773101?v=4", - "login": "nafri-dev", - "url": "https://github.com/nafri-dev", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/809"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183887459?u=871565fd72e7fdc12f70c4a85594dd31001f5523&v=4", - "login": "Manojkumar2806", - "url": "https://github.com/Manojkumar2806", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/619"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153054435?v=4", - "login": "Aman-git06", - "url": "https://github.com/Aman-git06", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aditya-bhaumik/Pathsphere/pull/368"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96601297?v=4", - "login": "RohanSai22", - "url": "https://github.com/RohanSai22", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/1649"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/109915216?v=4", - "login": "Bhabuk10", - "url": "https://github.com/Bhabuk10", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/1612"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118468993?u=74d700890f41fb80be45241f4f6716cda941c68c&v=4", - "login": "sujal-GITHUB", - "url": "https://github.com/sujal-GITHUB", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/1389"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161104919?v=4", - "login": "Mahi3454", - "url": "https://github.com/Mahi3454", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/962"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67007907?u=d02f558748e3de271a166b17af8594199c47e275&v=4", - "login": "kartik1112", - "url": "https://github.com/kartik1112", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/959"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126577697?u=5141efe13e0385563ee26169d5af3d92db8ead19&v=4", - "login": "NishantRana07", - "url": "https://github.com/NishantRana07", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ajay-dhangar/algo/pull/918", - "https://github.com/tushargupta1504/Medical-Website/pull/168" - ], - "pr_dates": ["2024-10-03", "2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/98088562?u=26056a631839c6fe41473eccd0cc05440aaefab5&v=4", - "login": "madhavi-peddireddy", - "url": "https://github.com/madhavi-peddireddy", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/880"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/20163397?v=4", - "login": "Rashigera", - "url": "https://github.com/Rashigera", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/760"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154254173?v=4", - "login": "karanmaheshwari16", - "url": "https://github.com/karanmaheshwari16", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/704"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171145729?v=4", - "login": "aasritha-24", - "url": "https://github.com/aasritha-24", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/599"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85981396?v=4", - "login": "Ruksina01", - "url": "https://github.com/Ruksina01", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/508"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/102274145?u=521cfa7251c08b250c0be6bbeb19e6c7c885dc70&v=4", - "login": "CygnusST3RN", - "url": "https://github.com/CygnusST3RN", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/299"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111058944?u=92c443cb402fa6601471663b38a18f0ed7100f0d&v=4", - "login": "jashwanthbavandlapalli", - "url": "https://github.com/jashwanthbavandlapalli", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/261"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171218596?v=4", - "login": "IRFANSARI2", - "url": "https://github.com/IRFANSARI2", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ajay-dhangar/algo/pull/99"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161118938?v=4", - "login": "omkar861856", - "url": "https://github.com/omkar861856", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/YadavAkhileshh/Alien-Invasion-Defense/pull/59" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87000693?u=d13f3968506c03fd409a20f1546d1f54d121529a&v=4", - "login": "iamDyeus", - "url": "https://github.com/iamDyeus", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/AkshitLakhera/PenCraft-Full-Stack-Blogging-Application/pull/97" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150408924?u=842ffc1c9dfd9dd51336b4cd1360daa064cde982&v=4", - "login": "MisbahAnsar", - "url": "https://github.com/MisbahAnsar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/175"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86351406?v=4", - "login": "MohammedMusharraf11", - "url": "https://github.com/MohammedMusharraf11", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/150"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87393095?u=7923f32a420631bce1ff428e255d563176b01d90&v=4", - "login": "Atharv-110", - "url": "https://github.com/Atharv-110", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/142"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144623706?u=96dfb0151019e4ea9f71ca040dca1c9ceb873654&v=4", - "login": "syedmohammadaquib", - "url": "https://github.com/syedmohammadaquib", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/463"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152291442?u=5ef6abf201416f8f471249bb3772e0ea2dde3240&v=4", - "login": "ShrutiDesai7", - "url": "https://github.com/ShrutiDesai7", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/276"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144620986?u=688af2f214610329dcd98147d77e55ed4238fdab&v=4", - "login": "ayush-badola", - "url": "https://github.com/ayush-badola", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/168"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132534225?u=aefd99064113dc563b3967c0d04ae8ce1427de02&v=4", - "login": "UdaySharmaGitHub", - "url": "https://github.com/UdaySharmaGitHub", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/159"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99401620?u=62d508aa25fbd0b066976766c5b681f4d5fbebd0&v=4", - "login": "Saurabh-Sithkar", - "url": "https://github.com/Saurabh-Sithkar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yatulearn/yatulearn/pull/25"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178201552?u=64d167a29b73976f48ff4ab823c140ffbd8e2879&v=4", - "login": "Ayush07571", - "url": "https://github.com/Ayush07571", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Amna-Hassan04/Serenity-Guide/pull/26"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113840168?u=616f784e062f8438fd8e1cad93286f59f4761ff6&v=4", - "login": "apoorvxgoyalx", - "url": "https://github.com/apoorvxgoyalx", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Amna-Hassan04/Serenity-Guide/pull/18"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118840840?u=4a6c7ce27f1b21345f6f5534c71818f49d17423f&v=4", - "login": "Ayo-J", - "url": "https://github.com/Ayo-J", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ChandelAnish/fusionFLOW/pull/80", - "https://github.com/ankit071105/Ticket-Booking/pull/541" - ], - "pr_dates": ["2024-10-21", "2024-10-22"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180170450?u=5949e92907e83f068013cdbacf0248b7bf658b3a&v=4", - "login": "Jeeban-2006", - "url": "https://github.com/Jeeban-2006", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/819"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147676593?v=4", - "login": "srikanth-maganti", - "url": "https://github.com/srikanth-maganti", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/643"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156843487?v=4", - "login": "so-bhannn", - "url": "https://github.com/so-bhannn", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/606"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104285668?v=4", - "login": "Skibo555", - "url": "https://github.com/Skibo555", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/600"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143603317?v=4", - "login": "SAURABHM6341", - "url": "https://github.com/SAURABHM6341", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/548"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122800754?u=f8937bb91298c41be8b8ac7cdc8d42ae74495afe&v=4", - "login": "sanghaibiraj", - "url": "https://github.com/sanghaibiraj", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/312"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146601839?v=4", - "login": "Drumsofliberation", - "url": "https://github.com/Drumsofliberation", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/86"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123178490?u=ccb303f2d9cf16642aede91254f647aed664c767&v=4", - "login": "Kritikaadhikarii", - "url": "https://github.com/Kritikaadhikarii", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anki2003ta/Museum/pull/108"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141572538?u=57da14abb0ed1732f268605df13adcade9194e41&v=4", - "login": "Kishore007raj", - "url": "https://github.com/Kishore007raj", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/BhattAnsh/Quiz-Quest/pull/87"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93012434?u=71fb7cf43ac1fe1cb7fbc900caf8e933a4e0dfdf&v=4", - "login": "Sai-Dangade777", - "url": "https://github.com/Sai-Dangade777", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/1194"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178394669?u=efdac34c535e26a76b52126af2c4a028356113fa&v=4", - "login": "rahulkumarparida", - "url": "https://github.com/rahulkumarparida", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/590"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140867154?v=4", - "login": "Adityakashyap1011", - "url": "https://github.com/Adityakashyap1011", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/236"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148899975?u=fdf42d8dfb612bc0bbb68cc62b667e510aed0ef0&v=4", - "login": "kashishchadha", - "url": "https://github.com/kashishchadha", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/174"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116107585?u=b6a72533833f36f3eb5d2bb6e5c76b6b50eed568&v=4", - "login": "Kush0l", - "url": "https://github.com/Kush0l", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ANSHIKA-26/WordWise/pull/44"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152735801?v=4", - "login": "Molza01", - "url": "https://github.com/Molza01", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/4371"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135182172?u=2f5ab4f3b3f7ba698031556f7c5977ae51217d2a&v=4", - "login": "torok839098", - "url": "https://github.com/torok839098", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/4359"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95224492?v=4", - "login": "Vijay1667", - "url": "https://github.com/Vijay1667", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/anuragverma108/SwapReads/pull/4299", - "https://github.com/anuragverma108/SwapReads/pull/4290" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71967236?u=5ceecc8906453dcf69a718b5d52628ef6cdbd9bb&v=4", - "login": "Mr-Mysterious001", - "url": "https://github.com/Mr-Mysterious001", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/4050"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113921344?u=e93e65bd543a09f8ccc165cd59cf88975182efab&v=4", - "login": "Mayank-joshi-21", - "url": "https://github.com/Mayank-joshi-21", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/3916"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181308295?v=4", - "login": "pratapVansh", - "url": "https://github.com/pratapVansh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/3725"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170264634?u=98f14b8d9ac3e829f47c26c242c1cb4cb9b4a4b2&v=4", - "login": "AnuragPrasad003", - "url": "https://github.com/AnuragPrasad003", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/2928"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144581159?v=4", - "login": "mitgajera", - "url": "https://github.com/mitgajera", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/2920"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181331677?v=4", - "login": "Sahitya317", - "url": "https://github.com/Sahitya317", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/1135"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143935481?u=7eed316ea16c077552a0b0992ce11274e0f70130&v=4", - "login": "meayushsriv", - "url": "https://github.com/meayushsriv", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/923"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143632243?u=5289c395775173e3a458ae2a68335f9585654a22&v=4", - "login": "NirajD04", - "url": "https://github.com/NirajD04", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/676"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153225726?u=0e1f97d9cf10b8d7597bd9cb2c5849c154f20177&v=4", - "login": "Yusufiqbal15", - "url": "https://github.com/Yusufiqbal15", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/620"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181267808?u=b7a7feebde903790f99de75d1c20c84c403eb855&v=4", - "login": "AppajiDheeraj", - "url": "https://github.com/AppajiDheeraj", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/509"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/44458689?u=3e57af04ff9d48875820f204b45464afc262980f&v=4", - "login": "wgeenath", - "url": "https://github.com/wgeenath", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/354"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180192523?v=4", - "login": "AnantInamdar77", - "url": "https://github.com/AnantInamdar77", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vishanurag/Canvas-Editor/pull/275"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160386036?u=8149069c7c6fa522c269b06a717ce9244292ba4b&v=4", - "login": "Tejashri-Taral", - "url": "https://github.com/Tejashri-Taral", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/141"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/159878513?u=587999afb4244ac2de6a15dae035069f35767f01&v=4", - "login": "akanchha-rani", - "url": "https://github.com/akanchha-rani", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/91"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146846561?u=177425e3e89404ad5b7eb7b8d340fbfdee03ab75&v=4", - "login": "Harshgupta88156", - "url": "https://github.com/Harshgupta88156", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/84"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115967163?u=b26f9e96a79c8b7ccc47ba040122801581dc2d4f&v=4", - "login": "BKarthik7", - "url": "https://github.com/BKarthik7", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/11"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101893007?u=0b7ed3d3c9be4f57d2ae8132b1fd0fc4f7682c64&v=4", - "login": "akshayabankumidi", - "url": "https://github.com/akshayabankumidi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Code-Social/official-website/pull/379"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183840005?v=4", - "login": "ManmathX", - "url": "https://github.com/ManmathX", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Code-Social/official-website/pull/211"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182738528?u=df48ca68476e58768b901bec034975920d58feb9&v=4", - "login": "Samar-Ali-Ansari", - "url": "https://github.com/Samar-Ali-Ansari", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Code-Social/official-website/pull/138"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157788392?u=ee921637c5a49644c5b1d16a5fd625b7c9686c81&v=4", - "login": "Prerrna", - "url": "https://github.com/Prerrna", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Code-Social/official-website/pull/60"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144675344?v=4", - "login": "Addhithya", - "url": "https://github.com/Addhithya", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/289" - ], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142257623?v=4", - "login": "Abhiiesante", - "url": "https://github.com/Abhiiesante", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/261" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142977831?u=610feac64d421ad8cc71a8865bc1601bddd2dd87&v=4", - "login": "Vatsal565", - "url": "https://github.com/Vatsal565", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/241" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132442209?v=4", - "login": "Nikhat623446", - "url": "https://github.com/Nikhat623446", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/223" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180019154?v=4", - "login": "Satyabrat2005", - "url": "https://github.com/Satyabrat2005", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Aryan-Chharia/Computer-Vision-Projects/pull/222" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112507212?u=cb5d4a64232bc8abfa657518b4d54c0aa40b7942&v=4", - "login": "AvgBlank", - "url": "https://github.com/AvgBlank", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/59" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157873663?u=02ef9edebbc15702613263e5bd0a3b3cc61b3665&v=4", - "login": "TEJAS07080", - "url": "https://github.com/TEJAS07080", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/MAVERICK-VF142/Object_tracking_in_360_video/pull/52" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183237241?v=4", - "login": "lazzysimp", - "url": "https://github.com/lazzysimp", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/511"], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180660700?v=4", - "login": "adityadhawan44", - "url": "https://github.com/adityadhawan44", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/505"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105379510?u=7dfa78177dbdd2d41ffc76d4be03cd0b9b859ce7&v=4", - "login": "Jayant7579", - "url": "https://github.com/Jayant7579", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/504"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140953225?u=5bb637a96ec37cf95b2743e755f078b29e0740d4&v=4", - "login": "Ravibabu910", - "url": "https://github.com/Ravibabu910", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/501"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/22760433?v=4", - "login": "EspeonIV", - "url": "https://github.com/EspeonIV", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/499"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181277571?v=4", - "login": "tripujjawal", - "url": "https://github.com/tripujjawal", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/498"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104143943?u=4be5757bf00225a35bef8728098c5f50820876d9&v=4", - "login": "namankoolwal", - "url": "https://github.com/namankoolwal", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/487"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117290841?u=96560c84e892803e579b336a6482f7fd7c825e6c&v=4", - "login": "Venkateeshh", - "url": "https://github.com/Venkateeshh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/483"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158801253?u=794735a89c283ace0d898f60a8e23b1540e9ee5a&v=4", - "login": "SRIJAN-KUMAR7", - "url": "https://github.com/SRIJAN-KUMAR7", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/480"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108617140?u=79d9e8f9122591d924d76e3b9dd8fc139b204cbc&v=4", - "login": "PranayBhatnagar", - "url": "https://github.com/PranayBhatnagar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/453"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126886440?u=cc5ca6611fcf63723755822c17a28102ced7e4fd&v=4", - "login": "VedasreeM", - "url": "https://github.com/VedasreeM", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/442"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151118056?u=442b3ec5ff20464abf8f2b755296a6ff3f6095c3&v=4", - "login": "Coder-Harsha-2805", - "url": "https://github.com/Coder-Harsha-2805", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/437"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178094088?u=0f98921201eea10e567fd0d2e96654216dfe537d&v=4", - "login": "Harsha-01-cmd", - "url": "https://github.com/Harsha-01-cmd", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/436"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123854877?u=aa1aa89707aff5f28d5c43c90c21cafe1909fa92&v=4", - "login": "KrishKoria", - "url": "https://github.com/KrishKoria", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/434"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143607775?u=9ebc8a1eed388772d65d108224944be8f49929b2&v=4", - "login": "vanshchauhan21", - "url": "https://github.com/vanshchauhan21", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/431"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146093068?u=bf00b9e6c1832d4ffbc9c163acd52fc08e3031ad&v=4", - "login": "AnjanaS2004", - "url": "https://github.com/AnjanaS2004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/426"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/84701974?u=bbcf044845319a4beb45e8308bc7bb57368187ec&v=4", - "login": "Dcoder10M", - "url": "https://github.com/Dcoder10M", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/423"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96661387?u=ba6e0acf7d6237c118ec5649b8b21da93c960061&v=4", - "login": "tusharshah21", - "url": "https://github.com/tusharshah21", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/412"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150959892?u=6e1385d3b54fd03def7af771e2f7d1a0b4ef7485&v=4", - "login": "hemanvithapullela0456", - "url": "https://github.com/hemanvithapullela0456", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/408"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169867468?v=4", - "login": "priyanshu778", - "url": "https://github.com/priyanshu778", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/405"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/66823543?v=4", - "login": "Adithyasharma1162", - "url": "https://github.com/Adithyasharma1162", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/402"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90121562?u=29bc4af6ae7df19044e9388b822e339bfd22750a&v=4", - "login": "ayushtiwari18", - "url": "https://github.com/ayushtiwari18", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/400"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134909917?u=d505262f13170348efd7d281a78bea5b3ab4d0fa&v=4", - "login": "LavishaMhjn1910", - "url": "https://github.com/LavishaMhjn1910", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/395"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86881892?u=2af1554e1c0775e474fdf83d41efd16665820ac0&v=4", - "login": "Sadman95", - "url": "https://github.com/Sadman95", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/394"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171663750?v=4", - "login": "kumar1035", - "url": "https://github.com/kumar1035", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/390"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95847089?u=4f83abd151424276b0e67df1d3cbcf688195f943&v=4", - "login": "Vivek-C365", - "url": "https://github.com/Vivek-C365", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/389"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121222365?u=6d6063f8de486328923e7ae2a5ff09892b227bd0&v=4", - "login": "ritumehta302002", - "url": "https://github.com/ritumehta302002", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/387"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148971810?u=8fc2d895862c2099fe0a5777045a2f76056c2bde&v=4", - "login": "cypher4802", - "url": "https://github.com/cypher4802", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/383"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178601619?v=4", - "login": "jaya005", - "url": "https://github.com/jaya005", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/378"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/167967116?u=4e6a82b31b3ade5d1e69d3c5f61bd58842e119cc&v=4", - "login": "ANJI1026", - "url": "https://github.com/ANJI1026", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/371"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153157112?v=4", - "login": "n14rishitha", - "url": "https://github.com/n14rishitha", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/370"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170749605?u=4ebea735d7af4f7e1af6c95f3d18ed4116c1c877&v=4", - "login": "gangadharbhavi-7", - "url": "https://github.com/gangadharbhavi-7", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/368"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168915880?u=ffe534c8083523c6860672a89d0eddc8a07922a6&v=4", - "login": "dhruvsinha3130", - "url": "https://github.com/dhruvsinha3130", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/367"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174233775?u=5fc7c948ea88d8e1d54a2a5031510a47e1619a1f&v=4", - "login": "khushi5824", - "url": "https://github.com/khushi5824", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/360"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86292141?u=abef7ca630fa30b88c64b6ae5a5794bc3a1aafb2&v=4", - "login": "arvinder004", - "url": "https://github.com/arvinder004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/357"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142435507?u=58a82b887f6c95ca8c867056b05c7d9aafd43bee&v=4", - "login": "Axestein", - "url": "https://github.com/Axestein", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/356"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67856422?u=022ceb934e7649c9de8fc6be7cedf5a3e19595af&v=4", - "login": "adi271001", - "url": "https://github.com/adi271001", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/354"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134550133?u=b30ba93060a097eb17907545865f5fd38d4c86f8&v=4", - "login": "Akashrrrrd", - "url": "https://github.com/Akashrrrrd", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/353"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122424766?u=61be0d071076822024d21123d434819625ae7cd1&v=4", - "login": "shashankch2003", - "url": "https://github.com/shashankch2003", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/352"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174234665?u=b83ed622ef11e453d9960acf765665e7130cbd67&v=4", - "login": "DivyaN10", - "url": "https://github.com/DivyaN10", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/351"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/185698455?v=4", - "login": "22Rupesh", - "url": "https://github.com/22Rupesh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/349"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147256003?u=295559db959bd2390d858ec60ef1c051e7dae995&v=4", - "login": "aryanbarde80", - "url": "https://github.com/aryanbarde80", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/345"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67123991?u=7196b01d348e466a099f317470250e3a018e01d3&v=4", - "login": "suryapratapsinghsuryavanshi", - "url": "https://github.com/suryapratapsinghsuryavanshi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/338"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/134628559?u=db26c0a6d8e770a247d2215826f782d44a880554&v=4", - "login": "paras-verma7454", - "url": "https://github.com/paras-verma7454", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/337"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114808383?u=056718f04ddc1348583ceffd84bcdd8552a4209c&v=4", - "login": "0xkrishu", - "url": "https://github.com/0xkrishu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/335"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178994598?u=72fe802e31159d12e7b5c5135850a1dca454d341&v=4", - "login": "khushiii-6510", - "url": "https://github.com/khushiii-6510", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/334"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123585104?u=a7361fb2807c3dd02c68a53b6533408bfa956afc&v=4", - "login": "deepesh611", - "url": "https://github.com/deepesh611", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/331"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131229641?v=4", - "login": "HetuKariya", - "url": "https://github.com/HetuKariya", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/329"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142661926?u=c7d420c5f40e5d77d9f68fbf24652c381dc17ba4&v=4", - "login": "Ayushgautam16", - "url": "https://github.com/Ayushgautam16", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/326"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87806305?u=cb97e41294b1dbc1eef56b4da90317a3f6dc5787&v=4", - "login": "shubhanshurav", - "url": "https://github.com/shubhanshurav", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/325"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131584949?u=95605cf288fe81cc3dc4e58c960834a74fdf7746&v=4", - "login": "LazyCodwr", - "url": "https://github.com/LazyCodwr", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/320"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120514593?u=122c2256c5de91eef80fe20485d6cab505304614&v=4", - "login": "PIYUSH1525", - "url": "https://github.com/PIYUSH1525", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/305"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140420819?u=97c599fa27eae561da5b0a32497eb7305518f53b&v=4", - "login": "MonishRaman", - "url": "https://github.com/MonishRaman", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/299"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145198759?u=93d78899707a5dea461c7bac49c39667ebeb942b&v=4", - "login": "suryapratap04", - "url": "https://github.com/suryapratap04", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/290"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121077624?u=d13bc2da9feda02bca59b73bc877db415dc4dbfb&v=4", - "login": "Shrutakeerti", - "url": "https://github.com/Shrutakeerti", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/280"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100588960?u=7dcb499ca2e550bb9449acf7111dfb50a1d95a27&v=4", - "login": "Harshavardhan2k3", - "url": "https://github.com/Harshavardhan2k3", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/275"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/46113798?u=621c5de49b574623d7c5649cb960985131415708&v=4", - "login": "vcerpasalas", - "url": "https://github.com/vcerpasalas", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/345" - ], - "pr_dates": ["2024-11-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136430203?u=23024161edc6ae977905b5802c746999301f3f1b&v=4", - "login": "tanishraj7", - "url": "https://github.com/tanishraj7", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/314" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/174927328?u=20f298288c2203ae3132af11a38cacf5333a5401&v=4", - "login": "Abdus-8747", - "url": "https://github.com/Abdus-8747", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/261" - ], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170329509?u=d7b219061a4ad8ca8c7e820b49e260712c09d422&v=4", - "login": "anish013326", - "url": "https://github.com/anish013326", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/aslams2020/Stark-Tech-Portfolio/pull/137", - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1070" - ], - "pr_dates": ["2024-10-04", "2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121922047?v=4", - "login": "Harsh-KumarJha", - "url": "https://github.com/Harsh-KumarJha", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/aswathcm29/JournalForge/pull/153"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161583299?u=126d74ececd82d2477405ecd42f1ba98b572a874&v=4", - "login": "Sanchita76", - "url": "https://github.com/Sanchita76", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/494" - ], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155301429?v=4", - "login": "Herostomo", - "url": "https://github.com/Herostomo", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/suryanshsk/Python-Voice-Assistant-Suryanshsk/pull/24" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150833893?v=4", - "login": "saatvika07", - "url": "https://github.com/saatvika07", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/2099"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100283614?u=f1125cfa1f8ca420d5e3a7b96a35e58c95c9370b&v=4", - "login": "palak-k5", - "url": "https://github.com/palak-k5", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1227"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157607574?v=4", - "login": "PunithaNarasegowda", - "url": "https://github.com/PunithaNarasegowda", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ayush-that/FinVeda/pull/1226"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137555891?u=4496c3041867da2a91a2dabd530c8018b962fa2a&v=4", - "login": "shahanxd", - "url": "https://github.com/shahanxd", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/1024"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115853816?u=0f025537a0b4dc86a611280cf27c473743260d13&v=4", - "login": "ShobhitPatra", - "url": "https://github.com/ShobhitPatra", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/152"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120441879?v=4", - "login": "TanishqMehrunkarIIPSDAVV", - "url": "https://github.com/TanishqMehrunkarIIPSDAVV", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mdazfar2/Ezyshop/pull/89"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122990856?u=39d15325f33c695f5c358599171bdbbbba343a28&v=4", - "login": "Aastik-Mehta-22", - "url": "https://github.com/Aastik-Mehta-22", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/BamaCharanChhandogi/GitFinder/pull/91"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122001232?u=451e9dab1a73cfced2389e4e8374a5f4160f6f47&v=4", - "login": "iamkaniska", - "url": "https://github.com/iamkaniska", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/BamaCharanChhandogi/GitFinder/pull/59"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142259578?v=4", - "login": "Reboot2004", - "url": "https://github.com/Reboot2004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Bhanu-code/OpenLMS/pull/20"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/22557416?u=57325b758243a3ff05141e55a4861d11564aa140&v=4", - "login": "wasif1", - "url": "https://github.com/wasif1", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Devanik21/ISRO_Mining_Site_FINAL_APP/pull/67" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154619074?u=9604428083bb76f03acc84120510acc74e163148&v=4", - "login": "Subhadeep-khawas", - "url": "https://github.com/Subhadeep-khawas", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/998" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125853343?u=54c931ccd001a36dce6741a579cbf5cb0ce41691&v=4", - "login": "Ravi10300", - "url": "https://github.com/Ravi10300", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/893" - ], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143247923?u=3dc1d2f7d56de753ee66ec22c22c533bc9a14982&v=4", - "login": "shruti9935", - "url": "https://github.com/shruti9935", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/714" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116622186?u=1ea927ae3962edf1571a4af499d74fb1fb430ee1&v=4", - "login": "Yash-Jadaun", - "url": "https://github.com/Yash-Jadaun", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/637" - ], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116817312?u=c271333ef0ea0667c3df86638c64444049d06275&v=4", - "login": "Khatwangadhareddy", - "url": "https://github.com/Khatwangadhareddy", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/433" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118557081?u=784f6cf404565a4c7bf20e237f7e6e4c6e7c79d5&v=4", - "login": "Abhishek123a45", - "url": "https://github.com/Abhishek123a45", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/350" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121346843?v=4", - "login": "vararaghu002", - "url": "https://github.com/vararaghu002", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/153" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145531852?u=07606e867601c643fe13912cedbae2c67522d179&v=4", - "login": "Arushi-N4", - "url": "https://github.com/Arushi-N4", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/92" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177671370?u=01e988d7e31eef66ab0d93c14b9404e4f0a83c58&v=4", - "login": "mrvishalsharma01", - "url": "https://github.com/mrvishalsharma01", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/DharshiBalasubramaniyam/ice-cream-parlour-website/pull/32" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93508573?v=4", - "login": "Dnyaneshpise", - "url": "https://github.com/Dnyaneshpise", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/my-calendar-app/pull/67"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118920744?u=918f2d726c977ae895b10e42dfc5e19717bafdb3&v=4", - "login": "weshaan", - "url": "https://github.com/weshaan", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/my-calendar-app/pull/24"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139986354?u=287426d2426cfcb525d670c78764a150bc9103c0&v=4", - "login": "fahadshahbaz", - "url": "https://github.com/fahadshahbaz", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/divyansh-2005/GAME_PLAYER/pull/162"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139050957?v=4", - "login": "sakshikedari", - "url": "https://github.com/sakshikedari", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/472"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93509285?u=3202c4a880eb0aa2e090da56e4f9ccc85cb69683&v=4", - "login": "varun1982000", - "url": "https://github.com/varun1982000", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/193"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91461422?u=aff70a4cfe4a3a7d4d766efa8f2ad4d266843f4c&v=4", - "login": "prashikk", - "url": "https://github.com/prashikk", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/127"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/182407031?u=9d5b6a922a33abd204e6dfc562781d500fc5c66b&v=4", - "login": "hkcodings", - "url": "https://github.com/hkcodings", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/81"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152801415?v=4", - "login": "Shreya-0510", - "url": "https://github.com/Shreya-0510", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/62"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147652780?v=4", - "login": "sandy-queen", - "url": "https://github.com/sandy-queen", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dohinaf/basic-icecream-website/pull/31"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157585201?u=4eb21f1df98d2d18141f6ce8485bf5b1d36653b4&v=4", - "login": "tejamajji", - "url": "https://github.com/tejamajji", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/WasteManagment/pull/232"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126412402?u=ba838f0ea460be5aa5dccee26ea9cc7fc6c924e8&v=4", - "login": "albinsabu2023", - "url": "https://github.com/albinsabu2023", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/WasteManagment/pull/98"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142731001?u=5defaba5ef42af0ac064ccbc77fdfaadb3624e39&v=4", - "login": "Rajankit26", - "url": "https://github.com/Rajankit26", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/WasteManagment/pull/48"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/90374311?u=71a5e3e072f29be0cf2c7e96b1ccb2d1516cc521&v=4", - "login": "YOGINIMAHIMA1", - "url": "https://github.com/YOGINIMAHIMA1", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/GarimaSingh0109/Resum-Resume/pull/276", - "https://github.com/GarimaSingh0109/Resum-Resume/pull/135" - ], - "pr_dates": ["2024-10-02", "2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160752133?v=4", - "login": "CoolCoder431", - "url": "https://github.com/CoolCoder431", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/182"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146614774?v=4", - "login": "Prarthana-35", - "url": "https://github.com/Prarthana-35", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/94"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143313500?v=4", - "login": "akshayks13", - "url": "https://github.com/akshayks13", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/93"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175637290?u=d40d639a5856f5db26e4e1fb0e58847ab69cf9bf&v=4", - "login": "NISHAKUSHWAHA23", - "url": "https://github.com/NISHAKUSHWAHA23", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/51"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/82286144?u=7898e0631b43e2a78a4986f242843fcf978f8675&v=4", - "login": "Hope-Alemayehu", - "url": "https://github.com/Hope-Alemayehu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GarimaSingh0109/Resum-Resume/pull/39"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101010210?v=4", - "login": "kuhupatel15", - "url": "https://github.com/kuhupatel15", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/527" - ], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121231756?v=4", - "login": "shrutisk0405", - "url": "https://github.com/shrutisk0405", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/469" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72082692?u=f85f2fa10ee90533deff45a4fbce1935a486f0ad&v=4", - "login": "aman5062", - "url": "https://github.com/aman5062", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/431" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149645550?u=21e2e459f51422e5fd31d542cce3f18ebc0e5230&v=4", - "login": "KharjulSneha", - "url": "https://github.com/KharjulSneha", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/gauravsingh1281/Rentalog.in--Frontend/pull/259" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145888723?v=4", - "login": "Ishitagu", - "url": "https://github.com/Ishitagu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/OpenTekHub/blockchain/pull/32"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123193995?u=fea62c8d7c07aa922e48afa7fd2bef10ebef3685&v=4", - "login": "ADeshmukh80", - "url": "https://github.com/ADeshmukh80", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Harshdev098/Research-Nexas/pull/20"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/136992316?u=0d6a9c92c7c2a5fbe5d897ab3d8cea4e502bab26&v=4", - "login": "Nbisht1208", - "url": "https://github.com/Nbisht1208", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Bitbox-Connect/Bitbox/pull/181"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69723150?u=c8a893edd7c6c525f76c6dde159bfbfd4baaf5e4&v=4", - "login": "samalsubrat", - "url": "https://github.com/samalsubrat", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Bitbox-Connect/Bitbox/pull/13"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88272981?u=e5ba35eb0c14464d998e3b8f1dcd32a988109207&v=4", - "login": "RebellionR2", - "url": "https://github.com/RebellionR2", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/prajapatihet/donorconnect/pull/40"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135267184?u=486f7523246b52bcb175b9c3c5b661cb7c57d0f7&v=4", - "login": "XIVASSS", - "url": "https://github.com/XIVASSS", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/himeshparashar/Social-Morph/pull/147"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118190749?u=c8a52483e1f33afeb022d24196f21d2fd441a285&v=4", - "login": "viveksarkar0", - "url": "https://github.com/viveksarkar0", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/himeshparashar/Social-Morph/pull/33"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142788077?u=b2231c899b18854cf56b1dc9b2c85cbb8f59f9eb&v=4", - "login": "powerstone666", - "url": "https://github.com/powerstone666", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jahnvisahni31/DesignDeck/pull/199"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171167003?u=6b7556a1517c387aac3e2e5e9aeeaa9e27843c3d&v=4", - "login": "ashu273k", - "url": "https://github.com/ashu273k", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jahnvisahni31/DesignDeck/pull/82"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92371562?u=123023f62898bd2f45a0eea527adb993341ef3c3&v=4", - "login": "Peddinti-Sriram-Bharadwaj", - "url": "https://github.com/Peddinti-Sriram-Bharadwaj", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/jahnvisahni31/DesignDeck/pull/35"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157748073?v=4", - "login": "ris-gzp", - "url": "https://github.com/ris-gzp", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/126" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177807502?u=e8e8dcaabd60e8f4a0966cb233a9b46fc92436f2&v=4", - "login": "mohit-1710", - "url": "https://github.com/mohit-1710", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/84" - ], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65100859?u=b123608dcf11af3da23c397483de3a345e55b162&v=4", - "login": "mohitahlawat2001", - "url": "https://github.com/mohitahlawat2001", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/74" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/78777405?u=9fffab03d2d21d578ad6a9f06b03e32f14eb3e05&v=4", - "login": "zadescoxp", - "url": "https://github.com/zadescoxp", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/45" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110662505?u=ba127dfdd0d22717dceef3046589ffc1679bd1af&v=4", - "login": "Bashamega", - "url": "https://github.com/Bashamega", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Jaishree2310/GlassyUI-Components/pull/16" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/67757350?v=4", - "login": "mwango-phoenix", - "url": "https://github.com/mwango-phoenix", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Open-Code-Crafters/FitFlex/pull/358"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128130770?u=69a4a0c14cbcda043747c7e3c36d897a1c5504fa&v=4", - "login": "harshucoder", - "url": "https://github.com/harshucoder", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Open-Code-Crafters/FitFlex/pull/197"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132045692?v=4", - "login": "mansaa15", - "url": "https://github.com/mansaa15", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Jiggy9/JCT/pull/4"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71320858?u=034e55addf4331ed6fcfc7405344aa0a6bbf575f&v=4", - "login": "Tanish2207", - "url": "https://github.com/Tanish2207", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/687"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114850405?v=4", - "login": "prateek-1803", - "url": "https://github.com/prateek-1803", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/611"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114012057?v=4", - "login": "RacharlaSanjana", - "url": "https://github.com/RacharlaSanjana", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/609"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/154019744?u=c63e4cad1de61294c9243dba12b99d3bcacdad96&v=4", - "login": "PrasannaKasar", - "url": "https://github.com/PrasannaKasar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/570"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94423797?u=22a0c7d1cdf6ef8031190b09c0e39100d18ed18d&v=4", - "login": "vishnumur777", - "url": "https://github.com/vishnumur777", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/445"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140151589?u=b9e26b58dabbdfc33e521f5c3ddc8f0b25515846&v=4", - "login": "DebanKsahu", - "url": "https://github.com/DebanKsahu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/271"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144516349?u=bfd3579163dfb7b7b4f97935b3a638210873b7ec&v=4", - "login": "Ultimecia1463", - "url": "https://github.com/Ultimecia1463", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/127"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/65722202?u=db7f3d8fff880e7eec74fe16685da6cfa564ef0e&v=4", - "login": "ReaganBlade", - "url": "https://github.com/ReaganBlade", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/125"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92315316?u=f6ebcb1b67cd792f1cb4b1138d47086b386334c2&v=4", - "login": "ohmschrodinger", - "url": "https://github.com/ohmschrodinger", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Kota-Karthik/twinTrim/pull/41"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115333492?u=f53563ee40bd56ba557b48cf2d9d71fdfe6012df&v=4", - "login": "shubhamkumaar", - "url": "https://github.com/shubhamkumaar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1482" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145484692?u=66843d26d1194f30d8e10ac58219663e90a698ab&v=4", - "login": "Manshu555", - "url": "https://github.com/Manshu555", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/312"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97521394?u=7daac397319065ca9604f2ec8dfd908e512564c5&v=4", - "login": "its-kumar-yash", - "url": "https://github.com/its-kumar-yash", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/152"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150716736?u=a6017ad3aa933a672b02403511141613a4d685fd&v=4", - "login": "Speedysays01", - "url": "https://github.com/Speedysays01", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/132"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113420376?u=2bb054d84cb78466ca11f8bbdf993e36f9d5fbdc&v=4", - "login": "ShreyasNandanwar", - "url": "https://github.com/ShreyasNandanwar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Luson045/medi-connect/pull/123"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76835656?u=94331ae6b35282e404da5f27ebfa5c309dbb09e5&v=4", - "login": "MarvelMathesh", - "url": "https://github.com/MarvelMathesh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/manikumarreddyu/AgroTech-AI/pull/735"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/70902715?v=4", - "login": "azhar47-sk", - "url": "https://github.com/azhar47-sk", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/manikumarreddyu/AgroTech-AI/pull/530"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100071948?u=40ce46da49491f2b2db77d5c78e07af9f2e645bd&v=4", - "login": "HarshAgrawal1", - "url": "https://github.com/HarshAgrawal1", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/maniyaom/Movie-Ticket-Booking/pull/88"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170181061?v=4", - "login": "tronbeing3030", - "url": "https://github.com/tronbeing3030", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/1079"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124448340?u=987ab37f08fe57ebbd1b1d7888a598b3020b5b6e&v=4", - "login": "Diya050", - "url": "https://github.com/Diya050", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/1010"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144168135?u=8e8dc2632fa30182738bad6ceceb8e5241127864&v=4", - "login": "Saransh-Jainbu", - "url": "https://github.com/Saransh-Jainbu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/772"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123955635?u=4e6825d5f93a148bc2f6819f5ef55d7d122e1b7f&v=4", - "login": "LovkashGarg", - "url": "https://github.com/LovkashGarg", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/558"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115582239?v=4", - "login": "Sejalitgithub", - "url": "https://github.com/Sejalitgithub", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/449"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144001574?v=4", - "login": "Coder-Bhoomi", - "url": "https://github.com/Coder-Bhoomi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/290"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149262356?v=4", - "login": "Mahesh2k5", - "url": "https://github.com/Mahesh2k5", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/mansiruhil13/Bobble-AI/pull/59"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111191673?u=800ddf305e67da709f5729fd738a61f5699d1683&v=4", - "login": "TejasSaraf", - "url": "https://github.com/TejasSaraf", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/507" - ], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123671335?u=a2193fbb65e2b7f6df6b7c9c69e2a0da98e56aba&v=4", - "login": "Sandigupta", - "url": "https://github.com/Sandigupta", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/sakeel-103/DFS-BFS-Graph-Travers/pull/347" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71369187?u=26e4467a211cd08b2d27d4df02dd9659b43f261f&v=4", - "login": "5odead", - "url": "https://github.com/5odead", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/87"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/93936040?v=4", - "login": "navanish07", - "url": "https://github.com/navanish07", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/44"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89538727?v=4", - "login": "Emilio-PdeA", - "url": "https://github.com/Emilio-PdeA", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/35"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107264491?u=14aa85147cc6b477977da85270afdf535848abd3&v=4", - "login": "HackesticMedusa", - "url": "https://github.com/HackesticMedusa", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/16"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/53267275?u=7144d78edefcf1d285ec0030a79ab969d96d3af3&v=4", - "login": "tharun634", - "url": "https://github.com/tharun634", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/15"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123159823?u=3ebfd7375dee9e2fca0a46c7aea1b3aeeed159eb&v=4", - "login": "linga-007", - "url": "https://github.com/linga-007", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TherkuTech/tturl/pull/26"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121181515?u=26ba4db530616baac7d4ad78493d46587a0d9aed&v=4", - "login": "bhushankhopkarr", - "url": "https://github.com/bhushankhopkarr", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ombhojane/explainableai/pull/62"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168462932?u=7e076b02582e08a3c8d7d4c14e6fd0324b9969f1&v=4", - "login": "Diya-Saha2005", - "url": "https://github.com/Diya-Saha2005", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/513"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129084275?u=4ec63728e9296110ea812c33bf5cd79a7d22e338&v=4", - "login": "yeolesanskruti", - "url": "https://github.com/yeolesanskruti", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/332"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129003839?v=4", - "login": "Kcode15", - "url": "https://github.com/Kcode15", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/202"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/170041361?v=4", - "login": "sumitrajput96", - "url": "https://github.com/sumitrajput96", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/54"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166815645?v=4", - "login": "DPS-2912", - "url": "https://github.com/DPS-2912", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1523"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113857131?v=4", - "login": "Arushi2S", - "url": "https://github.com/Arushi2S", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1464"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/100501442?u=8c742bc46eb3909639ff2bbaf0b9343dc3b67afa&v=4", - "login": "o0PHOENIX0o", - "url": "https://github.com/o0PHOENIX0o", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1444"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149078715?u=5cf05e4b847cd56e77e4d6dd3b651acce138a4a2&v=4", - "login": "AshmitaBarthwal", - "url": "https://github.com/AshmitaBarthwal", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1415"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146342355?u=ab2cbc101117057df31ea802de6a1892135c7777&v=4", - "login": "o-CodeBlitz-o", - "url": "https://github.com/o-CodeBlitz-o", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1382"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145670267?u=055ec795a2c77748225bea01e1cec80ce7e89c83&v=4", - "login": "vivek-anand-singh", - "url": "https://github.com/vivek-anand-singh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1374"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97141637?u=4e922a6d0322bfa268c352e3469da5146d01df9b&v=4", - "login": "Fahad-Ali-Khan-ca", - "url": "https://github.com/Fahad-Ali-Khan-ca", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1294"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175041634?v=4", - "login": "Nandinipatil1410", - "url": "https://github.com/Nandinipatil1410", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1138"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157797914?v=4", - "login": "PranavKndpl", - "url": "https://github.com/PranavKndpl", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/1041"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171688660?v=4", - "login": "ifykykk", - "url": "https://github.com/ifykykk", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/887"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139668262?u=d3d058c743f35df2a12886531cbcb3ce61a2c598&v=4", - "login": "JalinaH", - "url": "https://github.com/JalinaH", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/765"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162747088?v=4", - "login": "heyooJatinHere", - "url": "https://github.com/heyooJatinHere", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/595"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173140170?v=4", - "login": "tanya-soni-git", - "url": "https://github.com/tanya-soni-git", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlgoGenesis/C/pull/68"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118202204?u=a1bca0b8922d6dd9f68ad74ac27f3bf26bb53de4&v=4", - "login": "antan2002", - "url": "https://github.com/antan2002", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/310"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/181655584?v=4", - "login": "aparna-44", - "url": "https://github.com/aparna-44", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/164"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/8216064?u=268ad23426c0689b69ec8f0ebd4f74f7f3e94d06&v=4", - "login": "shinshin86", - "url": "https://github.com/shinshin86", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/135"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110538140?u=512315a835a7f27de89a356b8919693e384cc7a0&v=4", - "login": "shreya5xiii", - "url": "https://github.com/shreya5xiii", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/126"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145497143?v=4", - "login": "RiyaBhurse", - "url": "https://github.com/RiyaBhurse", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/52"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128740098?u=13d180f142b9c4d3ebb8faadab57f4aa33140589&v=4", - "login": "ArthKulkarni93", - "url": "https://github.com/ArthKulkarni93", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/51"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/122967579?u=f09118e719bc0d835999fd18d831d1c9213c620a&v=4", - "login": "Abhiraj-Sardar", - "url": "https://github.com/Abhiraj-Sardar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/param-code/counter-app/pull/18"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147172178?v=4", - "login": "Chinmayee-cd", - "url": "https://github.com/Chinmayee-cd", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/iamparas0/TIC-TAC-TOE/pull/354"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/133391810?v=4", - "login": "Divija-Arora", - "url": "https://github.com/Divija-Arora", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/andoriyaprashant/DevDocsHub/pull/118"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115364171?u=e15d5a51bc78cf0244ea21933d5ef9f625ac0dca&v=4", - "login": "shashank-lol", - "url": "https://github.com/shashank-lol", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/andoriyaprashant/OpSo/pull/337"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120504075?u=867389d730a59152b7b25ef0b85fbd287319a485&v=4", - "login": "akhilreddy20", - "url": "https://github.com/akhilreddy20", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1235"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177270961?u=c50ffb7c1d99ff8fe8688feb2c2f557fb47d5a27&v=4", - "login": "RitoG09", - "url": "https://github.com/RitoG09", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/1040"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157899302?u=c78fa1c240d6375994a1ec022fbf817378624281&v=4", - "login": "Abhi-Jeeet", - "url": "https://github.com/Abhi-Jeeet", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/743"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71066133?v=4", - "login": "Mayanksaininh", - "url": "https://github.com/Mayanksaininh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/625"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104563340?v=4", - "login": "poojitha-ch", - "url": "https://github.com/poojitha-ch", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/595"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118966111?u=c2d0fa4f810cdc599f9ebc2364e3d46f02e2a1fa&v=4", - "login": "tusharmishra069", - "url": "https://github.com/tusharmishra069", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/430"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/63530396?u=9d254559e6b92cebd13ca5bd1786639c404e5202&v=4", - "login": "hgjajoo", - "url": "https://github.com/hgjajoo", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/46"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/180682290?v=4", - "login": "Sakshi-maulekhi", - "url": "https://github.com/Sakshi-maulekhi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1982" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/53142663?u=80601c1751047d2173cad960849709add2a189fe&v=4", - "login": "tt-a1i", - "url": "https://github.com/tt-a1i", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1973" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/179595174?v=4", - "login": "vridhichaudhary", - "url": "https://github.com/vridhichaudhary", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1928" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131389695?u=86229c59df9e7a80f1bfba4f34b98f244eb7a8fe&v=4", - "login": "aslams2020", - "url": "https://github.com/aslams2020", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1926" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/171149025?v=4", - "login": "vyom10445", - "url": "https://github.com/vyom10445", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1918" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/75066787?u=b5fcc38fb3e3dc0eaf878a4c6023f4fe8ab6b980&v=4", - "login": "mahmoud-the-dev", - "url": "https://github.com/mahmoud-the-dev", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1906" - ], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152770154?u=a2ed531e8ba445b4633818d88c76cf0b69386b96&v=4", - "login": "singh04ayush", - "url": "https://github.com/singh04ayush", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1599" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183830645?v=4", - "login": "lucifer-990", - "url": "https://github.com/lucifer-990", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1440" - ], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/178467140?u=17c529d88eadc63375cd6f39467e5e75f3a3619b&v=4", - "login": "infrunamilacym", - "url": "https://github.com/infrunamilacym", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1383" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166705490?u=9861b7d2217d4c4a566178cb7ba0d3b64b30c271&v=4", - "login": "TyagiManshi", - "url": "https://github.com/TyagiManshi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1362" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131008871?u=501594aa622383649c3d79221a2b7144b5d523ef&v=4", - "login": "istanujbhatia", - "url": "https://github.com/istanujbhatia", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1151" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/106423643?u=210c9c02749c8e3edb305685fffca3ce49897cf0&v=4", - "login": "aLok-1105", - "url": "https://github.com/aLok-1105", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1127" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143738719?v=4", - "login": "Dharmadhaashan", - "url": "https://github.com/Dharmadhaashan", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1064" - ], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143307031?u=dddebe5bb80c8240ce220076168cbd0e5cf6410b&v=4", - "login": "nikil107", - "url": "https://github.com/nikil107", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/971" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151141634?v=4", - "login": "HarshVardhanSalve", - "url": "https://github.com/HarshVardhanSalve", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/963" - ], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132436213?u=3ecc7c12b58c5cd4279fca06162eba40511ab6a3&v=4", - "login": "Ashishkr8802", - "url": "https://github.com/Ashishkr8802", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/429", - "https://github.com/Vin205/Enyanjyoti/pull/192" - ], - "pr_dates": ["2024-10-05", "2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143805969?u=43021a61ed1a028e8673f81b2ccafd1de2d1d760&v=4", - "login": "anmol2710", - "url": "https://github.com/anmol2710", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/373" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81546732?u=6b12f10e53bfe62c0b9754f757a4de2a6d5e8647&v=4", - "login": "rudalkunwar", - "url": "https://github.com/rudalkunwar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/224" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119912892?u=9267c8ae87b8c5382c40f2821525b9186a0acde5&v=4", - "login": "Virtual4087", - "url": "https://github.com/Virtual4087", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/rahulsainlll/git-trace/pull/74"], - "pr_dates": ["2024-10-10"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128502434?u=c4a114a428eb9d51b8ebbc33ab97fac5b3bc8b72&v=4", - "login": "DanonymousCoder", - "url": "https://github.com/DanonymousCoder", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/rahulsainlll/git-trace/pull/44"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69050786?u=d40f498f9dac2f15c9c9fd1b61e78a3eb323661b&v=4", - "login": "Utkarshrajmishra", - "url": "https://github.com/Utkarshrajmishra", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/rahulsainlll/git-trace/pull/22"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/126854907?u=6ce374b75c43ea6a2615394b927c0b4e244620cb&v=4", - "login": "Abhijais4896", - "url": "https://github.com/Abhijais4896", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/beRajeevKumar/Frontend_Mentor/pull/462"], - "pr_dates": ["2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115181046?v=4", - "login": "Prashant1659", - "url": "https://github.com/Prashant1659", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/beRajeevKumar/Frontend_Mentor/pull/70"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132265077?u=dea4e49c00d8ed43a60b0dbd531e4d3017288144&v=4", - "login": "kenzo0p", - "url": "https://github.com/kenzo0p", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/beRajeevKumar/Frontend_Mentor/pull/39"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/91375618?u=985084e3d6a4058a006dbcc5f771f01c67b21f6c&v=4", - "login": "Picodes10", - "url": "https://github.com/Picodes10", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/RamakrushnaBiswal/PlayCafe/pull/279"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119295880?u=344e04922bc95aaf9d95ca77e8f0cf858efea6ad&v=4", - "login": "Syed-Farazuddin", - "url": "https://github.com/Syed-Farazuddin", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/RamakrushnaBiswal/PlayCafe/pull/24"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143304270?v=4", - "login": "ItsVermaAbhi", - "url": "https://github.com/ItsVermaAbhi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Ratnesh-Team/Rehabify/pull/152"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111886713?u=c93030c04d6f7ec186a92f2766e34833be90e75a&v=4", - "login": "Akkash20", - "url": "https://github.com/Akkash20", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Ratnesh-Team/Rehabify/pull/144"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166855006?u=dc849d94ed4a381a0e9b8c7d3b08db2c058e92ac&v=4", - "login": "Priyanshu1035", - "url": "https://github.com/Priyanshu1035", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Ratnesh-Team/Rehabify/pull/118", - "https://github.com/saurabhbakolia/SCROLLME--ECOMMERCE-WEBSITE/pull/239" - ], - "pr_dates": ["2024-10-19", "2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112693309?v=4", - "login": "SKADE2303", - "url": "https://github.com/SKADE2303", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/samyakmaitre/eventmint/pull/329"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175469308?v=4", - "login": "gaurkrutika", - "url": "https://github.com/gaurkrutika", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/samyakmaitre/eventmint/pull/179"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141308148?u=7cceeda7d31d0705b874d201abc017d765aa3fff&v=4", - "login": "oathar", - "url": "https://github.com/oathar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1077" - ], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/121057440?u=69620a3436b698d04eb3b17c3dcf5ab7a502f17e&v=4", - "login": "lakshyeahh", - "url": "https://github.com/lakshyeahh", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/1008" - ], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/177642790?v=4", - "login": "devalcodes", - "url": "https://github.com/devalcodes", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/awesome-github-profiles/pull/678" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144401545?v=4", - "login": "Varshitha006", - "url": "https://github.com/Varshitha006", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/recodehive/Stackoverflow-Analysis/pull/387" - ], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/97041656?u=48902073b24ac6bb2b9db42b0e9a7be985cd47ce&v=4", - "login": "TilteD24", - "url": "https://github.com/TilteD24", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/recodehive/Scrape-ML/pull/272"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/83160743?u=88d06ed1a8b708b2528442657a5019a9a61cb01e&v=4", - "login": "KRITHIYA", - "url": "https://github.com/KRITHIYA", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/subhadipbhowmik/bio-branch/pull/205"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148709327?u=433b469f7508be2f76df2674f1c6c01fb279b432&v=4", - "login": "RajaXSharma", - "url": "https://github.com/RajaXSharma", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/subhadipbhowmik/bio-branch/pull/123"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/157243998?u=90276042ea9b4026a1af890dc0d2e0054be867d2&v=4", - "login": "subrataCS", - "url": "https://github.com/subrataCS", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/subhadipbhowmik/bio-branch/pull/113"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/163244136?v=4", - "login": "AngadSudan", - "url": "https://github.com/AngadSudan", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/subhadipbhowmik/bio-branch/pull/32"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/74107137?u=decd696a9557008625494e9bab6865248a50c9b2&v=4", - "login": "mayur1377", - "url": "https://github.com/mayur1377", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/daccotta-org/daccotta/pull/237"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118051886?u=53b38390e42d0f5a7b9f12ab55c6c4c913c0fdd9&v=4", - "login": "mukulkundu", - "url": "https://github.com/mukulkundu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/daccotta-org/daccotta/pull/178"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160389377?v=4", - "login": "ShivaniSaini123", - "url": "https://github.com/ShivaniSaini123", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/soham0005/ElectroKart/pull/169"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/69566729?u=7d178a14c9a9b8f17863083151da2b2a9d73f3b4&v=4", - "login": "amir-mansoor", - "url": "https://github.com/amir-mansoor", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/soham0005/ElectroKart/pull/150"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/156570582?u=412a7033b5655a7e95289cabbde31f34db4ac3b0&v=4", - "login": "ambrishgoswami", - "url": "https://github.com/ambrishgoswami", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Soujanya2004/wanderlust-2024/pull/203"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143264429?v=4", - "login": "Asjdnnc", - "url": "https://github.com/Asjdnnc", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Soujanya2004/wanderlust-2024/pull/72"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/53135128?u=25827c090253ca259f8540939a4ab4ac5cad23e9&v=4", - "login": "rakeshkushwaha332", - "url": "https://github.com/rakeshkushwaha332", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/07sumit1002/CabRental/pull/223"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138333395?u=85fbdaf18b2154f87af0aa09369ba465e5ce0380&v=4", - "login": "AnshDwivedi03", - "url": "https://github.com/AnshDwivedi03", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/07sumit1002/CabRental/pull/182"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/169339385?v=4", - "login": "Nidhibansalll", - "url": "https://github.com/Nidhibansalll", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SurajPratap10/Imagine_AI/pull/1338"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/38250310?v=4", - "login": "leonyangela", - "url": "https://github.com/leonyangela", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/SwanandD121/FeatherPerfect_fe/pull/68"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151845349?u=8ad289b94ee59ddd5a001ebe3d01528b68cbb290&v=4", - "login": "swaraj-das", - "url": "https://github.com/swaraj-das", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/679", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/476", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/474", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/412", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/380", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/331" - ], - "pr_dates": [ - "2024-10-12", - "2024-10-13", - "2024-10-14", - "2024-10-16", - "2024-10-24" - ], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158394436?u=ddb2b64700c5316c5f1fb8f4dcd22de0dc3babb5&v=4", - "login": "Indugundam", - "url": "https://github.com/Indugundam", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/553" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140271822?v=4", - "login": "gollaanusha249", - "url": "https://github.com/gollaanusha249", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/441" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116422872?v=4", - "login": "shauryakushwaha08", - "url": "https://github.com/shauryakushwaha08", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/307" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99483175?u=6ba7a999824eb6c6a6f97569a34f15b7de74c13b&v=4", - "login": "HemanthTigga", - "url": "https://github.com/HemanthTigga", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/swarooppatilx/scruter/pull/132"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140320866?u=25d9c187fde04483627e7d75552768d94342cc35&v=4", - "login": "Pruthviraj404", - "url": "https://github.com/Pruthviraj404", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/tanishaness/SPROCTOR/pull/55"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108517501?u=a23c5749cd4153d1fd6962e9a6abc594345a98a1&v=4", - "login": "RajukrRaja", - "url": "https://github.com/RajukrRaja", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/Dataverse/pull/214"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145000831?v=4", - "login": "subodhsalgaonkar", - "url": "https://github.com/subodhsalgaonkar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/Dataverse/pull/92"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165178307?u=1a738899d926e5820f1d93f35f511bfb45fe31dd&v=4", - "login": "httpsumita", - "url": "https://github.com/httpsumita", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/multiverseweb/CodeIt/pull/39"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87329149?v=4", - "login": "jassBawa", - "url": "https://github.com/jassBawa", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/238"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110130225?u=dc54a0ac025385504bf1f78198e1a7870a6f6dc5&v=4", - "login": "KrinsKumar", - "url": "https://github.com/KrinsKumar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/234"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/77536240?u=ecf79a75335fc830546ff15f22d8c511eaab3cfa&v=4", - "login": "aafaris", - "url": "https://github.com/aafaris", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/226"], - "pr_dates": ["2024-10-27"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124374867?v=4", - "login": "shobhit15082003", - "url": "https://github.com/shobhit15082003", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/119"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86548747?u=d15ff14362f0ed337b497bc82b436f0865fa945a&v=4", - "login": "antidude900", - "url": "https://github.com/antidude900", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/13"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/158446050?v=4", - "login": "Kasaksaxena", - "url": "https://github.com/Kasaksaxena", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/552" - ], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112260375?u=49985afa3bc81b524dc40d3a1fbd07aa93d41a69&v=4", - "login": "siddhant-2002", - "url": "https://github.com/siddhant-2002", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/493" - ], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/117831403?u=a81f9a57b719463eb5001ad58aaa4f15736feac9&v=4", - "login": "Prince-1917", - "url": "https://github.com/Prince-1917", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/488" - ], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124285911?u=d34c0b717da87ef07b1ef202a411f5ad25ed6b89&v=4", - "login": "Sonalika003", - "url": "https://github.com/Sonalika003", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/252" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/168672957?v=4", - "login": "arcane-2004", - "url": "https://github.com/arcane-2004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/107" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/162535264?u=f0df621bdceba75e897619bccd8e92b62ebfb109&v=4", - "login": "chiragsaini96", - "url": "https://github.com/chiragsaini96", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Tejashri-Taral/TrendTrove-Ecommerce/pull/42" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/29906447?u=0ed501b633986987f8905f3d228ecc116f3fd2f8&v=4", - "login": "mashazyu", - "url": "https://github.com/mashazyu", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TenzDelek/DearDiary/pull/119"], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/107102771?u=670e0166995b8d6142c9191eb18a5b8502229977&v=4", - "login": "j-mahapatra", - "url": "https://github.com/j-mahapatra", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TenzDelek/DearDiary/pull/87"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/88930014?u=a34d557c39b1c25b947e28b9793270ff50024f66&v=4", - "login": "DeeptejD", - "url": "https://github.com/DeeptejD", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TenzDelek/DearDiary/pull/43"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131159306?u=37c7c94beda92e83f7d932a980579920e1693248&v=4", - "login": "code-killer0", - "url": "https://github.com/code-killer0", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/TenzDelek/DearDiary/pull/26", - "https://github.com/GVishnudhasan/NoDueProject/pull/24" - ], - "pr_dates": ["2024-10-02", "2024-10-03"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166587936?u=5a2db7cd20a05cd22fd2dcfd50cb80f42ebfd14a&v=4", - "login": "poonam17122004", - "url": "https://github.com/poonam17122004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Trisha-tech/OnlineBookSales/pull/571"], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144036673?u=7298214ad42f86fb48aa46ac552a65a42b362faf&v=4", - "login": "Gunpreet08", - "url": "https://github.com/Gunpreet08", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/660" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138525577?u=36e5d5205fc387e733e9459c5362e9c95ff2e19e&v=4", - "login": "Aditya-NV-06", - "url": "https://github.com/Aditya-NV-06", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/547", - "https://github.com/tushargupta1504/Medical-Website/pull/105" - ], - "pr_dates": ["2024-10-02", "2024-10-19"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184354855?v=4", - "login": "Arijit-chakraborty2k24", - "url": "https://github.com/Arijit-chakraborty2k24", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/448" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/132820332?u=6d9d9c6c18dc59298fb1ea81828c618385ee0fef&v=4", - "login": "wouffle", - "url": "https://github.com/wouffle", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/297" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145204746?u=61aa0027ffd6a60407a0d1748456c1015b1df633&v=4", - "login": "Deepikajyothi007", - "url": "https://github.com/Deepikajyothi007", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/267" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138691394?u=d710548656b1444e769c810dc56b3bf39b25a40d&v=4", - "login": "11-sg", - "url": "https://github.com/11-sg", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/220" - ], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/141490705?u=3fe2caafa6d3cdadd11e3a2d7da5c4ea74c25b6c&v=4", - "login": "Shiva-Bajpai", - "url": "https://github.com/Shiva-Bajpai", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/140" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147334973?u=6709fbf1421e62cf50fb4dbee7358a5855f4e93e&v=4", - "login": "JyotsnaGuntha", - "url": "https://github.com/JyotsnaGuntha", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/47", - "https://github.com/tushargupta1504/Medical-Website/pull/42", - "https://github.com/tushargupta1504/Medical-Website/pull/26" - ], - "pr_dates": ["2024-10-01", "2024-10-02"], - "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86332096?v=4", - "login": "nicolejorn", - "url": "https://github.com/nicolejorn", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PySnippets/pull/48"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130018046?u=f5266e1587df207a4367c7db235182328898317f&v=4", - "login": "Unnati2603", - "url": "https://github.com/Unnati2603", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/Gityzer/pull/70"], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135223072?u=625edc1ef8f2517a1ff8b66428ca6ce58fb442bf&v=4", - "login": "charmi2109", - "url": "https://github.com/charmi2109", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/ChaosWeb/pull/194"], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146614957?u=d490168ccb2e8dc12ee82b51313840844e7f3f37&v=4", - "login": "diwakarchaurasiya", - "url": "https://github.com/diwakarchaurasiya", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/ChaosWeb/pull/166"], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/127375144?u=d19fc820e6a75cfc0bbbe66754777a7a1827861f&v=4", - "login": "azfar-2", - "url": "https://github.com/azfar-2", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/vansh-codes/ChaosWeb/pull/115"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/152010836?v=4", - "login": "aman8042", - "url": "https://github.com/aman8042", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vimall03/Alimento/pull/117"], - "pr_dates": ["2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123798297?u=2083873a3198b1001f9c3f9446521775fad9993a&v=4", - "login": "divya7202", - "url": "https://github.com/divya7202", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vimall03/Alimento/pull/23"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143689484?v=4", - "login": "shanvid19", - "url": "https://github.com/shanvid19", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/194"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135353689?u=899206a40d100da39061d2fcd48b4da64de39920&v=4", - "login": "MohitGoyal09", - "url": "https://github.com/MohitGoyal09", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/131"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/54910091?u=a60d669a62270f5fb484cc3c029df6d67e6b9168&v=4", - "login": "anurags10", - "url": "https://github.com/anurags10", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vin205/Enyanjyoti/pull/30"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144944896?u=9bec15a16f5a9c889bc659368e28205368ad770a&v=4", - "login": "kaustubh0601", - "url": "https://github.com/kaustubh0601", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/650" - ], - "pr_dates": ["2024-10-29"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143478872?u=6919a95018c8baba897db229b4620eab13c58168&v=4", - "login": "abishekak18", - "url": "https://github.com/abishekak18", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/351" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/175913268?v=4", - "login": "Isham17NIT", - "url": "https://github.com/Isham17NIT", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/vishal02527/My-Strength-Shree-Krishna/pull/39" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94748228?v=4", - "login": "GVishnudhasan", - "url": "https://github.com/GVishnudhasan", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GVishnudhasan/NoDueProject/pull/28"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/161037206?u=39d61f1fd19cc2fac868a391cad7a6339b067505&v=4", - "login": "Saumy1905", - "url": "https://github.com/Saumy1905", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/144"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/71663979?u=ca918818ea679f23d56e5558c90d654f7994b510&v=4", - "login": "AbhigyaKrishna", - "url": "https://github.com/AbhigyaKrishna", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/53"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/104451914?u=e238d2a772160058d6ea3d22db714457ae7b5a96&v=4", - "login": "amitthecoder", - "url": "https://github.com/amitthecoder", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Vishwajith-Shettigar/NextGen/pull/51"], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/184504781?v=4", - "login": "umar-farooq-shaik", - "url": "https://github.com/umar-farooq-shaik", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/1114" - ], - "pr_dates": ["2024-10-30"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/149051028?v=4", - "login": "Wangmo-inn", - "url": "https://github.com/Wangmo-inn", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/455" - ], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/137853785?v=4", - "login": "raushan2104", - "url": "https://github.com/raushan2104", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/341" - ], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92741099?u=92d7012bcc9f35275043298ebc31090ed611727f&v=4", - "login": "synthiaekka", - "url": "https://github.com/synthiaekka", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/296" - ], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/144261424?v=4", - "login": "Ankitaghavate", - "url": "https://github.com/Ankitaghavate", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/261" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114425377?v=4", - "login": "Khushi14404", - "url": "https://github.com/Khushi14404", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/62" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/112336889?u=87de5e44f42caecb3a717d6b8ce3b7b967e3f7e4&v=4", - "login": "Nimitshekhawat", - "url": "https://github.com/Nimitshekhawat", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/20"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150971985?v=4", - "login": "CoderXYZ14", - "url": "https://github.com/CoderXYZ14", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/211"], - "pr_dates": ["2024-10-17"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115392548?v=4", - "login": "manoj-netizenn", - "url": "https://github.com/manoj-netizenn", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/112"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/89403720?v=4", - "login": "ptskok", - "url": "https://github.com/ptskok", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/83"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/95031187?u=6a9c1d2e3f2a65a39c9d09668225e34932735c2f&v=4", - "login": "anamelahi", - "url": "https://github.com/anamelahi", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/71"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119151277?u=744908d8a31446f3e6488c8eeb2115b8ae06a1f9&v=4", - "login": "aswathcm29", - "url": "https://github.com/aswathcm29", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/60"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114327679?u=a837b2d1b6aeed6eb4830efd8f767f72be3dce3e&v=4", - "login": "Wasid786", - "url": "https://github.com/Wasid786", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/56"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125378695?u=83f818cc3d32be41deaf08009b1596f72a4baca9&v=4", - "login": "Aryan-dev-enth", - "url": "https://github.com/Aryan-dev-enth", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/47"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/120463312?v=4", - "login": "ManojithBhat", - "url": "https://github.com/ManojithBhat", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Scribbie-Notes/notes-app/pull/22"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151532682?v=4", - "login": "Aditi-008", - "url": "https://github.com/Aditi-008", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yashgabani845/hiring-portal/pull/62"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145966547?u=91730553f1ad58bb9629a82bdedae8b9d9cb0b69&v=4", - "login": "im-amanjai", - "url": "https://github.com/im-amanjai", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Yash-Ainapure/dypcetclubs.live/pull/14"], - "pr_dates": ["2024-10-05"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111628902?v=4", - "login": "prachi-0319", - "url": "https://github.com/prachi-0319", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yashasvini121/predictive-calc/pull/189"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/183186061?v=4", - "login": "debabrata-15", - "url": "https://github.com/debabrata-15", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AmateursLeague/sneaky-package/pull/159"], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/151391995?v=4", - "login": "Harshvardhan5703", - "url": "https://github.com/Harshvardhan5703", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AmateursLeague/sneaky-package/pull/115"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/81413791?u=1040e8b9793f540c1f63191f311dc00a2786aa97&v=4", - "login": "JoyelJohny", - "url": "https://github.com/JoyelJohny", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AmateursLeague/sneaky-package/pull/24"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166375617?v=4", - "login": "Shasha004", - "url": "https://github.com/Shasha004", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yuvrajsinghgmx/ShopSmart/pull/133"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/114992036?u=278c47a12e60bb02e09c0793d1aab9171ff14dfe&v=4", - "login": "PrakashIrom", - "url": "https://github.com/PrakashIrom", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yuvrajsinghgmx/ShopSmart/pull/66"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129653830?u=8c53bb1134a5ead86eb9c89a0e18a93f2685443d&v=4", - "login": "MohassinHussain", - "url": "https://github.com/MohassinHussain", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GlobeHoppin/GlobeHoppin/pull/107"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150383022?v=4", - "login": "Shane-3", - "url": "https://github.com/Shane-3", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/apu52/Travel_Website/pull/1585"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124046429?u=979709bd6d20226d0ecb0e082205057710f6b313&v=4", - "login": "DeenuRSD", - "url": "https://github.com/DeenuRSD", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/4darsh-Dev/DecenTrade/pull/72"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/123928113?u=6fb894fed149754e3d679056a889ecc25dfbdff2&v=4", - "login": "IniyalPalanisamy", - "url": "https://github.com/IniyalPalanisamy", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/4darsh-Dev/DecenTrade/pull/68"], - "pr_dates": ["2024-10-18"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96946118?u=84e7bdc850344d6dd5770b0f7b0b602cf334a48d&v=4", - "login": "abhishekpaturkar", - "url": "https://github.com/abhishekpaturkar", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/4darsh-Dev/DecenTrade/pull/20"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/145526777?u=f2e46344da006ed95934c6bc2476ba5892238fcc&v=4", - "login": "KaroK365", - "url": "https://github.com/KaroK365", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/920"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/87269080?u=64ce47c0478f100703a7f265e35000d0bb2ecbfe&v=4", - "login": "Prabhatsingh001", - "url": "https://github.com/Prabhatsingh001", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/831"], - "pr_dates": ["2024-10-24"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/131891590?u=e5b35a2d7b6ba08af2ba61cd20f687198b19032a&v=4", - "login": "dino65-dev", - "url": "https://github.com/dino65-dev", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/780"], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143107589?u=8fcd6e1eaf59aeab216300d6d68330f73d517ae0&v=4", - "login": "Saipradyumnagoud", - "url": "https://github.com/Saipradyumnagoud", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UTSAVS26/PyVerse/pull/523"], - "pr_dates": ["2024-10-12"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/125668360?u=01fd09fc70a4909a667027382c7d53915954b2fe&v=4", - "login": "kvcops", - "url": "https://github.com/kvcops", - "score": 10, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/kvcops/KV-Nexus/pull/43"], - "pr_dates": ["2024-10-26"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/148693112?u=83c06bf40e0049a88137665120abdd2e68edafaa&v=4", - "login": "HRITVIK25", - "url": "https://github.com/HRITVIK25", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/abhishekraoas/MCA-Alumni-Network/pull/17" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/118452811?u=f3dbdfe8be76f3cb770bd59ec24dd7d6b67e69b6&v=4", - "login": "VesperAkshay", - "url": "https://github.com/VesperAkshay", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/VesperAkshay/qr-code-generator/pull/45", - "https://github.com/VesperAkshay/qr-code-generator/pull/32" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86224794?u=bee7fce47d98ecfba5531a8564c3e6d52535c794&v=4", - "login": "AlfiyaSiddique", - "url": "https://github.com/AlfiyaSiddique", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/AlfiyaSiddique/TastyTrails/pull/383"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/139707943?u=ec7987958889d4b93ea32695462411636663f30c&v=4", - "login": "ankit071105", - "url": "https://github.com/ankit071105", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/ankit071105/Ticket-Booking/pull/47"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96969496?v=4", - "login": "RitiChandak", - "url": "https://github.com/RitiChandak", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/anuragverma108/SwapReads/pull/2886"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/99797400?u=5d9baa659b9132557aa6032883b837de8636ead6&v=4", - "login": "arjunatapadkar", - "url": "https://github.com/arjunatapadkar", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/arjunatapadkar/codeteria/pull/20"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/94827726?u=eec0d2a80fddce5ad1b82d5a8285ed76cc98a3d8&v=4", - "login": "VijaySingh8650", - "url": "https://github.com/VijaySingh8650", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/199"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143427352?u=02826305ccd9a5571e49c8f4f7689f06cb752f1e&v=4", - "login": "saidinesh49", - "url": "https://github.com/saidinesh49", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/165"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111678429?u=29c8b0081d908c64a4c9b50fa3a07575ab0d7364&v=4", - "login": "munnavuyyuru", - "url": "https://github.com/munnavuyyuru", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/156"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/86532060?u=46f83d903aca2a47484af00b5bd6599f51e97fa7&v=4", - "login": "elic4vet", - "url": "https://github.com/elic4vet", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/153"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/124811276?u=045f0a6286f78880cc4a41bcc65a29609b76aab1&v=4", - "login": "dipanshurdev", - "url": "https://github.com/dipanshurdev", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codeaashu/DevDisplay/pull/151", - "https://github.com/codeaashu/DevDisplay/pull/145" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/130051152?u=a5aac54d6fc9f52d27c66402e50959c24e70b3c8&v=4", - "login": "Unnimaya6122004", - "url": "https://github.com/Unnimaya6122004", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/codeaashu/DevDisplay/pull/146"], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/143249267?u=9254c9ed7983358c7243f39cf65569b8c8103868&v=4", - "login": "ragineedarade", - "url": "https://github.com/ragineedarade", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayush-that/FinVeda/pull/972", - "https://github.com/ayush-that/FinVeda/pull/968" + "success": true, + "updatedAt": 1781548394726, + "lastUpdated": 1781548394726, + "generated": true, + "contributors": [ + { + "username": "contributor1", + "avatar": "https://github.com/contributor1.png", + "profile": "https://github.com/contributor1", + "points": 60, + "prs": 2, + "prDetails": [ + { + "title": "PR 2 - Docs", + "url": "https://github.com/recodehive/repo1/pull/2", + "mergedAt": "2026-06-15T12:00:00Z", + "repoName": "repo1", + "number": 2, + "points": 50 + }, + { + "title": "PR 1 - Fix auth", + "url": "https://github.com/recodehive/repo1/pull/1", + "mergedAt": "2026-06-14T12:00:00Z", + "repoName": "repo1", + "number": 1, + "points": 10 + } ], - "pr_dates": ["2024-10-01", "2024-10-02"], "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142989448?u=69f95a960f1f18fd60e630c48bd2f09a3acdd190&v=4", - "login": "dhairyagothi", - "url": "https://github.com/dhairyagothi", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/dhairyagothi/StationGuide/pull/39"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115262737?u=849afe2c38f89c45de70c566a4ec60d6854bc908&v=4", - "login": "Prithwi32", - "url": "https://github.com/Prithwi32", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Data-Sculptor-X/VOJ-ReactJS/pull/21"], - "pr_dates": ["2024-10-09"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/105410881?u=18fa6901c00d3c944b31a7054264fe92d5238aba&v=4", - "login": "UppuluriKalyani", - "url": "https://github.com/UppuluriKalyani", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/UppuluriKalyani/ML-Nexus/pull/477", - "https://github.com/UppuluriKalyani/ML-Nexus/pull/436" - ], - "pr_dates": ["2024-10-18", "2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/101971980?u=92c9ea40bfd302e02391da0d386e2fee5baca3e3&v=4", - "login": "MastanSayyad", - "url": "https://github.com/MastanSayyad", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/UppuluriKalyani/ML-Nexus/pull/329"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/111505548?u=ad3b25bd6eac000407b4615c1cb9d43e86bff2d1&v=4", - "login": "ShivRaiGithub", - "url": "https://github.com/ShivRaiGithub", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/Kushal997-das/Project-Guidance/pull/1477" - ], - "pr_dates": ["2024-10-15"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/108144301?u=ff4e4f0263c8179a754e5e2abc1ab14549028f18&v=4", - "login": "whyvineet", - "url": "https://github.com/whyvineet", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/89"], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/38182673?u=02ecea5f0409bcf8bc3ab2bdc49146880d22d02d&v=4", - "login": "c0sm0void", - "url": "https://github.com/c0sm0void", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/c0sm0void/ReVot/pull/76"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119968502?u=dd795eb6c7fdbefd8e11b0efc629ed8dbc2c90af&v=4", - "login": "Naveenkumar30838", - "url": "https://github.com/Naveenkumar30838", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/493"], - "pr_dates": ["2024-10-13"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/155980409?u=b2225a250ffcb6ffd6794dbeb2c1fef52bac8e6a&v=4", - "login": "gyanshankar1708", - "url": "https://github.com/gyanshankar1708", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Anjaliavv51/Retro/pull/317"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/173771562?v=4", - "login": "iituts", - "url": "https://github.com/iituts", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/andoriyaprashant/DevDocsHub/pull/21"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/129655645?u=48792aba5dad8c439928a03e7ed06364ad4c06ba&v=4", - "login": "anuragverma108", - "url": "https://github.com/anuragverma108", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/PriyaGhosal/BuddyTrail/pull/175"], - "pr_dates": ["2024-10-07"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/150104887?u=b7f3d1d2230b880964a2cba3cfaa9120b5fc3f1c&v=4", - "login": "PrinceYadav001", - "url": "https://github.com/PrinceYadav001", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/1556" - ], - "pr_dates": ["2024-10-21"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/113540835?u=2ea5669a5e4a265c0b21f2c78b52a0820ada3551&v=4", - "login": "SatyamThakur0", - "url": "https://github.com/SatyamThakur0", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/553" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/153124279?u=c0f1809ea54430b946c2a4be1f572e45b03c6d30&v=4", - "login": "saikatsardar01", - "url": "https://github.com/saikatsardar01", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/iamrahulmahato/master-web-development/pull/492" - ], - "pr_dates": ["2024-10-06"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/76748971?u=4a360318cb1e63bca6531e408387f00edd765960&v=4", - "login": "kaiyumdev", - "url": "https://github.com/kaiyumdev", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/beRajeevKumar/Frontend_Mentor/pull/652"], - "pr_dates": ["2024-10-31"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/128673394?u=470b9af25149185dddcf9256190cea73723855e6&v=4", - "login": "AliGates915", - "url": "https://github.com/AliGates915", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/RamakrushnaBiswal/PlayCafe/pull/164"], - "pr_dates": ["2024-10-08"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/119284895?u=28e3ed73b7e4f7ead70b3369cb789432036e0b2a&v=4", - "login": "amanbind898", - "url": "https://github.com/amanbind898", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ayerhssb/Appointment-booking-app/pull/63" - ], - "pr_dates": ["2024-10-22"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166062355?u=95076e72934627580c0f6699e39e6815e1880105&v=4", - "login": "AbhinavDhiman34", - "url": "https://github.com/AbhinavDhiman34", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Shreyaa173/Code-Book/pull/19"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/160749216?v=4", - "login": "PhilipJohn005", - "url": "https://github.com/PhilipJohn005", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/Shubham-Zone/Citizen_Squad/pull/50"], - "pr_dates": ["2024-10-28"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/110407868?u=c3d6a084835522c20d29aa58b46517b8b07ce19a&v=4", - "login": "AshuKr22", - "url": "https://github.com/AshuKr22", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/daccotta-org/daccotta/pull/274", - "https://github.com/daccotta-org/daccotta/pull/273" - ], - "pr_dates": ["2024-10-25"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/135215478?u=1ce5897118ac3a2158d664ebdbe6e68e3a8ab2b0&v=4", - "login": "AnitSarkar123", - "url": "https://github.com/AnitSarkar123", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/483", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/479", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/478", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/122", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/113", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/109", - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/108" - ], - "pr_dates": ["2024-10-04", "2024-10-05", "2024-10-16"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/147902419?v=4", - "login": "Aryakhot", - "url": "https://github.com/Aryakhot", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/swaraj-das/Collect-your-GamingTools/pull/406" - ], - "pr_dates": ["2024-10-14"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/140711476?v=4", - "login": "Eshan05", - "url": "https://github.com/Eshan05", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/TejasNasre/nexmeet/pull/21"], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/116472903?u=cb02accbf205b8a9a28bcf66f320483e33d0bb3d&v=4", - "login": "rivercory", - "url": "https://github.com/rivercory", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/180" - ], - "pr_dates": ["2024-10-04"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/85186274?u=0c5ab761b38529b854613a85b0cf5f04a00fa69c&v=4", - "login": "kshitijhadke26", - "url": "https://github.com/kshitijhadke26", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/146" - ], - "pr_dates": ["2024-10-03"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/36658186?v=4", - "login": "Alitindrawan24", - "url": "https://github.com/Alitindrawan24", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/137" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/22955675?u=6592f4d79d4ed93be4acf3304d33695561a0b444&v=4", - "login": "DhanushNehru", - "url": "https://github.com/DhanushNehru", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/118" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/165933939?v=4", - "login": "LuciaSheel", - "url": "https://github.com/LuciaSheel", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/106" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/41273359?u=cb6a23622faaaae4301c9e7208dc481b5fa897dd&v=4", - "login": "68mschmitt", - "url": "https://github.com/68mschmitt", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/103" - ], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/138330699?u=7040d96b4627e356a6e7d6bea9e96f5b4dd43f92&v=4", - "login": "tushargupta1504", - "url": "https://github.com/tushargupta1504", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/tushargupta1504/Medical-Website/pull/88"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/96690020?u=e54442c1eecadbcba1d35d909d5b89d036c1632a&v=4", - "login": "Shiv13jm", - "url": "https://github.com/Shiv13jm", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/tushargupta1504/Medical-Website/pull/83"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/146095915?v=4", - "login": "Munazir151", - "url": "https://github.com/Munazir151", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/tushargupta1504/Medical-Website/pull/74"], - "pr_dates": ["2024-10-02"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/115802819?u=d20a818223514f570ab51d60b0162f7aecf60cd5&v=4", - "login": "sahilsama", - "url": "https://github.com/sahilsama", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/tushargupta1504/Medical-Website/pull/38", - "https://github.com/tushargupta1504/Medical-Website/pull/34" - ], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/92737430?u=4ca1c71d221e041b76eb1774f7bc3420c3b496ca&v=4", - "login": "LoneStanding", - "url": "https://github.com/LoneStanding", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/tushargupta1504/Medical-Website/pull/37"], - "pr_dates": ["2024-10-01"], - "streak": 1 - }, + } + ], + "leaderboard": [ { - "avatar_url": "https://avatars.githubusercontent.com/u/137484958?u=32acda5eeeb2ca2de61c766b4d8abad5f92973c3&v=4", - "login": "SadafKausar2025", - "url": "https://github.com/SadafKausar2025", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/codervivek5/VigyBag/pull/2348", - "https://github.com/codervivek5/VigyBag/pull/2335" + "username": "contributor1", + "avatar": "https://github.com/contributor1.png", + "profile": "https://github.com/contributor1", + "points": 60, + "prs": 2, + "prDetails": [ + { + "title": "PR 2 - Docs", + "url": "https://github.com/recodehive/repo1/pull/2", + "mergedAt": "2026-06-15T12:00:00Z", + "repoName": "repo1", + "number": 2, + "points": 50 + }, + { + "title": "PR 1 - Fix auth", + "url": "https://github.com/recodehive/repo1/pull/1", + "mergedAt": "2026-06-14T12:00:00Z", + "repoName": "repo1", + "number": 1, + "points": 10 + } ], - "pr_dates": ["2024-10-17", "2024-10-18"], "streak": 2 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/142112297?v=4", - "login": "Ritikabiswas", - "url": "https://github.com/Ritikabiswas", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": [ - "https://github.com/ML-Fusion-Lab/ML-Fusion-Lab-Website/pull/882" - ], - "pr_dates": ["2024-10-20"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/20682772?v=4", - "login": "carlosfiori", - "url": "https://github.com/carlosfiori", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/130"], - "pr_dates": ["2024-10-23"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/72953174?u=ac4ecaa914c730a13447c80fdfb31a9bf0fec71f&v=4", - "login": "KirolosMFahem", - "url": "https://github.com/KirolosMFahem", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/yagnik2411/Quiz-Genius/pull/78"], - "pr_dates": ["2024-10-11"], - "streak": 1 - }, - { - "avatar_url": "https://avatars.githubusercontent.com/u/166422206?u=47a2010efcc837c9f93382ecd4ad0bb545f55a5a&v=4", - "login": "Nitinkumar-29", - "url": "https://github.com/Nitinkumar-29", - "score": 0, - "postManTag": false, - "web3hack": false, - "pr_urls": ["https://github.com/GlobeHoppin/GlobeHoppin/pull/58"], - "pr_dates": ["2024-10-13"], - "streak": 1 } - ], - "success": true, - "updatedAt": 1730531445248, - "generated": true, - "updatedTimestring": "2/11/2024, 12:40:45 pm No New PRs merged after 10th November 7:00p.m are counted", - "streakData": [ - { "login": "shubhagarwal1", "streak": 1 }, - { "login": "Shariq2003", "streak": 32 }, - { "login": "inkerton", "streak": 11 }, - { "login": "ShivanshPlays", "streak": 26 }, - { "login": "IkkiOcean", "streak": 29 }, - { "login": "Sawan-Kushwah", "streak": 8 }, - { "login": "Subhajit-2023-44", "streak": 26 }, - { "login": "ananyag309", "streak": 30 }, - { "login": "J-B-Mugundh", "streak": 2 }, - { "login": "mehul-m-prajapati", "streak": 32 }, - { "login": "priyanshuverma-dev", "streak": 29 }, - { "login": "haseebzaki-07", "streak": 27 }, - { "login": "T-Rahul-prabhu-38", "streak": 19 }, - { "login": "AyushSharma72", "streak": 1 }, - { "login": "Priyanshi0112", "streak": 12 }, - { "login": "tarunkumar2005", "streak": 1 }, - { "login": "SrijaVuppala295", "streak": 5 }, - { "login": "Suvadip-sana", "streak": 11 }, - { "login": "yashksaini-coder", "streak": 18 }, - { "login": "smog-root", "streak": 2 }, - { "login": "sezallagwal", "streak": 8 }, - { "login": "Son7c", "streak": 21 }, - { "login": "alo7lika", "streak": 9 }, - { "login": "AswaniBolisetti", "streak": 3 }, - { "login": "neeru24", "streak": 3 }, - { "login": "harshbhar0629", "streak": 1 }, - { "login": "KapuluruBhuvaneswariVspdbct", "streak": 2 }, - { "login": "isimarjitsingh", "streak": 1 }, - { "login": "Sourabh782", "streak": 2 }, - { "login": "pratheekv39", "streak": 11 }, - { "login": "DarshAgrawal14", "streak": 3 }, - { "login": "Gauravtb2253", "streak": 4 }, - { "login": "VinayLodhi1712", "streak": 1 }, - { "login": "dipexplorer", "streak": 2 }, - { "login": "TBorundia", "streak": 3 }, - { "login": "Riyachauhan11", "streak": 1 }, - { "login": "HimangshuSharma01", "streak": 4 }, - { "login": "Saurabhchaudhary9799", "streak": 5 }, - { "login": "biswajit-sarkar-007", "streak": 9 }, - { "login": "17arindam", "streak": 1 }, - { "login": "ritiksingh-01", "streak": 14 }, - { "login": "AsifQamar", "streak": 1 }, - { "login": "akash70629", "streak": 9 }, - { "login": "shriyadindi", "streak": 12 }, - { "login": "Adarsh-Chaubey03", "streak": 16 }, - { "login": "ParasY1724", "streak": 9 }, - { "login": "samar12-rad", "streak": 1 }, - { "login": "samyak-aditya", "streak": 1 }, - { "login": "RachitSahu26", "streak": 6 }, - { "login": "VidhanThakur09", "streak": 1 }, - { "login": "PrAyAg9", "streak": 1 }, - { "login": "PrityanshuSingh", "streak": 1 }, - { "login": "ygowthamr", "streak": 6 }, - { "login": "Kritika75", "streak": 7 }, - { "login": "AnushkaChouhan25", "streak": 6 }, - { "login": "harish08102004", "streak": 1 }, - { "login": "adityalaxkar123", "streak": 9 }, - { "login": "govindumeesala", "streak": 1 }, - { "login": "AE-Hertz", "streak": 7 }, - { "login": "Varsha-1605", "streak": 1 }, - { "login": "meghanakn473", "streak": 3 }, - { "login": "Irtesaam", "streak": 4 }, - { "login": "priyashuu", "streak": 2 }, - { "login": "milansamuel609", "streak": 7 }, - { "login": "KrishPatel1205", "streak": 13 }, - { "login": "nishant4500", "streak": 1 }, - { "login": "amiya-cyber", "streak": 13 }, - { "login": "rajdeepchakraborty-rc", "streak": 2 }, - { "login": "souvikpramanikgit", "streak": 1 }, - { "login": "devxMani", "streak": 1 }, - { "login": "samriddhitiwary", "streak": 3 }, - { "login": "devarsheecodess", "streak": 1 }, - { "login": "Chin-may02", "streak": 3 }, - { "login": "Mohitranag18", "streak": 2 }, - { "login": "dev129", "streak": 1 }, - { "login": "AnujShrivastava01", "streak": 1 }, - { "login": "Sudhanshu248", "streak": 1 }, - { "login": "Bhum-ika", "streak": 12 }, - { "login": "amanver45", "streak": 3 }, - { "login": "kavya410004", "streak": 1 }, - { "login": "saras-69", "streak": 1 }, - { "login": "trinetra110", "streak": 1 }, - { "login": "Devanshu1603", "streak": 1 }, - { "login": "AbhijitMotekar99", "streak": 1 }, - { "login": "Kajalmehta29", "streak": 4 }, - { "login": "amitb0ra", "streak": 1 }, - { "login": "23wh1a0513", "streak": 2 }, - { "login": "rishabh7923", "streak": 2 }, - { "login": "sadath2001", "streak": 1 }, - { "login": "ishivansmishra", "streak": 1 }, - { "login": "Antima2004", "streak": 5 }, - { "login": "sayanp607", "streak": 1 }, - { "login": "Peart-Guy", "streak": 1 }, - { "login": "Hamza1821", "streak": 1 }, - { "login": "PavanTeja2005", "streak": 8 }, - { "login": "rebornstar1", "streak": 8 }, - { "login": "NK-Works", "streak": 1 }, - { "login": "ramana2074", "streak": 1 }, - { "login": "saumyayadav25", "streak": 7 }, - { "login": "mdfaizaanalam", "streak": 1 }, - { "login": "Dipanita45", "streak": 1 }, - { "login": "Jashwanth-rit", "streak": 1 }, - { "login": "jainaryan04", "streak": 3 }, - { "login": "KrishChothani", "streak": 1 }, - { "login": "djv554", "streak": 2 }, - { "login": "Sumanth077s", "streak": 1 }, - { "login": "Anandha-Vihari", "streak": 1 }, - { "login": "swathivemula7", "streak": 3 }, - { "login": "REHAN-18", "streak": 1 }, - { "login": "ansiace", "streak": 1 }, - { "login": "aditya07389", "streak": 1 }, - { "login": "shivam8112005", "streak": 1 }, - { "login": "KiranBaliga", "streak": 1 }, - { "login": "rutikakengal", "streak": 1 }, - { "login": "aditiverma-21", "streak": 5 }, - { "login": "Akshithsaai", "streak": 1 }, - { "login": "Subham1", "streak": 1 }, - { "login": "Shekhar-Raj", "streak": 1 }, - { "login": "shravya312", "streak": 1 }, - { "login": "jaidh01", "streak": 1 }, - { "login": "Aditijainnn", "streak": 1 }, - { "login": "Ananya-vastare", "streak": 2 }, - { "login": "Ankul8471", "streak": 2 }, - { "login": "Palmistry2310", "streak": 2 }, - { "login": "jvkousthub", "streak": 1 }, - { "login": "Ankitha2130", "streak": 3 }, - { "login": "ezDecode", "streak": 1 }, - { "login": "mahaveergurjar", "streak": 1 }, - { "login": "rajveeerr", "streak": 1 }, - { "login": "Amankr200", "streak": 1 }, - { "login": "DivyaJyothi9", "streak": 1 }, - { "login": "Arghya-Chakraborty0812", "streak": 1 }, - { "login": "Avinash-Codes", "streak": 1 }, - { "login": "SanikaBhalerao1345", "streak": 4 }, - { "login": "shuvojitss", "streak": 3 }, - { "login": "archanasingh11", "streak": 1 }, - { "login": "shristirwt", "streak": 1 }, - { "login": "ShrishtiSingh26", "streak": 1 }, - { "login": "Annapoornaaradhya", "streak": 1 }, - { "login": "shivenyadavs", "streak": 1 }, - { "login": "JomanaMahmoud", "streak": 1 }, - { "login": "myselfshivams", "streak": 1 }, - { "login": "Jay-1409", "streak": 1 }, - { "login": "say-het", "streak": 1 }, - { "login": "sanchitc05", "streak": 1 }, - { "login": "itznayan", "streak": 1 }, - { "login": "WednesdaySP", "streak": 1 }, - { "login": "Amulya-B28", "streak": 1 }, - { "login": "jjf2009", "streak": 1 }, - { "login": "Abhi0049k", "streak": 1 }, - { "login": "Rohan20-10", "streak": 1 }, - { "login": "T-Fathima", "streak": 3 }, - { "login": "dipak2005", "streak": 2 }, - { "login": "priyachau12", "streak": 1 }, - { "login": "Premkolte", "streak": 2 }, - { "login": "Mansi07sharma", "streak": 3 }, - { "login": "yeshwanth-ds", "streak": 1 }, - { "login": "laxmikandivalasa", "streak": 1 }, - { "login": "Abankita", "streak": 1 }, - { "login": "SimranShaikh20", "streak": 2 }, - { "login": "Himanshu-kumar025", "streak": 1 }, - { "login": "snehas-05", "streak": 1 }, - { "login": "varma-101", "streak": 1 }, - { "login": "AayushiJapsare15", "streak": 1 }, - { "login": "PATILYASHH", "streak": 2 }, - { "login": "Panchadip-128", "streak": 2 }, - { "login": "Subashree-selvaraj", "streak": 3 }, - { "login": "Aman-G-upta", "streak": 7 }, - { "login": "Rohit72099", "streak": 2 }, - { "login": "eshaalal", "streak": 1 }, - { "login": "tannuiscoding", "streak": 1 }, - { "login": "Amarjha01", "streak": 1 }, - { "login": "Edasgh", "streak": 1 }, - { "login": "Niraj1608", "streak": 1 }, - { "login": "yehiarasheed", "streak": 3 }, - { "login": "AKSHITHA-CHILUKA", "streak": 1 }, - { "login": "SurajPrakash24", "streak": 1 }, - { "login": "harshbhardwaj000", "streak": 1 }, - { "login": "Anushka-Pote", "streak": 2 }, - { "login": "swatified", "streak": 3 }, - { "login": "Abhishek-TG18", "streak": 1 }, - { "login": "HarshitShukla-dev", "streak": 1 }, - { "login": "Priyank00007", "streak": 1 }, - { "login": "coderKrysio", "streak": 3 }, - { "login": "a-n-u-vanguri", "streak": 4 }, - { "login": "SpreadSheets600", "streak": 1 }, - { "login": "siri-chandana-macha", "streak": 1 }, - { "login": "sanikamandale17", "streak": 1 }, - { "login": "kushwxha", "streak": 1 }, - { "login": "SohamDas00", "streak": 1 }, - { "login": "Varunshiyam", "streak": 2 }, - { "login": "AADESHak007", "streak": 4 }, - { "login": "Archisman141", "streak": 1 }, - { "login": "riyarane46", "streak": 1 }, - { "login": "Nkovaturient", "streak": 1 }, - { "login": "Saaarthak0102", "streak": 2 }, - { "login": "Hemraj-7", "streak": 4 }, - { "login": "pragyanbhatt1213", "streak": 1 }, - { "login": "Lonwwolf14", "streak": 1 }, - { "login": "sanjay14073", "streak": 1 }, - { "login": "rishabhrawat05", "streak": 1 }, - { "login": "khurshed07", "streak": 1 }, - { "login": "ruchikakengal", "streak": 1 }, - { "login": "Web-Dev-Learner", "streak": 1 }, - { "login": "Tusharb331", "streak": 3 }, - { "login": "rees8", "streak": 1 }, - { "login": "SumitSahu44", "streak": 1 }, - { "login": "banasmita24", "streak": 1 }, - { "login": "2004pra", "streak": 1 }, - { "login": "riyaa060", "streak": 3 }, - { "login": "daky2024", "streak": 1 }, - { "login": "sanyadureja", "streak": 1 }, - { "login": "ShaikHafiza", "streak": 1 }, - { "login": "akmaurya7", "streak": 1 }, - { "login": "rudrapratap63", "streak": 3 }, - { "login": "saadgibawa", "streak": 1 }, - { "login": "shivisingh25", "streak": 1 }, - { "login": "Ujjwal5705", "streak": 1 }, - { "login": "srajangupta144", "streak": 3 }, - { "login": "AkankshaSinghK", "streak": 1 }, - { "login": "sindhuja184", "streak": 1 }, - { "login": "BaraniVA", "streak": 1 }, - { "login": "avisha191", "streak": 1 }, - { "login": "rajgharat07", "streak": 1 }, - { "login": "RiddhiM170904", "streak": 1 }, - { "login": "Mehtarishita", "streak": 1 }, - { "login": "Pankaj4152", "streak": 1 }, - { "login": "purnima2904", "streak": 2 }, - { "login": "nksmanya", "streak": 1 }, - { "login": "royvivi29", "streak": 3 }, - { "login": "Abhishek2634", "streak": 1 }, - { "login": "SumaLatha2023", "streak": 3 }, - { "login": "PulkitShubham", "streak": 2 }, - { "login": "ishakatiyar06", "streak": 1 }, - { "login": "faiz66388", "streak": 1 }, - { "login": "ChitteshKumar", "streak": 2 }, - { "login": "ThunderShadows", "streak": 1 }, - { "login": "karthikyandrapu", "streak": 7 }, - { "login": "BVPKARTHIKEYA", "streak": 1 }, - { "login": "kartikey369-ind", "streak": 1 }, - { "login": "AyushiTaralkar", "streak": 1 }, - { "login": "STXRSHIVA", "streak": 1 }, - { "login": "Vishesh-Tripathi", "streak": 1 }, - { "login": "Sharmaji513", "streak": 3 }, - { "login": "khushigupta86", "streak": 5 }, - { "login": "shamvrueth", "streak": 6 }, - { "login": "Dhruv80576", "streak": 5 }, - { "login": "jyothimanoj12", "streak": 1 }, - { "login": "Shreya7tripathy", "streak": 1 }, - { "login": "Lokesh-Bijarniya", "streak": 1 }, - { "login": "shivhere007", "streak": 4 }, - { "login": "subin-shk", "streak": 1 }, - { "login": "BenakDeepak", "streak": 3 }, - { "login": "iAmAjayTeli", "streak": 1 }, - { "login": "coder-writes", "streak": 1 }, - { "login": "isnehamondal", "streak": 1 }, - { "login": "Pallavi-Mukalla", "streak": 2 }, - { "login": "Khushi-Nigam", "streak": 1 }, - { "login": "Ahsankhalid618", "streak": 1 }, - { "login": "laxmanp090404", "streak": 1 }, - { "login": "kjl98", "streak": 1 }, - { "login": "keerthana2-005", "streak": 1 }, - { "login": "SurajSG23", "streak": 1 }, - { "login": "Laxmi01345", "streak": 1 }, - { "login": "0xPratikPatil", "streak": 1 }, - { "login": "shreyad2806", "streak": 1 }, - { "login": "divanshiii09", "streak": 2 }, - { "login": "Pavan8421", "streak": 1 }, - { "login": "Naga-Himaja", "streak": 2 }, - { "login": "sneha056", "streak": 1 }, - { "login": "Jordian0", "streak": 1 }, - { "login": "iarmaanx", "streak": 1 }, - { "login": "Uvesh99", "streak": 1 }, - { "login": "anshika-1102", "streak": 1 }, - { "login": "sajalgarg45", "streak": 1 }, - { "login": "Ashish-Patnaik", "streak": 4 }, - { "login": "JOSHITHA6", "streak": 3 }, - { "login": "Swati-in", "streak": 1 }, - { "login": "GauriSachan", "streak": 1 }, - { "login": "Ayushjhawar8", "streak": 1 }, - { "login": "MasirJafri1", "streak": 2 }, - { "login": "JahnavikaGopalbvrith", "streak": 1 }, - { "login": "RB137", "streak": 1 }, - { "login": "Tanushree084", "streak": 1 }, - { "login": "Shadyx6", "streak": 1 }, - { "login": "Abhigaba", "streak": 1 }, - { "login": "halcyon-past", "streak": 1 }, - { "login": "sriharsha0x1", "streak": 2 }, - { "login": "vedhcet-07", "streak": 1 }, - { "login": "RishabhRawatt", "streak": 1 }, - { "login": "harshpareshbhaigosalya", "streak": 1 }, - { "login": "TanmayKalra09", "streak": 1 }, - { "login": "Aditya90456", "streak": 1 }, - { "login": "Sancharisingh", "streak": 1 }, - { "login": "srivishnu2805", "streak": 1 }, - { "login": "Pratik-Tech-Wizard", "streak": 3 }, - { "login": "rahulbamnuya", "streak": 1 }, - { "login": "Sujal1201", "streak": 1 }, - { "login": "Gopal0Gupta", "streak": 1 }, - { "login": "Aasthaa10", "streak": 1 }, - { "login": "Rahul7raj", "streak": 1 }, - { "login": "RhiyaBhat", "streak": 1 }, - { "login": "Muskan-bhatt249", "streak": 1 }, - { "login": "akansha204", "streak": 1 }, - { "login": "ganjivamshiii", "streak": 1 }, - { "login": "iAmDiksha", "streak": 1 }, - { "login": "Varsha567", "streak": 1 }, - { "login": "EvanSingee", "streak": 3 }, - { "login": "shibasarkar", "streak": 1 }, - { "login": "sumitkumar9128", "streak": 1 }, - { "login": "anadisharma121", "streak": 1 }, - { "login": "Kunj05", "streak": 1 }, - { "login": "shivanjalikarande", "streak": 1 }, - { "login": "govindbairi", "streak": 1 }, - { "login": "Abhi9shinde", "streak": 1 }, - { "login": "paridhi1114", "streak": 2 }, - { "login": "akanksha1055", "streak": 1 }, - { "login": "divyalakshmi0", "streak": 2 }, - { "login": "hamzathul", "streak": 1 }, - { "login": "anushkaa-dubey", "streak": 1 }, - { "login": "MitulSonagara", "streak": 1 }, - { "login": "ananas304", "streak": 1 }, - { "login": "Jayesh-Waghmare", "streak": 1 }, - { "login": "KashishJuneja101003", "streak": 1 }, - { "login": "LNischala", "streak": 1 }, - { "login": "INam1995", "streak": 1 }, - { "login": "Sivasaiklu", "streak": 2 }, - { "login": "Harshitha-Annam", "streak": 1 }, - { "login": "charrviwadhwa", "streak": 1 }, - { "login": "PoojaKanagaraj06", "streak": 1 }, - { "login": "adityapandey23", "streak": 1 }, - { "login": "anirudh-248", "streak": 1 }, - { "login": "eshalshaikh07", "streak": 2 }, - { "login": "Vaibhavkumar5158", "streak": 1 }, - { "login": "pradyumna14", "streak": 2 }, - { "login": "KrishnaMohanty08", "streak": 1 }, - { "login": "Ananyashetty7", "streak": 2 }, - { "login": "Amnyadav", "streak": 1 }, - { "login": "Farhan-Ahmad01", "streak": 1 }, - { "login": "Mahak-Codes", "streak": 1 }, - { "login": "oebelus", "streak": 1 }, - { "login": "agarwalbhargavi", "streak": 5 }, - { "login": "shivi13102", "streak": 1 }, - { "login": "Sambashivarao-Boyina", "streak": 1 }, - { "login": "Kaibalya27", "streak": 1 }, - { "login": "smartfellow1234", "streak": 1 }, - { "login": "neyhere07", "streak": 2 }, - { "login": "ABHISIKTAcommits", "streak": 1 }, - { "login": "mohammedanaf", "streak": 1 }, - { "login": "shreyasparaj", "streak": 1 }, - { "login": "rahulvarma2005", "streak": 1 }, - { "login": "Krishnamverma951", "streak": 1 }, - { "login": "rohir1132yadav", "streak": 1 }, - { "login": "Nelcy17", "streak": 2 }, - { "login": "4F24L", "streak": 5 }, - { "login": "Akki-58", "streak": 1 }, - { "login": "sagarbendale2004", "streak": 1 }, - { "login": "akshattiwarii", "streak": 1 }, - { "login": "DarshanKrishna-DK", "streak": 1 }, - { "login": "pranusri1903", "streak": 1 }, - { "login": "biswa2005", "streak": 1 }, - { "login": "Anushka-kar", "streak": 1 }, - { "login": "Sameeratweb", "streak": 1 }, - { "login": "BVaishnavi15", "streak": 1 }, - { "login": "Iampratyush004", "streak": 1 }, - { "login": "yasheela-alla", "streak": 1 }, - { "login": "Mrunali01", "streak": 1 }, - { "login": "VanshGarg06", "streak": 1 }, - { "login": "puneeth072003", "streak": 2 }, - { "login": "SiddarthaKarri", "streak": 1 }, - { "login": "Theboycut05", "streak": 1 }, - { "login": "tanishirai", "streak": 1 }, - { "login": "Shreya-1305", "streak": 1 }, - { "login": "Mr-DK07", "streak": 1 }, - { "login": "Piyush-t24", "streak": 1 }, - { "login": "Nimrat0199", "streak": 1 }, - { "login": "KGupta2601", "streak": 1 }, - { "login": "OmmDevgoswami", "streak": 1 }, - { "login": "Kratik1093", "streak": 1 }, - { "login": "GyanaPrakashSahoo7853", "streak": 2 }, - { "login": "priyanshaggarwal001", "streak": 2 }, - { "login": "harshgupta2125", "streak": 3 }, - { "login": "SandhyaSankararaman", "streak": 1 }, - { "login": "LaibaKhalil61", "streak": 1 }, - { "login": "manikdamle", "streak": 1 }, - { "login": "KartikSaxena19", "streak": 1 }, - { "login": "jatinkaushik-jk", "streak": 1 }, - { "login": "MrityunjaySingh09", "streak": 1 }, - { "login": "maniacedoc", "streak": 1 }, - { "login": "bhavanireddy57", "streak": 1 }, - { "login": "Mayukh-Mandal2005", "streak": 1 }, - { "login": "aakanshimalik", "streak": 1 }, - { "login": "Grandhi-Harshitha", "streak": 1 }, - { "login": "itbindu", "streak": 1 }, - { "login": "AmanPatre", "streak": 1 }, - { "login": "aadhi-i", "streak": 1 }, - { "login": "fluid111", "streak": 2 }, - { "login": "aashutosh585", "streak": 1 }, - { "login": "AyutheCoder", "streak": 1 }, - { "login": "Maryam0330", "streak": 1 }, - { "login": "RiteshS1", "streak": 1 }, - { "login": "khushidadwal", "streak": 1 }, - { "login": "nisarg107", "streak": 1 }, - { "login": "Stuti333", "streak": 1 }, - { "login": "akansha-02", "streak": 1 }, - { "login": "SKG24", "streak": 2 }, - { "login": "Jetshree", "streak": 1 }, - { "login": "saksham-1304", "streak": 2 }, - { "login": "GLITCH-in-MATRIX9", "streak": 1 }, - { "login": "soham0028", "streak": 1 }, - { "login": "mansi066", "streak": 1 }, - { "login": "mehendisil2004", "streak": 1 }, - { "login": "aarch34", "streak": 1 }, - { "login": "PRathod27", "streak": 1 }, - { "login": "RandomSummer", "streak": 1 }, - { "login": "kottarivaibhav", "streak": 1 }, - { "login": "sujeet9682", "streak": 2 }, - { "login": "Soumya0927", "streak": 3 }, - { "login": "Baig-fatema", "streak": 2 }, - { "login": "Abbas7120", "streak": 1 }, - { "login": "Siddhart2004", "streak": 1 }, - { "login": "verma2402", "streak": 1 }, - { "login": "hiteashgupta1", "streak": 1 }, - { "login": "psanyalaich", "streak": 3 }, - { "login": "LegendCK", "streak": 3 }, - { "login": "Praju2002", "streak": 1 }, - { "login": "saismrutiranjan18", "streak": 1 }, - { "login": "PratikMane0112", "streak": 1 }, - { "login": "8721111", "streak": 1 }, - { "login": "Pratzybha", "streak": 1 }, - { "login": "we-nita", "streak": 1 }, - { "login": "sahhoArjun097", "streak": 2 }, - { "login": "Meetpidev", "streak": 1 }, - { "login": "sambedan1", "streak": 1 }, - { "login": "razputshivanshu", "streak": 1 }, - { "login": "Prachiikhar25", "streak": 1 }, - { "login": "sachinggsingh", "streak": 1 }, - { "login": "Aazib-at-hub", "streak": 1 }, - { "login": "omjadhav18", "streak": 1 }, - { "login": "Utkarsha156", "streak": 1 }, - { "login": "RanitDERIA", "streak": 2 }, - { "login": "poojabagodi", "streak": 1 }, - { "login": "Shreyansh-G", "streak": 2 }, - { "login": "patiltrupti6105", "streak": 1 }, - { "login": "1754riya", "streak": 1 }, - { "login": "ChetanSingh14", "streak": 1 }, - { "login": "Devaki01", "streak": 1 }, - { "login": "devanshaggarwal03", "streak": 1 }, - { "login": "Jerusha547", "streak": 1 }, - { "login": "parteekxo", "streak": 1 }, - { "login": "ayushijainn111", "streak": 1 }, - { "login": "nithinrvs", "streak": 2 }, - { "login": "Jivanjamadar", "streak": 1 }, - { "login": "ag21o9", "streak": 1 }, - { "login": "awhyshll", "streak": 1 }, - { "login": "PRASHANTSWAROOP001", "streak": 1 }, - { "login": "suhaib-lone", "streak": 1 }, - { "login": "MOHINI1403", "streak": 1 }, - { "login": "surajgoraicse", "streak": 1 }, - { "login": "swamimalode07", "streak": 1 }, - { "login": "murali127", "streak": 2 }, - { "login": "gayu999Code", "streak": 1 }, - { "login": "vedant3337", "streak": 1 }, - { "login": "Mahy-31", "streak": 1 }, - { "login": "imDarshanGK", "streak": 1 }, - { "login": "ak-0283", "streak": 1 }, - { "login": "Anushka-200617", "streak": 1 }, - { "login": "gurliv21", "streak": 1 }, - { "login": "SatyaD012", "streak": 1 }, - { "login": "anshika-verma05", "streak": 1 }, - { "login": "Ryadav0654", "streak": 1 }, - { "login": "vishantrathi", "streak": 1 }, - { "login": "mudasirmurtaza", "streak": 1 }, - { "login": "Nitinreddy09", "streak": 2 }, - { "login": "HarshS16", "streak": 1 }, - { "login": "PREM-A261", "streak": 1 }, - { "login": "Rupali1104", "streak": 1 }, - { "login": "vidhi-github", "streak": 1 }, - { "login": "Kamini8707", "streak": 1 }, - { "login": "ishant025", "streak": 4 }, - { "login": "zul132", "streak": 1 }, - { "login": "Alpha1zln", "streak": 1 }, - { "login": "Arpin007", "streak": 1 }, - { "login": "Mandy1200", "streak": 3 }, - { "login": "itsshreyanigam", "streak": 1 }, - { "login": "Vivisteria11", "streak": 1 }, - { "login": "tanishkagarg1911", "streak": 1 }, - { "login": "swethapadmavathimukku", "streak": 1 }, - { "login": "Shalinis19137", "streak": 1 }, - { "login": "19Sonali", "streak": 1 }, - { "login": "Nikitaganeshbabu", "streak": 1 }, - { "login": "mraghavi", "streak": 1 }, - { "login": "AbrerAsif07", "streak": 1 }, - { "login": "sadafhukkeri", "streak": 1 }, - { "login": "anshumanat", "streak": 1 }, - { "login": "abhishekkrjha2811", "streak": 1 }, - { "login": "KusumPareek99", "streak": 1 }, - { "login": "swayum1004", "streak": 1 }, - { "login": "extremecoder-rgb", "streak": 1 }, - { "login": "thlghs", "streak": 1 }, - { "login": "Jyothishree2k5", "streak": 1 }, - { "login": "ShudarsanRegmi", "streak": 1 }, - { "login": "priyanshi-codes", "streak": 1 }, - { "login": "subodhkangale07", "streak": 1 }, - { "login": "AnleaMJ", "streak": 1 }, - { "login": "itsaartii", "streak": 1 }, - { "login": "NagasaiPraneeth", "streak": 1 }, - { "login": "greeshma275", "streak": 1 }, - { "login": "adiiiii13", "streak": 1 }, - { "login": "shreyank-reddy", "streak": 1 }, - { "login": "VBhanusr", "streak": 1 }, - { "login": "it221291", "streak": 1 }, - { "login": "Kavyasrigopireddy", "streak": 1 }, - { "login": "PadmasreeSangani", "streak": 1 }, - { "login": "akulla007", "streak": 1 }, - { "login": "amrutha1215", "streak": 1 }, - { "login": "Ranj8521Kumar", "streak": 1 }, - { "login": "Samridha0305", "streak": 1 }, - { "login": "fah-04", "streak": 1 }, - { "login": "harshita2303", "streak": 1 }, - { "login": "Sridevi0321", "streak": 1 }, - { "login": "theritwik", "streak": 1 }, - { "login": "aniii09", "streak": 1 }, - { "login": "Sibangi-2911", "streak": 1 }, - { "login": "Prabh-84", "streak": 1 }, - { "login": "Varshitha713", "streak": 1 }, - { "login": "PiyushG29", "streak": 1 }, - { "login": "PayalKumari10", "streak": 1 }, - { "login": "Khushi-51", "streak": 1 }, - { "login": "krishaarya", "streak": 2 }, - { "login": "swati-204", "streak": 2 }, - { "login": "Adityazzzzz", "streak": 1 }, - { "login": "itsHarsh2", "streak": 2 }, - { "login": "Kshitijasharma", "streak": 2 }, - { "login": "dipeshkumar799", "streak": 1 }, - { "login": "puneet426", "streak": 1 }, - { "login": "dhruvveragiwala", "streak": 1 }, - { "login": "RitikaMaha", "streak": 1 }, - { "login": "Kratika-Solanki", "streak": 1 }, - { "login": "sanjanamb06", "streak": 1 }, - { "login": "Zubaida0113", "streak": 1 }, - { "login": "vermu490", "streak": 1 }, - { "login": "Susmita0202", "streak": 1 }, - { "login": "pranavbafna586", "streak": 1 }, - { "login": "PreetiTamana", "streak": 1 }, - { "login": "Durgeshwar-AI", "streak": 1 }, - { "login": "priyanshu5ingh", "streak": 2 }, - { "login": "Pragyaa3", "streak": 1 }, - { "login": "BhavikaPachauri", "streak": 1 }, - { "login": "TheUsefulNerd", "streak": 1 }, - { "login": "Dishaaa-T", "streak": 1 }, - { "login": "paramveer665", "streak": 1 }, - { "login": "P4R1H", "streak": 1 }, - { "login": "DevROHIT11", "streak": 2 }, - { "login": "Aayushibnsl", "streak": 2 }, - { "login": "AnuranjanJain", "streak": 1 }, - { "login": "vibhorgupta09", "streak": 2 }, - { "login": "simran0809", "streak": 1 }, - { "login": "BigBang001", "streak": 1 }, - { "login": "deepakcs2003", "streak": 1 }, - { "login": "ADURITEJA", "streak": 1 }, - { "login": "Gokul-MK", "streak": 1 }, - { "login": "Snehshishdutta", "streak": 2 }, - { "login": "sahare-mayur-0071", "streak": 1 }, - { "login": "Shantanu-Tiwari", "streak": 1 }, - { "login": "AryanMittal11", "streak": 1 }, - { "login": "darshinihoney", "streak": 1 }, - { "login": "DevStudyBug", "streak": 1 }, - { "login": "nihalawasthi", "streak": 1 }, - { "login": "harshpardeshi09", "streak": 1 }, - { "login": "lakshay2425", "streak": 1 }, - { "login": "hadifarousheen", "streak": 1 }, - { "login": "Boobeshkumar56", "streak": 1 }, - { "login": "Trumilnasit", "streak": 1 }, - { "login": "abhi9ab", "streak": 1 }, - { "login": "Rajput-xv", "streak": 1 }, - { "login": "ayushi2626", "streak": 1 }, - { "login": "Sefukamil20R", "streak": 1 }, - { "login": "121hemank", "streak": 1 }, - { "login": "HimanshuM685", "streak": 1 }, - { "login": "VahantSharma", "streak": 1 }, - { "login": "Rajata-Hegde", "streak": 1 }, - { "login": "Avidiptab17", "streak": 1 }, - { "login": "piyahub", "streak": 1 }, - { "login": "MansiJangid", "streak": 1 }, - { "login": "ArpitCS", "streak": 2 }, - { "login": "Niladitya-coder", "streak": 1 }, - { "login": "beRajeevKumar", "streak": 2 }, - { "login": "himanshu-sheetlani", "streak": 1 }, - { "login": "stutxi", "streak": 1 }, - { "login": "Darshan3690", "streak": 1 }, - { "login": "CGaneshKumar2002", "streak": 1 }, - { "login": "Dhruv-pahuja", "streak": 1 }, - { "login": "VihaShomikha", "streak": 1 }, - { "login": "khuushiie", "streak": 1 }, - { "login": "DevyanshiS", "streak": 1 }, - { "login": "ayyanshaikh1", "streak": 1 }, - { "login": "glodh21", "streak": 1 }, - { "login": "Richajaishwal0", "streak": 1 }, - { "login": "Su-creator-spec", "streak": 1 }, - { "login": "msv6264", "streak": 1 }, - { "login": "dipalichourasia", "streak": 1 }, - { "login": "koricherlasupriya", "streak": 1 }, - { "login": "bhat-shubham", "streak": 1 }, - { "login": "jhuma20", "streak": 1 }, - { "login": "pranawk", "streak": 1 }, - { "login": "amrutha-m206", "streak": 2 }, - { "login": "apoorvasj", "streak": 1 }, - { "login": "Vaish-011", "streak": 1 }, - { "login": "MKisKrazy", "streak": 1 }, - { "login": "PARVNEMA", "streak": 2 }, - { "login": "Pawnios", "streak": 2 }, - { "login": "kaabilcoder", "streak": 1 }, - { "login": "Priyanka-is-on-github", "streak": 1 }, - { "login": "CamruthaV", "streak": 1 }, - { "login": "Megh2005", "streak": 1 }, - { "login": "praneethaBrindavanam", "streak": 1 }, - { "login": "Lakshmi-Lahari", "streak": 1 }, - { "login": "Mohan-Murali-02", "streak": 1 }, - { "login": "M-A-SAIADITHYAA", "streak": 1 }, - { "login": "agupta451", "streak": 1 }, - { "login": "AbdulNasir05", "streak": 1 }, - { "login": "Idiv03", "streak": 1 }, - { "login": "zafar-Alee", "streak": 1 }, - { "login": "lakshyabajpai", "streak": 1 }, - { "login": "astronautgold", "streak": 1 }, - { "login": "AsthaSingh22-8", "streak": 1 }, - { "login": "RitikTiwari7379", "streak": 1 }, - { "login": "Abhilasha236", "streak": 1 }, - { "login": "ManiGaneshwari", "streak": 1 }, - { "login": "Hitesh-17h", "streak": 1 }, - { "login": "gits-up", "streak": 1 }, - { "login": "AyeshaShaikh-30", "streak": 1 }, - { "login": "IncharaIse", "streak": 1 }, - { "login": "MVarun5", "streak": 1 }, - { "login": "anshgupta-456", "streak": 1 }, - { "login": "AryaEjoumalai", "streak": 1 }, - { "login": "Debjoy26", "streak": 1 }, - { "login": "Akshatha9108", "streak": 1 }, - { "login": "AyushK0808", "streak": 1 }, - { "login": "Asmi1108", "streak": 1 }, - { "login": "UsamaGM", "streak": 1 }, - { "login": "cjyotshnareddy", "streak": 1 }, - { "login": "Ektachasta", "streak": 1 }, - { "login": "Praveen-koujalagi", "streak": 1 }, - { "login": "tejaswini29598", "streak": 1 }, - { "login": "Vkbansal90", "streak": 1 }, - { "login": "luckyxjx", "streak": 1 }, - { "login": "Atul14258", "streak": 1 }, - { "login": "umarsayed12", "streak": 1 }, - { "login": "01-aniket-maity", "streak": 1 }, - { "login": "priyanshuchawda", "streak": 1 }, - { "login": "piyusdev2006", "streak": 1 }, - { "login": "Afreen-2000", "streak": 1 }, - { "login": "DC104", "streak": 1 }, - { "login": "mansa04", "streak": 1 }, - { "login": "FarhanBijapur", "streak": 1 }, - { "login": "theadeshkumar03", "streak": 1 }, - { "login": "KratiMishra21", "streak": 1 }, - { "login": "divi-24", "streak": 1 }, - { "login": "Shubrat111204", "streak": 1 }, - { "login": "Pager-dot", "streak": 1 }, - { "login": "Raviraj73", "streak": 1 }, - { "login": "Sivanandinisaravanakumar", "streak": 1 }, - { "login": "absolutely-sharad", "streak": 1 }, - { "login": "ghanshyam2005singh", "streak": 1 }, - { "login": "Gaurav-3002", "streak": 1 }, - { "login": "sagarde7", "streak": 1 }, - { "login": "SuRak35", "streak": 1 }, - { "login": "PRAteek-singHWY", "streak": 1 }, - { "login": "Pratikpawar13", "streak": 1 }, - { "login": "2ushar03", "streak": 1 }, - { "login": "tusharg2210", "streak": 1 }, - { "login": "ayushfand", "streak": 1 }, - { "login": "devd-328", "streak": 1 }, - { "login": "Nayan2003", "streak": 1 }, - { "login": "ujjwalgupta2021", "streak": 1 }, - { "login": "anurag166", "streak": 1 }, - { "login": "menerucha", "streak": 1 }, - { "login": "donna2864", "streak": 1 }, - { "login": "FawazKhan1011", "streak": 1 }, - { "login": "HafsaIffath", "streak": 1 }, - { "login": "sujithachalla97", "streak": 1 }, - { "login": "Soumyadipgithub", "streak": 1 }, - { "login": "Scholarscribe", "streak": 1 }, - { "login": "RahZero0", "streak": 1 }, - { "login": "Ashmitha2606", "streak": 1 }, - { "login": "nikita2999", "streak": 1 }, - { "login": "Ramharsh-aidev", "streak": 1 }, - { "login": "dhruvjaink07", "streak": 1 }, - { "login": "Soumita-Nag", "streak": 1 }, - { "login": "SamPurna023", "streak": 1 }, - { "login": "WarlockSimon", "streak": 1 }, - { "login": "sanikadesai76", "streak": 1 }, - { "login": "KANISHKSHUKLA", "streak": 1 }, - { "login": "RushikeshShelar", "streak": 1 }, - { "login": "abhishek-217", "streak": 1 }, - { "login": "VanshKirtishahi", "streak": 1 }, - { "login": "david-one8", "streak": 1 }, - { "login": "Wasif0787", "streak": 1 }, - { "login": "hardattmangrola", "streak": 1 }, - { "login": "Ayanshaikh313", "streak": 1 }, - { "login": "Shree4226", "streak": 1 }, - { "login": "Biswajit0972", "streak": 1 }, - { "login": "Mallik-vinukonda", "streak": 1 }, - { "login": "mdaiyaz940", "streak": 1 }, - { "login": "SatyaSantosh11", "streak": 1 }, - { "login": "am-nimrah", "streak": 1 }, - { "login": "prabhatyadav4", "streak": 1 }, - { "login": "Prajakta1926", "streak": 1 }, - { "login": "prince2404", "streak": 1 }, - { "login": "falak412", "streak": 1 }, - { "login": "Jeffrin2005", "streak": 1 }, - { "login": "saurabh007007", "streak": 1 }, - { "login": "valay30", "streak": 1 }, - { "login": "harshitajain31", "streak": 1 }, - { "login": "SrushtiBhujade", "streak": 1 }, - { "login": "sarvo123", "streak": 1 }, - { "login": "vishishtkapoor", "streak": 1 }, - { "login": "imsudiptaa", "streak": 1 }, - { "login": "samiha-akter", "streak": 1 }, - { "login": "AR2706", "streak": 1 }, - { "login": "Rohitkumar0056", "streak": 1 }, - { "login": "Mohd-Farhan-Khan", "streak": 1 }, - { "login": "Shruti-Gorhe", "streak": 1 }, - { "login": "Manas0204", "streak": 1 }, - { "login": "Tejas-Santosh-Nalawade", "streak": 1 }, - { "login": "harshshukla06", "streak": 1 }, - { "login": "mousamighosh216", "streak": 1 }, - { "login": "muskiagrwal", "streak": 1 }, - { "login": "ashutoshak5386", "streak": 1 }, - { "login": "Arun0A", "streak": 1 }, - { "login": "anu098jaiswal", "streak": 1 }, - { "login": "Athirakadavath", "streak": 1 }, - { "login": "SUMITXP10", "streak": 1 }, - { "login": "akshatkh18", "streak": 1 }, - { "login": "Shabbir5152", "streak": 1 }, - { "login": "ambitiouswithayush", "streak": 1 }, - { "login": "vvikassh", "streak": 1 }, - { "login": "SrihasRC", "streak": 1 }, - { "login": "AaryanPuri", "streak": 1 }, - { "login": "subhforcode", "streak": 1 }, - { "login": "Amulya-Codes", "streak": 1 }, - { "login": "rooteduser", "streak": 1 }, - { "login": "chandrasekhar-cherukuru", "streak": 1 }, - { "login": "Divya4879", "streak": 1 }, - { "login": "firozkhan4", "streak": 1 }, - { "login": "Rajshree-24", "streak": 1 }, - { "login": "Madhushree-2026", "streak": 1 }, - { "login": "badmuffin", "streak": 1 }, - { "login": "arorasneha08", "streak": 1 }, - { "login": "NishthaAgrawal26", "streak": 1 }, - { "login": "DishaMaity", "streak": 1 }, - { "login": "SaiSiriChandana", "streak": 1 }, - { "login": "Yashwanthreddy1789", "streak": 1 }, - { "login": "pasamyagnesh", "streak": 1 }, - { "login": "NidaSyeda", "streak": 1 }, - { "login": "tanu91112", "streak": 1 }, - { "login": "ShaliniKashyap717", "streak": 1 }, - { "login": "Jyotisingh-21", "streak": 1 }, - { "login": "Codewithezayush", "streak": 1 }, - { "login": "Ayush-23479", "streak": 1 }, - { "login": "DIVYAKRISHNASATYASRI", "streak": 1 }, - { "login": "Madhurbhatia01", "streak": 1 }, - { "login": "Purnendu5804", "streak": 1 }, - { "login": "akshat-2600", "streak": 1 }, - { "login": "harshita1362", "streak": 1 }, - { "login": "poojapatil34", "streak": 1 }, - { "login": "VarshniThiyagarajan", "streak": 1 }, - { "login": "pinakviramgama", "streak": 1 }, - { "login": "kaifprodeveloper", "streak": 1 }, - { "login": "gungun04", "streak": 1 }, - { "login": "kritzxd8", "streak": 1 }, - { "login": "Arunkoo", "streak": 1 }, - { "login": "Githubak2002", "streak": 1 }, - { "login": "armycodes", "streak": 1 }, - { "login": "SyntaxNova", "streak": 1 }, - { "login": "Ashish-kharde1", "streak": 2 }, - { "login": "sharmeen17", "streak": 1 }, - { "login": "Sravani-c1", "streak": 1 }, - { "login": "umadevi00", "streak": 1 }, - { "login": "JITESH-KUMAR05", "streak": 1 }, - { "login": "ashishgujjar755g", "streak": 1 }, - { "login": "Atharva150", "streak": 1 }, - { "login": "gitarshmah", "streak": 1 }, - { "login": "sanjay-kv", "streak": 1 }, - { "login": "maliumesh1", "streak": 1 }, - { "login": "Mmadan128", "streak": 1 }, - { "login": "pbharati15", "streak": 1 }, - { "login": "Ritwakar", "streak": 1 }, - { "login": "Shashankckotagi", "streak": 1 }, - { "login": "Mahadevprasad-DL", "streak": 1 }, - { "login": "alankrit98", "streak": 1 }, - { "login": "harika12b8", "streak": 1 }, - { "login": "KASHISH17RAMANI", "streak": 1 }, - { "login": "DineshK3012", "streak": 1 }, - { "login": "VinikDhariwal", "streak": 1 }, - { "login": "TarunaAgrawal13", "streak": 1 }, - { "login": "debugger-rana", "streak": 1 }, - { "login": "airajfatima", "streak": 1 }, - { "login": "Arushi28-hub", "streak": 1 }, - { "login": "Shivamupadhyay09", "streak": 1 }, - { "login": "CodewithAsh10", "streak": 1 }, - { "login": "Chaitali1105", "streak": 1 }, - { "login": "sahi19484", "streak": 1 }, - { "login": "juniorcoder02", "streak": 1 }, - { "login": "Aaryan-Sharma-5", "streak": 1 }, - { "login": "namitha-27", "streak": 1 }, - { "login": "princerxj", "streak": 1 }, - { "login": "geediginjalaankitha", "streak": 1 }, - { "login": "Satvik-Sharma511", "streak": 1 }, - { "login": "raghzzzspace", "streak": 1 }, - { "login": "AnotherOnlineUser", "streak": 1 }, - { "login": "Tejasri-B9", "streak": 1 }, - { "login": "Savvythelegend", "streak": 1 }, - { "login": "eternal-casuist", "streak": 1 }, - { "login": "vinitk1509", "streak": 1 }, - { "login": "pranavi2", "streak": 1 }, - { "login": "rohit-debnath24", "streak": 1 }, - { "login": "prathamhanda", "streak": 1 }, - { "login": "29akeshvimt", "streak": 1 }, - { "login": "BDutta18", "streak": 1 }, - { "login": "Tanav21", "streak": 1 }, - { "login": "KrishnaPriyaKanduri", "streak": 1 }, - { "login": "N-PCs", "streak": 1 }, - { "login": "Sneharatnakaram", "streak": 1 }, - { "login": "SamXop123", "streak": 1 }, - { "login": "Himanshu-Ahirwar", "streak": 1 }, - { "login": "prakhar1304", "streak": 1 }, - { "login": "prachhii31", "streak": 1 }, - { "login": "anu2126", "streak": 1 }, - { "login": "sahil-luthra-000", "streak": 1 }, - { "login": "jeevan10017", "streak": 1 }, - { "login": "harsh7274v", "streak": 1 }, - { "login": "guruashish-dev", "streak": 1 }, - { "login": "Aman8471", "streak": 1 }, - { "login": "karthikeyan-v-max", "streak": 1 }, - { "login": "G-DURGANJALI", "streak": 1 }, - { "login": "karn-cyber", "streak": 1 }, - { "login": "AJ-AYUSHMAN", "streak": 1 }, - { "login": "AmulyaJain2004", "streak": 1 }, - { "login": "LekkalaPoojitha", "streak": 1 }, - { "login": "shrirakshapoojary", "streak": 1 }, - { "login": "akshayansg", "streak": 1 }, - { "login": "NANDAGOPALNG", "streak": 1 }, - { "login": "ramakandivalasa", "streak": 1 }, - { "login": "CodeWithSatyaPrakash", "streak": 1 }, - { "login": "SahilMalavi", "streak": 1 }, - { "login": "rohiths08", "streak": 1 }, - { "login": "Ashism766", "streak": 1 }, - { "login": "Anitha-3", "streak": 1 }, - { "login": "prathamesh424", "streak": 1 }, - { "login": "Supraja-Gao", "streak": 1 }, - { "login": "manastiwari99", "streak": 1 }, - { "login": "Slsowmya12", "streak": 1 }, - { "login": "Maheshwari-Love", "streak": 1 }, - { "login": "shivamyadavrgipt", "streak": 1 }, - { "login": "rebel1321", "streak": 1 }, - { "login": "zahramaryam09", "streak": 1 }, - { "login": "priyanshu-guptaji", "streak": 1 }, - { "login": "Venkat-737", "streak": 1 }, - { "login": "SSrushti-s", "streak": 1 }, - { "login": "sadique-2004", "streak": 1 }, - { "login": "lirena00", "streak": 1 }, - { "login": "2004shweta", "streak": 1 }, - { "login": "AgarwalSneh", "streak": 1 }, - { "login": "Jomon-J", "streak": 1 }, - { "login": "vikingmanas", "streak": 1 }, - { "login": "Dipika005", "streak": 1 }, - { "login": "Aditya-PS-05", "streak": 1 }, - { "login": "aravraj147", "streak": 1 }, - { "login": "AryanGupta001", "streak": 1 }, - { "login": "pranavc13", "streak": 1 }, - { "login": "MeenakshiPramod", "streak": 1 }, - { "login": "SupriyaGo", "streak": 1 }, - { "login": "Shrutika006", "streak": 1 }, - { "login": "jyotsnakaruturi", "streak": 1 }, - { "login": "Yuktanemade", "streak": 1 }, - { "login": "KashishSinghania", "streak": 1 }, - { "login": "YashiGarg016", "streak": 1 }, - { "login": "SheetalEdu", "streak": 1 }, - { "login": "Aditiiii-pathak", "streak": 1 }, - { "login": "adityamanapure", "streak": 1 }, - { "login": "27-MANISH", "streak": 1 }, - { "login": "Yashu04", "streak": 1 }, - { "login": "Madhusudan2005", "streak": 1 }, - { "login": "Sumantrini48", "streak": 1 }, - { "login": "Shaanif600", "streak": 1 }, - { "login": "i-shivii", "streak": 1 }, - { "login": "19wh1a05a6", "streak": 1 }, - { "login": "Piyush01-672", "streak": 1 }, - { "login": "auraCodesKM", "streak": 1 }, - { "login": "AnweshaBhattacharjee7", "streak": 1 }, - { "login": "aryy8", "streak": 1 }, - { "login": "rajnish032", "streak": 1 }, - { "login": "satyam0827", "streak": 1 }, - { "login": "Areeb-Ak", "streak": 1 }, - { "login": "ahasunos", "streak": 1 }, - { "login": "Payel647", "streak": 1 }, - { "login": "Daksh-Aggarwal", "streak": 1 }, - { "login": "calmdownpari", "streak": 1 }, - { "login": "Lahu19", "streak": 1 }, - { "login": "Aditya620321", "streak": 1 }, - { "login": "jadhavsunny23", "streak": 1 }, - { "login": "Deshmukh-Ayush", "streak": 1 }, - { "login": "kushal34712", "streak": 1 }, - { "login": "Khushi-Mahato", "streak": 1 }, - { "login": "PalankiMeghana", "streak": 1 }, - { "login": "Sohini-Ghosh2004", "streak": 1 }, - { "login": "leepakshi22", "streak": 1 }, - { "login": "tanushac", "streak": 1 }, - { "login": "Ariesjeev", "streak": 1 }, - { "login": "Spandeeee", "streak": 1 }, - { "login": "SHRINIVAS-05", "streak": 1 }, - { "login": "Garv2079", "streak": 1 }, - { "login": "AkCode2005", "streak": 1 }, - { "login": "AnkurRam2002", "streak": 1 }, - { "login": "Vignesh025", "streak": 1 }, - { "login": "tsujit74", "streak": 1 }, - { "login": "KATTAMANASWINIREDDY", "streak": 1 }, - { "login": "DINES-04", "streak": 1 }, - { "login": "AkshayNagamalla", "streak": 1 }, - { "login": "krishashah-03", "streak": 1 }, - { "login": "tanv000", "streak": 1 }, - { "login": "Sayan-dev731", "streak": 1 }, - { "login": "param-code", "streak": 1 }, - { "login": "Prashant7pathak", "streak": 1 }, - { "login": "Sudhanshutiwari-cs", "streak": 1 }, - { "login": "AMRUTHA-BYSANI", "streak": 2 }, - { "login": "Sushil2k4", "streak": 1 }, - { "login": "SHRINIVAS-BAKKI", "streak": 1 }, - { "login": "Deeksha-S-J", "streak": 1 }, - { "login": "aahanajena", "streak": 1 }, - { "login": "shubham21881", "streak": 1 }, - { "login": "TulasiPrasad-25", "streak": 1 }, - { "login": "utkarshagarwal03", "streak": 1 }, - { "login": "Ayesha480", "streak": 1 }, - { "login": "Deepanjali01", "streak": 1 }, - { "login": "shreyp135", "streak": 1 }, - { "login": "RAMIREDDYGAYATHRI02", "streak": 1 }, - { "login": "HasiniChekuri", "streak": 1 }, - { "login": "VIROHuman", "streak": 1 }, - { "login": "Sahoobarsharani", "streak": 1 }, - { "login": "Abhi-GX", "streak": 1 }, - { "login": "Uruz-fazar", "streak": 1 }, - { "login": "Harish2908-bot", "streak": 1 }, - { "login": "shnhdan", "streak": 1 }, - { "login": "ChathuraHasanga44", "streak": 1 }, - { "login": "Arshadkh123", "streak": 1 }, - { "login": "faeez004", "streak": 1 }, - { "login": "Sargammaurya", "streak": 1 }, - { "login": "lakshyagrg23", "streak": 1 }, - { "login": "VinodKumarN1", "streak": 1 }, - { "login": "SiddharthPaladi", "streak": 1 }, - { "login": "supriya46788", "streak": 1 }, - { "login": "kom-senapati", "streak": 1 }, - { "login": "charan2r", "streak": 1 }, - { "login": "Shagufta019", "streak": 1 }, - { "login": "Rahulthakur9124", "streak": 1 }, - { "login": "bg-sumu", "streak": 1 }, - { "login": "dev-anannya", "streak": 1 }, - { "login": "anuoshkasingh", "streak": 1 }, - { "login": "AakashGujar", "streak": 1 }, - { "login": "SouravUpadhyay7", "streak": 1 }, - { "login": "Dhruvi-tech", "streak": 1 }, - { "login": "falakniyaz94", "streak": 1 }, - { "login": "mdhaarishussain", "streak": 1 }, - { "login": "Shivendu-kr", "streak": 1 }, - { "login": "pranay-bhatkar", "streak": 1 }, - { "login": "Sinch25", "streak": 1 }, - { "login": "m-tabish", "streak": 1 }, - { "login": "aditya-Pratap15", "streak": 1 }, - { "login": "chiranthanHY", "streak": 1 }, - { "login": "Gokulan-SK", "streak": 1 }, - { "login": "Aaryafalle", "streak": 1 }, - { "login": "kumarshubhh", "streak": 1 }, - { "login": "Sharibraza", "streak": 1 }, - { "login": "SaranshBangar", "streak": 1 }, - { "login": "Simran0030", "streak": 1 }, - { "login": "SahilSingh1404", "streak": 1 }, - { "login": "Krishi1211", "streak": 1 }, - { "login": "Mohit5Upadhyay", "streak": 1 }, - { "login": "abi-commits", "streak": 1 }, - { "login": "deepeshsaraswat", "streak": 1 }, - { "login": "arnishbaruah", "streak": 1 }, - { "login": "shubham-sutar", "streak": 1 }, - { "login": "JahnaviDhanaSri", "streak": 1 }, - { "login": "abhishekpm15", "streak": 1 }, - { "login": "Anushka040604", "streak": 1 }, - { "login": "Harsh-Gadhavi", "streak": 1 }, - { "login": "ahmedrazabaloch", "streak": 1 }, - { "login": "Harshvishw", "streak": 1 }, - { "login": "moeedrafi", "streak": 1 }, - { "login": "Priyatosh11", "streak": 1 }, - { "login": "David4988", "streak": 1 }, - { "login": "sanyuthem", "streak": 1 }, - { "login": "itsAakashz", "streak": 1 }, - { "login": "AryanR14", "streak": 1 }, - { "login": "riku-d", "streak": 1 }, - { "login": "muhammadabdullah118", "streak": 1 }, - { "login": "PreetySinha84", "streak": 1 }, - { "login": "Arrival692", "streak": 1 }, - { "login": "shikha11D", "streak": 1 }, - { "login": "Starwars24-7", "streak": 1 }, - { "login": "nidhi2026", "streak": 1 }, - { "login": "monishkumardvs", "streak": 2 }, - { "login": "rishyym0927", "streak": 2 }, - { "login": "tejasbenibagde", "streak": 1 }, - { "login": "pavitraag", "streak": 6 }, - { "login": "AnanteshG", "streak": 1 }, - { "login": "sriraghavi22", "streak": 1 }, - { "login": "ArchanRD", "streak": 1 }, - { "login": "Rizvi-Faiz", "streak": 3 }, - { "login": "dnyanesh99borse", "streak": 2 }, - { "login": "lade6501", "streak": 1 }, - { "login": "NIKITABARANWAL890", "streak": 3 }, - { "login": "Ishika-Gupta06", "streak": 1 }, - { "login": "CodewithAnn", "streak": 1 }, - { "login": "srishti023", "streak": 1 }, - { "login": "LitZeus", "streak": 1 }, - { "login": "Nikhil0-3", "streak": 3 }, - { "login": "deepanshubaghel", "streak": 2 }, - { "login": "poorvikaa08", "streak": 1 }, - { "login": "sejals23", "streak": 1 }, - { "login": "riyaaryan2004", "streak": 1 }, - { "login": "YooAshu", "streak": 7 }, - { "login": "praveenarjun", "streak": 10 }, - { "login": "akhulisumit", "streak": 4 }, - { "login": "ark0078", "streak": 1 }, - { "login": "sharayuanuse", "streak": 1 }, - { "login": "Tamanna225", "streak": 1 }, - { "login": "Nikhil-Banthia", "streak": 3 }, - { "login": "BhairabMahanta", "streak": 1 }, - { "login": "deepeshmlgupta", "streak": 2 }, - { "login": "Jisha-tr", "streak": 1 }, - { "login": "rajatsinghal02", "streak": 1 }, - { "login": "saloni8780", "streak": 2 }, - { "login": "saurabh-dev-vns", "streak": 1 }, - { "login": "KhawajaFashi", "streak": 1 }, - { "login": "devanshar", "streak": 1 }, - { "login": "Rahul-AkaVector", "streak": 1 }, - { "login": "rashmibarodiya", "streak": 1 }, - { "login": "Vishwajeet594", "streak": 1 }, - { "login": "09viv", "streak": 3 }, - { "login": "CogitoKunal", "streak": 1 }, - { "login": "aviralgarg05", "streak": 2 }, - { "login": "ArpitaAgrahari", "streak": 1 }, - { "login": "swaramaitre", "streak": 1 }, - { "login": "muskan171105", "streak": 5 }, - { "login": "Aayush2308", "streak": 1 }, - { "login": "MithanshuHedau", "streak": 1 }, - { "login": "Lonewolf124", "streak": 1 }, - { "login": "abhi200446", "streak": 1 }, - { "login": "770navyasharma", "streak": 1 }, - { "login": "AnujSaha0111", "streak": 1 }, - { "login": "anubhavvsharma", "streak": 1 }, - { "login": "adityakalburgi", "streak": 1 }, - { "login": "Shreyansh1563", "streak": 1 }, - { "login": "Deepak0yadav", "streak": 1 }, - { "login": "Lekkhasri", "streak": 2 }, - { "login": "DiwareNamrata23", "streak": 1 }, - { "login": "Anjalis14", "streak": 1 }, - { "login": "Hh440", "streak": 1 }, - { "login": "BhavaniSankar0107", "streak": 1 }, - { "login": "AnushkaS77", "streak": 2 }, - { "login": "Ketanop321", "streak": 1 }, - { "login": "abhishekpanthee", "streak": 1 }, - { "login": "shalini-bhandari", "streak": 1 }, - { "login": "sakshamsaraf23", "streak": 3 }, - { "login": "sarinsanyal", "streak": 2 }, - { "login": "Vaishh18", "streak": 1 }, - { "login": "may-tas", "streak": 1 }, - { "login": "amitroy-thedev", "streak": 1 }, - { "login": "SCR01", "streak": 4 }, - { "login": "Anamika-garg", "streak": 2 }, - { "login": "Pranshu-jais", "streak": 1 }, - { "login": "Swetabh333", "streak": 1 }, - { "login": "Darkeye14", "streak": 2 }, - { "login": "the-anjali-13", "streak": 1 }, - { "login": "LifeHashed", "streak": 2 }, - { "login": "singhtrivendra", "streak": 8 }, - { "login": "Dev-Rishav", "streak": 1 }, - { "login": "avogadroB", "streak": 1 }, - { "login": "ragini-gp", "streak": 1 }, - { "login": "vivekrawat21", "streak": 1 }, - { "login": "Mayank202004", "streak": 1 }, - { "login": "PrayanshParmar", "streak": 1 }, - { "login": "Aryam2121", "streak": 1 }, - { "login": "RahulPrasadYadav", "streak": 1 }, - { "login": "jaison-jai-john", "streak": 1 }, - { "login": "MudadlaYogitha", "streak": 2 }, - { "login": "Codewithmeowmeow", "streak": 1 }, - { "login": "Vishisht16", "streak": 1 }, - { "login": "shreya5653", "streak": 1 }, - { "login": "jitendra-ky", "streak": 2 }, - { "login": "itskundanhere", "streak": 1 }, - { "login": "PatelHarsh2006", "streak": 1 }, - { "login": "vashujoshi", "streak": 1 }, - { "login": "wizaye", "streak": 4 }, - { "login": "shrehs", "streak": 1 }, - { "login": "iamsaura8h", "streak": 1 }, - { "login": "unknown91tech", "streak": 1 }, - { "login": "rupeshv2121", "streak": 1 }, - { "login": "Mahateaa", "streak": 2 }, - { "login": "toshankanwar", "streak": 2 }, - { "login": "ngsanthosh", "streak": 1 }, - { "login": "Kushagra614", "streak": 1 }, - { "login": "Mdraza78", "streak": 1 }, - { "login": "justynigam", "streak": 2 }, - { "login": "AmanSingh494", "streak": 1 }, - { "login": "SurajSakhare100", "streak": 4 }, - { "login": "AsmitaMishra24", "streak": 1 }, - { "login": "Nimit1775", "streak": 3 }, - { "login": "13Sharad", "streak": 1 }, - { "login": "murtaza-sadri-19", "streak": 4 }, - { "login": "thejatingupta7", "streak": 1 }, - { "login": "itsadi-24", "streak": 2 }, - { "login": "Lighting-pixel", "streak": 3 }, - { "login": "c4dr-me", "streak": 2 }, - { "login": "Dyfintie", "streak": 2 }, - { "login": "ChauhanAyush04", "streak": 2 }, - { "login": "abhisek2004", "streak": 1 }, - { "login": "simmi-verma", "streak": 2 }, - { "login": "Slambot01", "streak": 1 }, - { "login": "spandana2004", "streak": 2 }, - { "login": "pratikwayal01", "streak": 1 }, - { "login": "RIYA1001", "streak": 2 }, - { "login": "Charul00", "streak": 3 }, - { "login": "RishiVT2004", "streak": 1 }, - { "login": "akashlogics", "streak": 1 }, - { "login": "Somnath-Chattaraj", "streak": 1 }, - { "login": "SunkaraboinaPraveenKumar", "streak": 1 }, - { "login": "vaibhav-yerkar", "streak": 1 }, - { "login": "Varchasavkr", "streak": 3 }, - { "login": "AskitEndo", "streak": 1 }, - { "login": "chikatlarakesh", "streak": 1 }, - { "login": "Kavish-Paraswar", "streak": 1 }, - { "login": "vaishnavipal1869", "streak": 1 }, - { "login": "tanish35", "streak": 1 }, - { "login": "iamendless10", "streak": 1 }, - { "login": "bhavya2021245", "streak": 1 }, - { "login": "AmanKumar1115", "streak": 1 }, - { "login": "Himanshi-m", "streak": 3 }, - { "login": "ananyakaligal", "streak": 1 }, - { "login": "anishka25", "streak": 2 }, - { "login": "shreya2k3", "streak": 6 }, - { "login": "Ashwinib26", "streak": 2 }, - { "login": "Ayan-Khan79", "streak": 1 }, - { "login": "anuj123upadhyay", "streak": 1 }, - { "login": "clownfish1805", "streak": 3 }, - { "login": "rithvikreddybasani", "streak": 1 }, - { "login": "Shirisha-16", "streak": 1 }, - { "login": "Hustler004", "streak": 2 }, - { "login": "RaiDevX8", "streak": 1 }, - { "login": "rakheshkrishna2005", "streak": 1 }, - { "login": "NikhilJ2005", "streak": 1 }, - { "login": "deca109", "streak": 1 }, - { "login": "Manish5043", "streak": 1 }, - { "login": "tohit09Fst", "streak": 2 }, - { "login": "Vatsal-Verma", "streak": 2 }, - { "login": "rimmon1234", "streak": 1 }, - { "login": "itsbhh", "streak": 4 }, - { "login": "ShradhaSaxena23", "streak": 1 }, - { "login": "Prakhar29Sharma", "streak": 1 }, - { "login": "amankumarcu", "streak": 3 }, - { "login": "Dsmita03", "streak": 1 }, - { "login": "Bhumika-00", "streak": 2 }, - { "login": "RchtDshr", "streak": 1 }, - { "login": "HeartTick", "streak": 1 }, - { "login": "sushil-sagar05", "streak": 1 }, - { "login": "Dipeshdahiya", "streak": 2 }, - { "login": "HemantBatra873", "streak": 1 }, - { "login": "Prathameshzad", "streak": 3 }, - { "login": "Hamza20203064", "streak": 1 }, - { "login": "BhavyaFattania", "streak": 1 }, - { "login": "MonilMehta", "streak": 3 }, - { "login": "hritika2409", "streak": 1 }, - { "login": "SRV30", "streak": 1 }, - { "login": "ParulPrashar", "streak": 1 }, - { "login": "lavitratyagi1", "streak": 1 }, - { "login": "ezsarthak", "streak": 2 }, - { "login": "Veda273", "streak": 1 }, - { "login": "MimanshaKaur", "streak": 1 }, - { "login": "Prabhav444", "streak": 2 }, - { "login": "TornovDutta", "streak": 1 }, - { "login": "Someshog", "streak": 1 }, - { "login": "Vishv0407", "streak": 3 }, - { "login": "Pranjalsinha110", "streak": 1 }, - { "login": "amanreddy77", "streak": 1 }, - { "login": "MohdAftab011", "streak": 1 }, - { "login": "Aasthajiit", "streak": 2 }, - { "login": "Aryan-9488", "streak": 1 }, - { "login": "PraveenUppar", "streak": 1 }, - { "login": "Raja-Abrar-Khan", "streak": 3 }, - { "login": "grasyPatel", "streak": 1 }, - { "login": "Sumanbhadra", "streak": 1 }, - { "login": "Ganeshmoorthii", "streak": 3 }, - { "login": "pranavvb03", "streak": 1 }, - { "login": "Sai-ganesh-0004", "streak": 1 }, - { "login": "Sureshwebdeveloper", "streak": 1 }, - { "login": "pc-daukiya", "streak": 2 }, - { "login": "multiverseweb", "streak": 2 }, - { "login": "AdarshThakare", "streak": 3 }, - { "login": "aryadevesh", "streak": 1 }, - { "login": "Kevindua26", "streak": 3 }, - { "login": "Codersweta7", "streak": 1 }, - { "login": "RahulScripted", "streak": 2 }, - { "login": "jayanththalla", "streak": 1 }, - { "login": "punishermortal", "streak": 2 }, - { "login": "AdityaP700", "streak": 1 }, - { "login": "Yash-Vashishth", "streak": 1 }, - { "login": "Mahima-2404", "streak": 1 }, - { "login": "gurramkarthiknetha", "streak": 2 }, - { "login": "kekubhai", "streak": 1 }, - { "login": "Ishika-Singhal", "streak": 2 }, - { "login": "ojhankit", "streak": 2 }, - { "login": "Sneha22072005", "streak": 2 }, - { "login": "Nandini-13", "streak": 1 }, - { "login": "saurabhsagar99", "streak": 1 }, - { "login": "A-Akhil", "streak": 1 }, - { "login": "Itachii27", "streak": 3 }, - { "login": "2004vivek", "streak": 1 }, - { "login": "tharagaramanbalaji", "streak": 1 }, - { "login": "RAJIV81205", "streak": 1 }, - { "login": "ishita-1305", "streak": 2 }, - { "login": "kRajoria121", "streak": 1 }, - { "login": "bhaviya18", "streak": 1 }, - { "login": "raj-adi00", "streak": 1 }, - { "login": "riddhij0804", "streak": 2 }, - { "login": "subhajitrath3", "streak": 1 }, - { "login": "shreya20v", "streak": 1 }, - { "login": "satyasootar", "streak": 1 }, - { "login": "nishtha-902", "streak": 1 }, - { "login": "roushan-code", "streak": 1 }, - { "login": "aditiverma18", "streak": 2 }, - { "login": "HarshadaGirase", "streak": 2 }, - { "login": "Arveti-likhitha", "streak": 1 }, - { "login": "Nitheesha33", "streak": 1 }, - { "login": "vastavikadi", "streak": 1 }, - { "login": "Prajyot05", "streak": 1 }, - { "login": "Shreya-Pandey-01", "streak": 1 }, - { "login": "DipanwitSen", "streak": 1 }, - { "login": "priyanka350", "streak": 4 }, - { "login": "anchalchaturvedi08", "streak": 1 }, - { "login": "htanmo", "streak": 1 }, - { "login": "itsmeAYUSH", "streak": 2 }, - { "login": "SwanandD121", "streak": 1 }, - { "login": "kcjod", "streak": 1 }, - { "login": "Sapta-Dev27", "streak": 3 }, - { "login": "iking07", "streak": 1 }, - { "login": "komal-agarwal5", "streak": 1 }, - { "login": "heizshubham", "streak": 1 }, - { "login": "Adityadhiman0", "streak": 1 }, - { "login": "tanmaysrivastava45", "streak": 2 }, - { "login": "G-Rajashekar", "streak": 1 }, - { "login": "SrishtiChamoli", "streak": 1 }, - { "login": "Pradyuman554", "streak": 2 }, - { "login": "PDGamerSG", "streak": 1 }, - { "login": "PriyanshuValiya", "streak": 2 }, - { "login": "aasiflm10", "streak": 1 }, - { "login": "akshay0712-dev", "streak": 1 }, - { "login": "ayush-848", "streak": 1 }, - { "login": "anuragbansall", "streak": 1 }, - { "login": "Aiu26", "streak": 2 }, - { "login": "Deepika14145", "streak": 1 }, - { "login": "prasoonk1204", "streak": 1 }, - { "login": "vishnuprasad2004", "streak": 1 }, - { "login": "AasthaSingh28", "streak": 2 }, - { "login": "narendra-dhangar", "streak": 1 }, - { "login": "Ash182004", "streak": 1 }, - { "login": "shashankgoud18", "streak": 1 }, - { "login": "Shweta-1902", "streak": 1 }, - { "login": "priyaahm", "streak": 1 }, - { "login": "Sarthakkashyapp", "streak": 2 }, - { "login": "yours7himanshu", "streak": 2 }, - { "login": "ak3264114", "streak": 1 }, - { "login": "Ishratnoori", "streak": 1 }, - { "login": "saurabhvybs", "streak": 3 }, - { "login": "likitha-kapu", "streak": 1 }, - { "login": "Rohit131313", "streak": 3 }, - { "login": "iamsohelx", "streak": 3 }, - { "login": "shaina123786", "streak": 1 }, - { "login": "salonijoshi1980", "streak": 3 }, - { "login": "Dinkar850", "streak": 1 }, - { "login": "Kuldeepsinghrajpoot", "streak": 1 }, - { "login": "Monu2114", "streak": 1 }, - { "login": "EfrataAron", "streak": 1 }, - { "login": "geetanjalidubey9", "streak": 1 }, - { "login": "skanarul8002", "streak": 1 }, - { "login": "IshaRawat7", "streak": 1 }, - { "login": "CoderFleet", "streak": 1 }, - { "login": "STSonyThomas", "streak": 1 }, - { "login": "BhaktiMore18", "streak": 1 }, - { "login": "karthik-kiran-29", "streak": 1 }, - { "login": "sarthaxtic", "streak": 3 }, - { "login": "Shantnu-singh", "streak": 3 }, - { "login": "krishpathak", "streak": 1 }, - { "login": "sania-2912", "streak": 3 }, - { "login": "Poushmita", "streak": 3 }, - { "login": "shreyabajaj12", "streak": 4 }, - { "login": "jayashisbarua", "streak": 1 }, - { "login": "1ShahidBashir", "streak": 1 }, - { "login": "MadhavDhatrak", "streak": 1 }, - { "login": "komalnalage", "streak": 1 }, - { "login": "t1nt1n-s0lv3r", "streak": 3 }, - { "login": "sandeepmaddheshiya", "streak": 2 }, - { "login": "ambarmishraa", "streak": 3 }, - { "login": "Sadab-Hussain", "streak": 2 }, - { "login": "Prudhvi-232", "streak": 1 }, - { "login": "manya1632", "streak": 2 }, - { "login": "PankajKumardev", "streak": 2 }, - { "login": "Anuj3553", "streak": 2 }, - { "login": "ShirshenduR", "streak": 2 }, - { "login": "kushal7201", "streak": 1 }, - { "login": "Shreyaa173", "streak": 1 }, - { "login": "anushkajjadhav", "streak": 2 }, - { "login": "CodexRaunak", "streak": 1 }, - { "login": "Talha-ai", "streak": 1 }, - { "login": "Akash-Gupta-git", "streak": 2 }, - { "login": "abir499-ban", "streak": 1 }, - { "login": "meetarora10", "streak": 2 }, - { "login": "Rishikagoyal", "streak": 1 }, - { "login": "nishakp3005", "streak": 2 }, - { "login": "PavaniKudulla", "streak": 1 }, - { "login": "1-SubhamSingh", "streak": 1 }, - { "login": "akshitbansal2005", "streak": 3 }, - { "login": "Dhruv-Gaba", "streak": 1 }, - { "login": "Gamerking177", "streak": 1 }, - { "login": "Karthik3904", "streak": 3 }, - { "login": "Charvi-14", "streak": 1 }, - { "login": "Jazz-45", "streak": 1 }, - { "login": "SatyaJaiss", "streak": 1 }, - { "login": "akhandpratap18", "streak": 1 }, - { "login": "Raj-Aditya-27", "streak": 1 }, - { "login": "aniketraut16", "streak": 1 }, - { "login": "Raj-Ganatra", "streak": 2 }, - { "login": "SATYAM0LUFFY", "streak": 1 }, - { "login": "SalehaTabassum", "streak": 1 }, - { "login": "Anju-Narnolia", "streak": 1 }, - { "login": "rounakdey6", "streak": 2 }, - { "login": "VivekShahare04", "streak": 1 }, - { "login": "Amit-10101", "streak": 1 }, - { "login": "KumarAmrendram", "streak": 1 }, - { "login": "venkat-2811", "streak": 1 }, - { "login": "damarudhvarma", "streak": 1 }, - { "login": "maniranjan2023", "streak": 1 }, - { "login": "mawalou14", "streak": 1 }, - { "login": "Crimson-Typhoon-147", "streak": 1 }, - { "login": "AnishaDevi", "streak": 1 }, - { "login": "gouravi19", "streak": 1 }, - { "login": "muhafiz5814", "streak": 1 }, - { "login": "Ojas-Arora", "streak": 1 }, - { "login": "RabdeepKaur", "streak": 1 }, - { "login": "adityas1309", "streak": 2 }, - { "login": "MrunalKashid02", "streak": 1 }, - { "login": "ritik6559", "streak": 2 }, - { "login": "Ameerjafar", "streak": 1 }, - { "login": "deji-ice", "streak": 2 }, - { "login": "AYUSHI-SHA", "streak": 2 }, - { "login": "SagnikGos", "streak": 2 }, - { "login": "Karnmayank07", "streak": 2 }, - { "login": "ZayedShahcode", "streak": 4 }, - { "login": "Sunilkumarchavhan9", "streak": 1 }, - { "login": "pushkardev123", "streak": 1 }, - { "login": "Lavavarshney", "streak": 1 }, - { "login": "pynaman", "streak": 1 }, - { "login": "divyamprabhudessai", "streak": 1 }, - { "login": "Titus210", "streak": 1 }, - { "login": "madhura-ingole", "streak": 2 }, - { "login": "Abhishek89chauhan", "streak": 1 }, - { "login": "toufiqfarhan0", "streak": 1 }, - { "login": "manikjain105", "streak": 1 }, - { "login": "yr1404", "streak": 1 }, - { "login": "allcontributors", "streak": 1 }, - { "login": "vasudhawaman", "streak": 1 }, - { "login": "Archi20876", "streak": 1 }, - { "login": "samyakmaitre", "streak": 1 }, - { "login": "garimabhayanaa", "streak": 2 }, - { "login": "Yash8077", "streak": 2 }, - { "login": "Rohityadav9575", "streak": 1 }, - { "login": "shubham-mehta-002", "streak": 1 }, - { "login": "Pooja3Bhattrai", "streak": 2 }, - { "login": "Bhanuprakash842", "streak": 1 }, - { "login": "AmanPathan", "streak": 2 }, - { "login": "adwityac", "streak": 1 }, - { "login": "lakshmirajvagu", "streak": 1 }, - { "login": "AHSANATIQ98", "streak": 1 }, - { "login": "saimohan11", "streak": 3 }, - { "login": "KAmaL-senpai", "streak": 1 }, - { "login": "kartik3110", "streak": 2 }, - { "login": "AnujSisodiya", "streak": 1 }, - { "login": "master-ginger", "streak": 1 }, - { "login": "bm9240", "streak": 1 }, - { "login": "ZoyaYusuf", "streak": 2 }, - { "login": "jeevika17", "streak": 3 }, - { "login": "somil0701", "streak": 1 }, - { "login": "Bhoomysingh10", "streak": 2 }, - { "login": "shwetzz14", "streak": 1 }, - { "login": "srii5477", "streak": 2 }, - { "login": "AdityaBavadekar", "streak": 1 }, - { "login": "mrpeace07", "streak": 1 }, - { "login": "KAUSHIKRM-36", "streak": 1 }, - { "login": "prajwaln07", "streak": 1 }, - { "login": "akshadgujarkar", "streak": 1 }, - { "login": "Visheshpgowda", "streak": 1 }, - { "login": "Devamani11D", "streak": 1 }, - { "login": "shivamv003", "streak": 3 }, - { "login": "Orca-63", "streak": 3 }, - { "login": "ABHI-SHEK-001", "streak": 1 }, - { "login": "Dcode-7", "streak": 1 }, - { "login": "aarushsaboo", "streak": 1 }, - { "login": "Kiran-Jadhav200", "streak": 1 }, - { "login": "aashika-j18", "streak": 1 }, - { "login": "prachitriv", "streak": 1 }, - { "login": "rishikaa1", "streak": 1 }, - { "login": "Vivek7038", "streak": 1 }, - { "login": "abhayksahu369", "streak": 2 }, - { "login": "Siddhi-sahu", "streak": 1 }, - { "login": "0vai5", "streak": 1 }, - { "login": "varshapandiann", "streak": 2 }, - { "login": "nilesh-fatfatwale", "streak": 1 }, - { "login": "shreyamaheshwari1", "streak": 1 }, - { "login": "ChampGupta", "streak": 2 }, - { "login": "pand-coder", "streak": 1 }, - { "login": "AlaminPu1007", "streak": 2 }, - { "login": "shivamy009", "streak": 3 }, - { "login": "Bluesparx", "streak": 1 }, - { "login": "Pushpa472", "streak": 1 }, - { "login": "bvvivek6", "streak": 2 }, - { "login": "mrpankajpandey", "streak": 1 }, - { "login": "hannah-maria", "streak": 1 }, - { "login": "vansh-m012", "streak": 1 }, - { "login": "saiprasanna56", "streak": 1 }, - { "login": "Priyesh017", "streak": 1 }, - { "login": "prvn-kumar01", "streak": 1 }, - { "login": "Devanik21", "streak": 1 }, - { "login": "Mradul-code", "streak": 2 }, - { "login": "Mausumi134", "streak": 1 }, - { "login": "prathamesh-pichkate", "streak": 1 }, - { "login": "Blessy-B-Sherin", "streak": 1 }, - { "login": "Gahlotkumkum", "streak": 1 }, - { "login": "Md-SabbirHosen", "streak": 1 }, - { "login": "OmAmar106", "streak": 1 }, - { "login": "Rahul-Morabiya", "streak": 1 }, - { "login": "Sameera-05", "streak": 1 }, - { "login": "Arkyapatwa", "streak": 1 }, - { "login": "Sitambhra02", "streak": 1 }, - { "login": "ar-rana", "streak": 1 }, - { "login": "prachi-kurmi", "streak": 1 }, - { "login": "Japneet001", "streak": 2 }, - { "login": "prateek2102", "streak": 1 }, - { "login": "garvitnegi17", "streak": 1 }, - { "login": "AfrozeSVU", "streak": 1 }, - { "login": "Lanaanvar", "streak": 1 }, - { "login": "Amit-4186", "streak": 1 }, - { "login": "Vaibhav-Samdani", "streak": 1 }, - { "login": "shashmitha46", "streak": 1 }, - { "login": "AdityaJani616", "streak": 1 }, - { "login": "KunikaMakker", "streak": 1 }, - { "login": "Sarthak027", "streak": 1 }, - { "login": "NumlStudentSE", "streak": 2 }, - { "login": "VaibhavKatariya", "streak": 1 }, - { "login": "Ajdecoder", "streak": 1 }, - { "login": "Raj-banerjee25", "streak": 1 }, - { "login": "shauryaq05", "streak": 1 }, - { "login": "Arnab7456", "streak": 1 }, - { "login": "rishika105", "streak": 1 }, - { "login": "richa-k23", "streak": 1 }, - { "login": "PYIArun", "streak": 1 }, - { "login": "RaviP9973", "streak": 1 }, - { "login": "Deeptig9138", "streak": 2 }, - { "login": "Pragati1466", "streak": 1 }, - { "login": "Sachin2815", "streak": 1 }, - { "login": "vijaychandra1910", "streak": 1 }, - { "login": "Siddhant432", "streak": 1 }, - { "login": "VRtheKing", "streak": 1 }, - { "login": "Navneetdadhich", "streak": 1 }, - { "login": "RilAbbSnehaM", "streak": 1 }, - { "login": "Karm-Dave", "streak": 1 }, - { "login": "bj-jiwrajka", "streak": 3 }, - { "login": "TanushreeBorase", "streak": 1 }, - { "login": "lkksharma", "streak": 1 }, - { "login": "RishavKumarSinha", "streak": 1 }, - { "login": "TanviGandhotra", "streak": 2 }, - { "login": "Mujtabaa07", "streak": 1 }, - { "login": "tanvi0909", "streak": 1 }, - { "login": "Dharun235", "streak": 1 }, - { "login": "PeroxideParadox", "streak": 1 }, - { "login": "OINDIL", "streak": 1 }, - { "login": "smrutiranjanbhuyan", "streak": 1 }, - { "login": "anwesha2002", "streak": 1 }, - { "login": "Sayali-740", "streak": 1 }, - { "login": "PradeepFSTdhane123", "streak": 1 }, - { "login": "Soumya03007", "streak": 1 }, - { "login": "IRFANSARI", "streak": 1 }, - { "login": "sairampolisetty", "streak": 1 }, - { "login": "ayushrana83", "streak": 2 }, - { "login": "rahulgithub-web", "streak": 1 }, - { "login": "byteom", "streak": 1 }, - { "login": "Samuel-0316", "streak": 1 }, - { "login": "Ayushchandra416", "streak": 1 }, - { "login": "Vd7905", "streak": 1 }, - { "login": "reshamsai150", "streak": 1 }, - { "login": "Mohd-FaiZ-Jr", "streak": 1 }, - { "login": "solanki03", "streak": 1 }, - { "login": "Shalini22-ui", "streak": 1 }, - { "login": "call-meRavi-SHORT-CODE", "streak": 1 }, - { "login": "omkarmakar", "streak": 1 }, - { "login": "Shaistaattar42", "streak": 1 }, - { "login": "parshvi1508", "streak": 1 }, - { "login": "aashutosh148", "streak": 1 }, - { "login": "khwa04", "streak": 1 }, - { "login": "Arshia-163", "streak": 2 }, - { "login": "Khushalsarode", "streak": 2 }, - { "login": "Piyushsahu99", "streak": 1 }, - { "login": "ak-0404", "streak": 1 }, - { "login": "ROHAN7051", "streak": 1 }, - { "login": "Shy029", "streak": 2 }, - { "login": "ShreyasSN", "streak": 1 }, - { "login": "arhaanarif", "streak": 1 }, - { "login": "Janmejai24", "streak": 3 }, - { "login": "Manishkr1007", "streak": 1 }, - { "login": "Dhruv7055", "streak": 1 }, - { "login": "DeekshaVarshney123", "streak": 1 }, - { "login": "Kaif9999", "streak": 1 }, - { "login": "sv410", "streak": 2 }, - { "login": "MahraibFatima", "streak": 2 }, - { "login": "sumankr15", "streak": 1 }, - { "login": "prishsha", "streak": 1 }, - { "login": "Rahilsamani", "streak": 1 }, - { "login": "re-sha", "streak": 1 }, - { "login": "Kruthik111", "streak": 2 }, - { "login": "jency1", "streak": 1 }, - { "login": "ankurrrrr7", "streak": 2 }, - { "login": "00Himnshi", "streak": 1 }, - { "login": "RushilJalal", "streak": 2 }, - { "login": "kash-1007", "streak": 1 }, - { "login": "riyaarora954", "streak": 1 }, - { "login": "Ojha8421", "streak": 1 }, - { "login": "SaiKumar297", "streak": 2 }, - { "login": "Sammandy", "streak": 1 }, - { "login": "Chelsea67jain", "streak": 1 }, - { "login": "ascoder1109", "streak": 1 }, - { "login": "pani2004", "streak": 1 }, - { "login": "TalupulaSahithi", "streak": 1 }, - { "login": "GeorgiosDrivas", "streak": 1 }, - { "login": "userAdityaa", "streak": 2 }, - { "login": "varunvaatsalya", "streak": 2 }, - { "login": "k3uual", "streak": 1 }, - { "login": "saumy-sh", "streak": 1 }, - { "login": "Bruhbytes", "streak": 1 }, - { "login": "vaishnavirajj", "streak": 2 }, - { "login": "sameer-soni", "streak": 2 }, - { "login": "ApoorvaSunkad", "streak": 1 }, - { "login": "vamsi4845", "streak": 1 }, - { "login": "Nivesh2003", "streak": 1 }, - { "login": "UTkARsh-RaJ01", "streak": 1 }, - { "login": "Priyanshi231", "streak": 2 }, - { "login": "ysachin438", "streak": 1 }, - { "login": "SubramanyaKS", "streak": 3 }, - { "login": "vivek1842", "streak": 1 }, - { "login": "pankajsaini1", "streak": 1 }, - { "login": "Saketh1714", "streak": 1 }, - { "login": "ishicodz", "streak": 1 }, - { "login": "Sagar2006", "streak": 1 }, - { "login": "ayushbhjh", "streak": 1 }, - { "login": "psr-codes", "streak": 1 }, - { "login": "theomkardeshpande", "streak": 1 }, - { "login": "mohit-2003", "streak": 2 }, - { "login": "ansulagrawal", "streak": 1 }, - { "login": "MeetThakur", "streak": 1 }, - { "login": "Anushaburnwal", "streak": 1 }, - { "login": "Brijeshthummar02", "streak": 1 }, - { "login": "Kanishka217", "streak": 1 }, - { "login": "AjayAchugatla", "streak": 1 }, - { "login": "himanshupandey21", "streak": 1 }, - { "login": "anant-jain01", "streak": 1 }, - { "login": "shrutipandey21", "streak": 1 }, - { "login": "hazraChandrima", "streak": 1 }, - { "login": "RohithNair27", "streak": 1 }, - { "login": "Chakridhar2555", "streak": 1 }, - { "login": "harshendram", "streak": 1 }, - { "login": "minji105", "streak": 1 }, - { "login": "tirdesh", "streak": 1 }, - { "login": "haylemon", "streak": 1 }, - { "login": "Thrupthi-shekar", "streak": 1 }, - { "login": "ritikm31", "streak": 1 }, - { "login": "from13", "streak": 1 }, - { "login": "payo101", "streak": 1 }, - { "login": "Pheonixrog", "streak": 2 }, - { "login": "anshxika", "streak": 1 }, - { "login": "Kritika745", "streak": 1 }, - { "login": "arpit74170", "streak": 1 }, - { "login": "Omansh-Sharma1", "streak": 1 }, - { "login": "KrHimanshu18", "streak": 1 }, - { "login": "Anshikapal05", "streak": 1 }, - { "login": "satyamra1", "streak": 1 }, - { "login": "satyam1024", "streak": 2 }, - { "login": "vaishnavieieie", "streak": 1 }, - { "login": "abhivyakti2", "streak": 1 }, - { "login": "Astro-Dude", "streak": 1 }, - { "login": "aditya-singhhh", "streak": 1 }, - { "login": "momithalasya", "streak": 1 }, - { "login": "angadnagar", "streak": 1 }, - { "login": "wajaht-ali", "streak": 1 }, - { "login": "Sarthak1970", "streak": 1 }, - { "login": "ganashree1612", "streak": 1 }, - { "login": "Upendra48", "streak": 2 }, - { "login": "VAmanjain", "streak": 1 }, - { "login": "mdrehan369", "streak": 1 }, - { "login": "Ankesh-erek", "streak": 2 }, - { "login": "NimraAslamkhan", "streak": 1 }, - { "login": "aryanp-86", "streak": 1 }, - { "login": "TheAdich", "streak": 1 }, - { "login": "29deepanshutyagi", "streak": 1 }, - { "login": "SuperexMack", "streak": 1 }, - { "login": "abishek1740P", "streak": 1 }, - { "login": "Parthmagdum", "streak": 1 }, - { "login": "Dipu2552003", "streak": 2 }, - { "login": "OmkeshwarGupta", "streak": 1 }, - { "login": "space-techy", "streak": 1 }, - { "login": "vidhvath28", "streak": 1 }, - { "login": "Prathmesh-rajurkar", "streak": 1 }, - { "login": "krittika019", "streak": 1 }, - { "login": "Rishav123raj", "streak": 1 }, - { "login": "TheRaj71", "streak": 1 }, - { "login": "partg952", "streak": 1 }, - { "login": "Bytebites03", "streak": 1 }, - { "login": "DevGajjar28", "streak": 1 }, - { "login": "sum1t-here", "streak": 1 }, - { "login": "shar2710", "streak": 1 }, - { "login": "skstanwar", "streak": 1 }, - { "login": "Hudson-bot", "streak": 1 }, - { "login": "Soumyodeep-Das", "streak": 3 }, - { "login": "Akm592", "streak": 1 }, - { "login": "Meghana-Poojary", "streak": 1 }, - { "login": "dushyantkanav", "streak": 1 }, - { "login": "pankaj1132", "streak": 1 }, - { "login": "mienpham04", "streak": 1 }, - { "login": "balbirs22", "streak": 1 }, - { "login": "kundana29", "streak": 1 }, - { "login": "shradiphylleia", "streak": 1 }, - { "login": "khushiiagrawal", "streak": 1 }, - { "login": "arya2004", "streak": 1 }, - { "login": "MuKulsoop", "streak": 1 }, - { "login": "mansiruhil13", "streak": 1 }, - { "login": "Seif-Mamdouh", "streak": 1 }, - { "login": "AnklekarMahima", "streak": 1 }, - { "login": "deepanshu-prajapati01", "streak": 1 }, - { "login": "mchen610", "streak": 1 }, - { "login": "ekayZ7875", "streak": 1 }, - { "login": "PAVAN-VANAM", "streak": 1 }, - { "login": "Ashwanisingh7930", "streak": 1 }, - { "login": "shivam-thedev", "streak": 1 }, - { "login": "Yash05080", "streak": 1 }, - { "login": "Abhi-0987", "streak": 1 }, - { "login": "AkashD625", "streak": 1 }, - { "login": "Aditya-edith", "streak": 1 }, - { "login": "ManasaNagaram", "streak": 1 }, - { "login": "Abhishek332", "streak": 1 }, - { "login": "Garvit1000", "streak": 1 }, - { "login": "Manvitha-Vema", "streak": 1 }, - { "login": "ShahanasParapporu", "streak": 1 }, - { "login": "Yashvardhan-17", "streak": 1 }, - { "login": "Satyajit0003", "streak": 3 }, - { "login": "zaheer-Khan3260", "streak": 1 }, - { "login": "Sibam-Paul", "streak": 1 }, - { "login": "samarasimhapeyala", "streak": 2 }, - { "login": "usha-here", "streak": 1 }, - { "login": "rohitinu6", "streak": 2 }, - { "login": "Rx-Metallica", "streak": 1 }, - { "login": "Risheendra183", "streak": 1 }, - { "login": "Ankush0286", "streak": 1 }, - { "login": "Mansi-Tanwar", "streak": 2 }, - { "login": "AkshatSharma5", "streak": 4 }, - { "login": "Aditi2k5", "streak": 2 }, - { "login": "sanskaryo", "streak": 1 }, - { "login": "JHA-geek-AYUSH", "streak": 2 }, - { "login": "MihirSaiDudekula", "streak": 2 }, - { "login": "Amanjayswal500", "streak": 1 }, - { "login": "khushi-joshi-05", "streak": 1 }, - { "login": "Vinayyy19", "streak": 1 }, - { "login": "sayiamarora", "streak": 2 }, - { "login": "Athaxv", "streak": 1 }, - { "login": "Shariar-Hasan", "streak": 3 }, - { "login": "Riya7045", "streak": 1 }, - { "login": "deepikaa0402", "streak": 1 }, - { "login": "Aarnachauhan", "streak": 1 }, - { "login": "saurabhbakolia", "streak": 1 }, - { "login": "vedanshjainvj", "streak": 1 }, - { "login": "AnshikaRathour", "streak": 1 }, - { "login": "DevanshS9881", "streak": 1 }, - { "login": "khaulanauman", "streak": 1 }, - { "login": "Gurpreet0022", "streak": 1 }, - { "login": "RanaJay3101", "streak": 2 }, - { "login": "tanushrigoel", "streak": 1 }, - { "login": "yogeswari05", "streak": 2 }, - { "login": "devki412", "streak": 1 }, - { "login": "dalvishruti14", "streak": 1 }, - { "login": "pranavmugatkar", "streak": 1 }, - { "login": "Karan-Mahato", "streak": 2 }, - { "login": "Vaibhav-Kumar10", "streak": 1 }, - { "login": "CodewMilan", "streak": 1 }, - { "login": "Vaibhav-Kumar-K-R", "streak": 1 }, - { "login": "shreysachani", "streak": 1 }, - { "login": "Harshitraaaj", "streak": 1 }, - { "login": "KhushiChauhan8", "streak": 1 }, - { "login": "Shrutibansal22", "streak": 1 }, - { "login": "RushikeshGhodke", "streak": 1 }, - { "login": "Debmallya-03", "streak": 1 }, - { "login": "akash-inft1905", "streak": 1 }, - { "login": "DBasu2610", "streak": 1 }, - { "login": "AbhinabPalei", "streak": 2 }, - { "login": "Ek-ta-bharti", "streak": 1 }, - { "login": "Chitrakadyan2005", "streak": 1 }, - { "login": "abhijeetw035", "streak": 1 }, - { "login": "psa21git", "streak": 1 }, - { "login": "Anshuaman2001", "streak": 1 }, - { "login": "TusharNaugain", "streak": 1 }, - { "login": "Chandravan", "streak": 2 }, - { "login": "triman1905", "streak": 1 }, - { "login": "sumitrathor1", "streak": 1 }, - { "login": "ash-k121", "streak": 2 }, - { "login": "pulkitpathak99", "streak": 1 }, - { "login": "rugved0102", "streak": 1 }, - { "login": "achintyasrivastav", "streak": 1 }, - { "login": "TeekshaHarish", "streak": 1 }, - { "login": "Meetjain1", "streak": 1 }, - { "login": "akshjswl", "streak": 1 }, - { "login": "vaishnav-3", "streak": 1 }, - { "login": "Dhavisco", "streak": 2 }, - { "login": "anjali5Xcode", "streak": 1 }, - { "login": "akarshghildyal", "streak": 1 }, - { "login": "gitsofaryan", "streak": 1 }, - { "login": "AvinashKumar0923", "streak": 1 }, - { "login": "ShigrafS", "streak": 1 }, - { "login": "Sakeebhasan123456", "streak": 1 }, - { "login": "khushi1315", "streak": 1 }, - { "login": "mishraRj", "streak": 2 }, - { "login": "SoumyaU25", "streak": 1 }, - { "login": "anothercoder-nik", "streak": 1 }, - { "login": "T-Soni", "streak": 1 }, - { "login": "Zaki2409", "streak": 1 }, - { "login": "sanchitgumber", "streak": 1 }, - { "login": "ashish-um", "streak": 1 }, - { "login": "abhishekHegde2000", "streak": 1 }, - { "login": "mahipalimkar", "streak": 1 }, - { "login": "Abheeshta-P", "streak": 1 }, - { "login": "eleensmathew", "streak": 1 }, - { "login": "AnkitLuhar", "streak": 1 }, - { "login": "NawinKumarSharma", "streak": 2 }, - { "login": "Priyanshu282003", "streak": 1 }, - { "login": "c2gup", "streak": 1 }, - { "login": "toastsandwich", "streak": 1 }, - { "login": "MihirRajeshPanchal", "streak": 1 }, - { "login": "GAURAV8520", "streak": 1 }, - { "login": "Sayantan1024", "streak": 2 }, - { "login": "iamasraful", "streak": 1 }, - { "login": "Viole07", "streak": 1 }, - { "login": "shreyajaiswal17", "streak": 2 }, - { "login": "RNAdvani", "streak": 1 }, - { "login": "efshaperveen", "streak": 1 }, - { "login": "Nikhileshmauje", "streak": 1 }, - { "login": "MOHIT-IITP", "streak": 1 }, - { "login": "Aradhya-005", "streak": 2 }, - { "login": "Bhoomidhanu12", "streak": 1 }, - { "login": "adarshgupta14", "streak": 1 }, - { "login": "ShubhamKadam098", "streak": 1 }, - { "login": "Sapna127", "streak": 1 }, - { "login": "Suhas-Koheda", "streak": 1 }, - { "login": "sapnilmodak", "streak": 1 }, - { "login": "KirtiPratihar", "streak": 2 }, - { "login": "zakie2003", "streak": 1 }, - { "login": "Vivan-1045", "streak": 1 }, - { "login": "subhadipbhowmik", "streak": 1 }, - { "login": "JyothiPriya5", "streak": 2 }, - { "login": "sakshii00", "streak": 1 }, - { "login": "divyansharma001", "streak": 1 }, - { "login": "Shrihari25-hub", "streak": 1 }, - { "login": "sehajsomal5", "streak": 1 }, - { "login": "Shriya-sinha", "streak": 1 }, - { "login": "AshiqYadav", "streak": 1 }, - { "login": "slavomirStucka", "streak": 1 }, - { "login": "Raj100", "streak": 2 }, - { "login": "SHRIVISHNU-CM", "streak": 2 }, - { "login": "YasirKhan231", "streak": 1 }, - { "login": "muskan-fatim", "streak": 1 }, - { "login": "pbln", "streak": 2 }, - { "login": "Sanikaaher-19", "streak": 1 }, - { "login": "Lokesh11868", "streak": 1 }, - { "login": "shimmer12", "streak": 1 }, - { "login": "UmeshKumar0143", "streak": 1 }, - { "login": "Vyshnavi1322", "streak": 1 }, - { "login": "31Rishita", "streak": 1 }, - { "login": "Shahharshii", "streak": 2 }, - { "login": "Ravi-1606", "streak": 2 }, - { "login": "Kiran-F", "streak": 2 }, - { "login": "Bhupendrakumar20", "streak": 1 }, - { "login": "nabeel001", "streak": 1 }, - { "login": "Harshcbx8", "streak": 3 }, - { "login": "rahmathkhasim", "streak": 1 }, - { "login": "kanduru-abhiram", "streak": 1 }, - { "login": "kartik9737", "streak": 1 }, - { "login": "rupesh-dev30", "streak": 1 }, - { "login": "Sunny1198", "streak": 3 }, - { "login": "Rish6392", "streak": 1 }, - { "login": "officeneerajsaini", "streak": 1 }, - { "login": "RajputSneha17", "streak": 2 }, - { "login": "ahinagangopadhyay", "streak": 1 }, - { "login": "vinit105", "streak": 1 }, - { "login": "Anwishta", "streak": 1 }, - { "login": "mishradev1", "streak": 2 }, - { "login": "SupratitDatta", "streak": 3 }, - { "login": "Salini-sat", "streak": 2 }, - { "login": "CodeWithBishal", "streak": 1 }, - { "login": "sheezah01", "streak": 1 }, - { "login": "DeshDeepakKushwaha", "streak": 1 }, - { "login": "Ashmita-15", "streak": 1 }, - { "login": "harbakshsinghbaath", "streak": 1 }, - { "login": "sourabhmajoka", "streak": 1 }, - { "login": "dhruvjain23", "streak": 2 }, - { "login": "Ayush215mb", "streak": 1 }, - { "login": "FazeZxc", "streak": 1 }, - { "login": "kashikaga", "streak": 1 }, - { "login": "AnsharaFayazBeigh", "streak": 1 }, - { "login": "xenomancy", "streak": 1 }, - { "login": "sahildevil", "streak": 1 }, - { "login": "iwanturequity", "streak": 1 }, - { "login": "anishmu20", "streak": 1 }, - { "login": "atmajaa", "streak": 1 }, - { "login": "rahulYUV", "streak": 1 }, - { "login": "ayushdubey570", "streak": 1 }, - { "login": "taniya542", "streak": 1 }, - { "login": "rupashreesmagic", "streak": 1 }, - { "login": "Akanshaku", "streak": 1 }, - { "login": "Cleveridiot07", "streak": 1 }, - { "login": "Tholkappiar", "streak": 1 }, - { "login": "Anushkam09", "streak": 1 }, - { "login": "Himanshuch8055", "streak": 1 }, - { "login": "Saloni3494", "streak": 1 }, - { "login": "sinhaudita", "streak": 1 }, - { "login": "sahilwadaskar07", "streak": 1 }, - { "login": "SAMluci666", "streak": 1 }, - { "login": "Lakshay1838", "streak": 1 }, - { "login": "Payal-Sinha09", "streak": 1 }, - { "login": "sakship2005", "streak": 1 }, - { "login": "NM3806", "streak": 1 }, - { "login": "Bhawnarajput1502", "streak": 1 }, - { "login": "harshitjain476493", "streak": 1 }, - { "login": "ayush-py-c", "streak": 1 }, - { "login": "hariscoder3", "streak": 1 }, - { "login": "medakshchoudhary", "streak": 1 }, - { "login": "w0wayush", "streak": 1 }, - { "login": "ishap11", "streak": 1 }, - { "login": "synakr", "streak": 1 }, - { "login": "aniruddhaadak80", "streak": 1 }, - { "login": "Satashee", "streak": 1 }, - { "login": "IshuSinghSE", "streak": 1 }, - { "login": "NamanVer02", "streak": 1 }, - { "login": "23WH1A0507", "streak": 1 }, - { "login": "Moses-Mk", "streak": 1 }, - { "login": "Abhishekgt", "streak": 1 }, - { "login": "skycypherxo", "streak": 1 }, - { "login": "ujjwal-207", "streak": 1 }, - { "login": "Abhijeet14d", "streak": 1 }, - { "login": "Vanshika-OFFICIAL", "streak": 1 }, - { "login": "rajfauzdar", "streak": 1 }, - { "login": "AnushkaGupta2003", "streak": 1 }, - { "login": "Sujal942", "streak": 1 }, - { "login": "magancodes", "streak": 1 }, - { "login": "FaheemOnHub", "streak": 1 }, - { "login": "ratna-jaiswal", "streak": 1 }, - { "login": "maitri-vv", "streak": 1 }, - { "login": "S7viks", "streak": 1 }, - { "login": "DevanshuTripathi", "streak": 1 }, - { "login": "dharmesh191312", "streak": 1 }, - { "login": "eshitatalukdar08", "streak": 1 }, - { "login": "soumyajit254", "streak": 1 }, - { "login": "Meharsh7804", "streak": 1 }, - { "login": "KunalPusdekar", "streak": 1 }, - { "login": "ashishyadav512", "streak": 1 }, - { "login": "saisaranya2005", "streak": 1 }, - { "login": "devkumar2313", "streak": 1 }, - { "login": "nikhilkalburgi", "streak": 1 }, - { "login": "coderashhar", "streak": 1 }, - { "login": "Shubham0523", "streak": 1 }, - { "login": "OmDixit2107", "streak": 1 }, - { "login": "stevenanthonyrevo", "streak": 1 }, - { "login": "sujalcharati", "streak": 1 }, - { "login": "RajeshTechForge", "streak": 1 }, - { "login": "FSBM", "streak": 1 }, - { "login": "NazTM", "streak": 1 }, - { "login": "masabinhok", "streak": 1 }, - { "login": "justhappyuknow", "streak": 1 }, - { "login": "rajlakshmi18704", "streak": 1 }, - { "login": "nandini-queen-of-my-world", "streak": 1 }, - { "login": "vaishvi2811", "streak": 1 }, - { "login": "NanFangDieDao", "streak": 1 }, - { "login": "priyans877", "streak": 1 }, - { "login": "Pseudophoenix", "streak": 1 }, - { "login": "Hafsa-shoaib989", "streak": 1 }, - { "login": "Varun-malviya5", "streak": 1 }, - { "login": "In-Saiyan", "streak": 1 }, - { "login": "RanjanaShenoy", "streak": 1 }, - { "login": "iam-sarthak", "streak": 1 }, - { "login": "MdNadimUddin01", "streak": 1 }, - { "login": "akshatshukla13", "streak": 1 }, - { "login": "prathmesh703", "streak": 1 }, - { "login": "Mukesh-ghildiyal", "streak": 1 }, - { "login": "kaishwarya24", "streak": 1 }, - { "login": "undertakerme", "streak": 1 }, - { "login": "SarangAhlawat", "streak": 1 }, - { "login": "kunal649", "streak": 1 }, - { "login": "solanki505", "streak": 1 }, - { "login": "ketan270", "streak": 1 }, - { "login": "Engineerrobin7", "streak": 1 }, - { "login": "Dyslex7c", "streak": 1 }, - { "login": "dhruvishah122", "streak": 1 }, - { "login": "BaibhavTiwari", "streak": 1 }, - { "login": "mauryavinay1407", "streak": 1 }, - { "login": "Sehrishzarin", "streak": 1 }, - { "login": "KunjShah95", "streak": 1 }, - { "login": "shrashti-19", "streak": 1 }, - { "login": "tejasam571", "streak": 1 }, - { "login": "Shahzal-Rehman", "streak": 1 }, - { "login": "deekshithdv", "streak": 1 }, - { "login": "Sushil010", "streak": 1 }, - { "login": "KhanjarSingh", "streak": 1 }, - { "login": "sohailshk", "streak": 1 }, - { "login": "mahigupta16", "streak": 1 }, - { "login": "ayusharyan143", "streak": 1 }, - { "login": "Sakshar-Devgon", "streak": 1 }, - { "login": "pa1narendra", "streak": 1 }, - { "login": "ayushvyasonwork", "streak": 1 }, - { "login": "thedarkking01", "streak": 1 }, - { "login": "gunajidiksha", "streak": 1 }, - { "login": "Declan1704", "streak": 1 }, - { "login": "zeropse", "streak": 1 }, - { "login": "South-IN", "streak": 1 }, - { "login": "05kaavya", "streak": 1 }, - { "login": "Winter262005", "streak": 1 }, - { "login": "sajalbatra", "streak": 1 }, - { "login": "priyansh985", "streak": 1 }, - { "login": "mrskjha", "streak": 1 }, - { "login": "ayush-343", "streak": 1 }, - { "login": "vanshika704", "streak": 1 }, - { "login": "charliehustlr1792", "streak": 1 }, - { "login": "rishuishind", "streak": 1 }, - { "login": "SanchitGeez", "streak": 1 }, - { "login": "prashantsingh181", "streak": 1 }, - { "login": "jayadarshinig0609", "streak": 1 }, - { "login": "himasnhu018", "streak": 1 }, - { "login": "vprathap21", "streak": 1 }, - { "login": "harshdeshmukh21", "streak": 1 }, - { "login": "Nikhith221B", "streak": 1 }, - { "login": "AJ-Athira", "streak": 1 }, - { "login": "aanushkaguptaa", "streak": 1 }, - { "login": "Rashipotey", "streak": 1 }, - { "login": "ritikprajapat21", "streak": 1 }, - { "login": "ChandraST12", "streak": 2 }, - { "login": "JonasBakys0", "streak": 1 }, - { "login": "18Prachi", "streak": 1 }, - { "login": "shubham18102000", "streak": 1 }, - { "login": "Aarushi08sood", "streak": 1 }, - { "login": "alok-mishra143", "streak": 1 }, - { "login": "sumitd9115", "streak": 1 }, - { "login": "YadavAkhileshh", "streak": 1 }, - { "login": "JCarlosR", "streak": 1 }, - { "login": "Riddhi12349", "streak": 1 }, - { "login": "yuvraj1107thapa", "streak": 1 }, - { "login": "ishanikundu", "streak": 1 }, - { "login": "eeshwar369", "streak": 1 }, - { "login": "soham-khedkar", "streak": 1 }, - { "login": "0xSaurabhx", "streak": 1 }, - { "login": "ronit-ghosh", "streak": 1 }, - { "login": "TejasNasre", "streak": 1 }, - { "login": "AashishNandakumar", "streak": 1 }, - { "login": "piyushpatelcodes", "streak": 1 }, - { "login": "Sakshamp19", "streak": 1 }, - { "login": "Aryan-01-star", "streak": 1 }, - { "login": "Sonalgupta2005", "streak": 1 }, - { "login": "snehasharma200303", "streak": 1 }, - { "login": "BlitzIQ-Coder", "streak": 1 }, - { "login": "idk-mr4tyunjay", "streak": 1 }, - { "login": "SSShogunn", "streak": 1 }, - { "login": "rko0211", "streak": 1 }, - { "login": "infernodragon456", "streak": 1 }, - { "login": "Agnish1611", "streak": 1 }, - { "login": "Ayushh23", "streak": 1 }, - { "login": "Uditya-Raj", "streak": 1 }, - { "login": "utkarsh006", "streak": 1 }, - { "login": "STDYGIT", "streak": 1 }, - { "login": "Amarjeetkumart", "streak": 1 }, - { "login": "vijaykarthiktk", "streak": 1 }, - { "login": "MaRyamFatima1120", "streak": 1 }, - { "login": "Sonuu20", "streak": 1 }, - { "login": "RishabhSri17", "streak": 1 }, - { "login": "ayyush08", "streak": 1 }, - { "login": "Kushagra1taneja", "streak": 1 }, - { "login": "DG492003", "streak": 1 }, - { "login": "Virat-Shrimali", "streak": 1 }, - { "login": "dfordebarati", "streak": 1 }, - { "login": "Blink-drift", "streak": 1 }, - { "login": "SagarSharma2809", "streak": 1 }, - { "login": "Parthshukla26", "streak": 1 }, - { "login": "AyushDubey23", "streak": 1 }, - { "login": "Dharmi-dev", "streak": 1 }, - { "login": "Saiweb3dev", "streak": 1 }, - { "login": "PhantomANaz", "streak": 1 }, - { "login": "ShreeluSantosh", "streak": 1 }, - { "login": "mohdahsanrazakhan", "streak": 1 }, - { "login": "shreya6286", "streak": 2 }, - { "login": "suhitha02", "streak": 1 }, - { "login": "yg2505", "streak": 1 }, - { "login": "nsain25", "streak": 1 }, - { "login": "msk21shoaib", "streak": 1 }, - { "login": "ArchitSr313", "streak": 1 }, - { "login": "RitikSinha04", "streak": 1 }, - { "login": "janeeshgithub", "streak": 1 }, - { "login": "GitGudScrubss", "streak": 1 }, - { "login": "AliGoodarzi-Ai", "streak": 1 }, - { "login": "singhabhinendra", "streak": 1 }, - { "login": "emadcode", "streak": 1 }, - { "login": "Simran-0024", "streak": 1 }, - { "login": "mahimakathpal", "streak": 1 }, - { "login": "DorafinaTech", "streak": 1 }, - { "login": "sanjanaapandey", "streak": 1 }, - { "login": "neerajsharma897", "streak": 1 }, - { "login": "PriyanshiAgr", "streak": 1 }, - { "login": "Snehagiri554", "streak": 1 }, - { "login": "farhat-1203", "streak": 1 }, - { "login": "AimenDev", "streak": 1 }, - { "login": "abubakarp789", "streak": 1 }, - { "login": "TanishaBansal101", "streak": 1 }, - { "login": "JeetDas5", "streak": 1 }, - { "login": "psjhimanshu", "streak": 1 }, - { "login": "Harshini2015", "streak": 1 }, - { "login": "Vaishnavigowda27", "streak": 1 }, - { "login": "Ayushigitgithub", "streak": 1 }, - { "login": "Shridhar2104", "streak": 1 }, - { "login": "swayamag2004", "streak": 1 }, - { "login": "dhanushsai2006", "streak": 1 }, - { "login": "upadhyayaniket29", "streak": 1 }, - { "login": "VenuVirparia", "streak": 1 }, - { "login": "anishpujari", "streak": 1 }, - { "login": "vandana79039", "streak": 1 }, - { "login": "sk66641", "streak": 1 }, - { "login": "siddub306", "streak": 1 }, - { "login": "Sreehithabasireddy666", "streak": 1 }, - { "login": "Tarungupta18", "streak": 1 }, - { "login": "R1ya4git", "streak": 1 }, - { "login": "Vis1hal", "streak": 1 }, - { "login": "havishyareddy", "streak": 1 }, - { "login": "Faiz-Shaikh-16", "streak": 1 }, - { "login": "aditijha-123", "streak": 1 }, - { "login": "aakashjangra", "streak": 1 }, - { "login": "AmanSinghh345", "streak": 1 }, - { "login": "harshiltomar", "streak": 1 }, - { "login": "yuvraj-singh009", "streak": 1 }, - { "login": "biswajeetyadavv", "streak": 1 }, - { "login": "AnkitMourya12", "streak": 1 }, - { "login": "harshjoshi1312", "streak": 1 }, - { "login": "GaurRitika", "streak": 1 }, - { "login": "akshaydubey05", "streak": 1 }, - { "login": "bhuvanakadiyam", "streak": 1 }, - { "login": "ShubhiGupta20", "streak": 1 }, - { "login": "jayanth16122005", "streak": 1 }, - { "login": "iDharshan", "streak": 1 }, - { "login": "Akshitha-reddy-13", "streak": 1 }, - { "login": "babasekhar", "streak": 1 }, - { "login": "ShadowyBliss", "streak": 1 }, - { "login": "Vishnu-Babu", "streak": 1 }, - { "login": "gungunjain15", "streak": 1 }, - { "login": "vaishnavikarra", "streak": 1 }, - { "login": "ChethanaPotukanam", "streak": 1 }, - { "login": "Shreesanyog", "streak": 1 }, - { "login": "NitinChakrawarti", "streak": 1 }, - { "login": "sarthaknitnaware", "streak": 1 }, - { "login": "krinalsuthar", "streak": 1 }, - { "login": "YathishGP003", "streak": 1 }, - { "login": "Sanikommus", "streak": 1 }, - { "login": "psychic-coder", "streak": 1 }, - { "login": "aryak-1", "streak": 1 }, - { "login": "kip-07", "streak": 1 }, - { "login": "ishagothwad", "streak": 1 }, - { "login": "MadhurimaNayak", "streak": 1 }, - { "login": "purvathnere", "streak": 1 }, - { "login": "AP200408", "streak": 1 }, - { "login": "sohan-gupthak", "streak": 1 }, - { "login": "AaryanManghnani", "streak": 1 }, - { "login": "shivamgaur99", "streak": 1 }, - { "login": "rriddhi-04", "streak": 1 }, - { "login": "Madhuril-Bhaskar", "streak": 1 }, - { "login": "Peanut2123650", "streak": 1 }, - { "login": "Jeet-0510", "streak": 1 }, - { "login": "Vaibhav2154", "streak": 1 }, - { "login": "anuni03", "streak": 1 }, - { "login": "sudipamandal", "streak": 1 }, - { "login": "bhuvangoel04", "streak": 1 }, - { "login": "garvit-exe", "streak": 1 }, - { "login": "Shrid55", "streak": 1 }, - { "login": "lodhivishalcoder28", "streak": 1 }, - { "login": "itzAk27", "streak": 1 }, - { "login": "shereen-24", "streak": 1 }, - { "login": "riffhi", "streak": 1 }, - { "login": "Anushka-Sharma-008", "streak": 1 }, - { "login": "dharshanaagb", "streak": 1 }, - { "login": "nishthaaggarwal15", "streak": 1 }, - { "login": "Swapnilden", "streak": 1 }, - { "login": "PakhiJoshi", "streak": 1 }, - { "login": "sasidhara-kashyap0903", "streak": 1 }, - { "login": "vaishali-sharma-20", "streak": 1 }, - { "login": "himanshuraimau", "streak": 1 }, - { "login": "preetikumari5", "streak": 1 }, - { "login": "kumar8074", "streak": 1 }, - { "login": "varsha-kotegar", "streak": 1 }, - { "login": "Tejasri-Pendota", "streak": 1 }, - { "login": "kalalsahil", "streak": 1 }, - { "login": "AA1-34-Ganesh", "streak": 1 }, - { "login": "TejaswiKandunuri", "streak": 1 }, - { "login": "krishan-07", "streak": 1 }, - { "login": "RiyaRaj28", "streak": 1 }, - { "login": "Prachurya-Ray", "streak": 1 }, - { "login": "harshagarwal0401", "streak": 1 }, - { "login": "wilsonprodige", "streak": 1 }, - { "login": "KARTHIKEYANS111", "streak": 1 }, - { "login": "Vaishnavi4008", "streak": 1 }, - { "login": "lakshay-1809", "streak": 1 }, - { "login": "MeetJariwala10", "streak": 1 }, - { "login": "Nehalakshmi04", "streak": 1 }, - { "login": "akshara12code", "streak": 1 }, - { "login": "srivardhan-kondu", "streak": 1 }, - { "login": "Mediboyina", "streak": 1 }, - { "login": "Laksh-01", "streak": 1 }, - { "login": "Akansha452001", "streak": 1 }, - { "login": "Sailza", "streak": 1 }, - { "login": "Spandan-Mishra", "streak": 1 }, - { "login": "Khushishah224", "streak": 1 }, - { "login": "IshikaBrar21", "streak": 1 }, - { "login": "SATYAM-PRATIBHAN", "streak": 1 }, - { "login": "jasjeev013", "streak": 1 }, - { "login": "anikalohia", "streak": 1 }, - { "login": "GayathriPCh", "streak": 1 }, - { "login": "Blue-Always", "streak": 1 }, - { "login": "Aman0413", "streak": 1 }, - { "login": "Shubhra-Narang", "streak": 1 }, - { "login": "mary446", "streak": 1 }, - { "login": "sipsdaoracle", "streak": 1 }, - { "login": "sakshiglaze", "streak": 1 }, - { "login": "Nehayp21242929", "streak": 1 }, - { "login": "Hardikchandra", "streak": 1 }, - { "login": "Dev-AyushTrivedi", "streak": 1 }, - { "login": "hithasam24", "streak": 1 }, - { "login": "itssarvani394", "streak": 1 }, - { "login": "Spider1109", "streak": 1 }, - { "login": "akshayavazrala", "streak": 1 }, - { "login": "jinalraghwani18", "streak": 1 }, - { "login": "Shamyuktha06", "streak": 1 }, - { "login": "1cYinfinity", "streak": 1 }, - { "login": "arun0r7", "streak": 1 }, - { "login": "khavya-798", "streak": 1 }, - { "login": "its-kritika", "streak": 1 }, - { "login": "kpt2210", "streak": 1 }, - { "login": "khuship23", "streak": 1 }, - { "login": "vaidehipate", "streak": 1 }, - { "login": "MaragathaMeenakshi", "streak": 1 }, - { "login": "1235vishal", "streak": 1 }, - { "login": "royalrajputayush", "streak": 1 }, - { "login": "i-am-faith", "streak": 1 }, - { "login": "Tejaswini-628", "streak": 1 }, - { "login": "srinidhifd", "streak": 1 }, - { "login": "Dimple-Choudhary", "streak": 1 }, - { "login": "ArshnoorKaur21", "streak": 1 }, - { "login": "Kalyan9064", "streak": 1 }, - { "login": "hxtanishq", "streak": 1 }, - { "login": "Nit-25", "streak": 1 }, - { "login": "Tabassum-13", "streak": 1 }, - { "login": "gondesi-anjali", "streak": 1 }, - { "login": "pavankumar4404", "streak": 1 }, - { "login": "singhpratibha98", "streak": 1 }, - { "login": "samikshapandagle", "streak": 1 }, - { "login": "Bindusree1515", "streak": 1 }, - { "login": "riddhi5474", "streak": 1 }, - { "login": "okayananddd", "streak": 1 }, - { "login": "supriyajathar", "streak": 1 }, - { "login": "Mohammad-Qamar", "streak": 1 }, - { "login": "mesumitkumarsk", "streak": 1 }, - { "login": "binguliki", "streak": 1 }, - { "login": "Bharathhh30", "streak": 1 }, - { "login": "royalsachan", "streak": 1 }, - { "login": "sdass1918", "streak": 1 }, - { "login": "Priyadeara2427", "streak": 1 }, - { "login": "singhrimiumesh", "streak": 1 }, - { "login": "Darshants6364", "streak": 1 }, - { "login": "Akash19304", "streak": 1 }, - { "login": "woodwolfswee", "streak": 1 }, - { "login": "Dynamic-Aryan", "streak": 1 }, - { "login": "anirudh-why", "streak": 1 }, - { "login": "02Manas-jha", "streak": 1 }, - { "login": "Praharshitha167", "streak": 1 }, - { "login": "EswarPesala", "streak": 1 }, - { "login": "chirag-tomar2003", "streak": 1 }, - { "login": "Dharam13", "streak": 1 }, - { "login": "Neha2580", "streak": 1 }, - { "login": "Niharika-Behera", "streak": 1 }, - { "login": "Eshika-Pawar", "streak": 1 }, - { "login": "nisargaa20", "streak": 1 }, - { "login": "VijaySamant4368", "streak": 1 }, - { "login": "Sravani-Kallempudi", "streak": 1 }, - { "login": "Quatecha", "streak": 1 }, - { "login": "PrathicaShettyM", "streak": 1 }, - { "login": "Praneeth2312", "streak": 1 }, - { "login": "SaiSruthisri", "streak": 1 }, - { "login": "AishMishra001", "streak": 1 }, - { "login": "Madhu-mac", "streak": 1 }, - { "login": "illusion1412", "streak": 1 }, - { "login": "Piyushseth55", "streak": 1 }, - { "login": "abhay-sen", "streak": 1 }, - { "login": "Vivek11550", "streak": 1 }, - { "login": "Harman1010", "streak": 1 }, - { "login": "KartikRajOfficial", "streak": 1 }, - { "login": "akshatsharma2407", "streak": 1 }, - { "login": "JVENKATAPHANISAI", "streak": 1 }, - { "login": "HardikTripathi04", "streak": 1 }, - { "login": "Laxelspal", "streak": 1 }, - { "login": "Varun-Sethi-Dev", "streak": 1 }, - { "login": "AritraCh2005", "streak": 1 }, - { "login": "Kishita16", "streak": 1 }, - { "login": "Jaishree-baskaran", "streak": 1 }, - { "login": "yp9435", "streak": 1 }, - { "login": "swataswayam-14", "streak": 1 }, - { "login": "SanskarShrivastava", "streak": 1 }, - { "login": "SHREEYANSH764", "streak": 1 }, - { "login": "ayush2281", "streak": 1 }, - { "login": "Jayashree-04", "streak": 1 }, - { "login": "Unknownmaster0", "streak": 1 }, - { "login": "NeerajaGurram", "streak": 1 }, - { "login": "its-AkshatJain", "streak": 1 }, - { "login": "DG8131", "streak": 1 }, - { "login": "Sudhish23", "streak": 1 }, - { "login": "CapAru", "streak": 1 }, - { "login": "nikkittaa", "streak": 1 }, - { "login": "MrCodYrohit", "streak": 1 }, - { "login": "yashikakedia", "streak": 1 }, - { "login": "codebreaker3008", "streak": 1 }, - { "login": "Danish0703", "streak": 1 }, - { "login": "Akash-nema", "streak": 1 }, - { "login": "Prakharkhandelwal02", "streak": 1 }, - { "login": "rahul-2004-json", "streak": 1 }, - { "login": "ayoush-kumar", "streak": 1 }, - { "login": "kesri9211", "streak": 1 }, - { "login": "LalithKumar77", "streak": 1 }, - { "login": "khushikunte", "streak": 1 }, - { "login": "av0422", "streak": 1 }, - { "login": "Unalia09", "streak": 1 }, - { "login": "Ajay-patidar0", "streak": 1 }, - { "login": "prajwal9773", "streak": 1 }, - { "login": "pragyamyra", "streak": 1 }, - { "login": "TejaKumar123", "streak": 1 }, - { "login": "MuskaanMohta", "streak": 1 }, - { "login": "codewithishu", "streak": 1 }, - { "login": "Vatsal-D07", "streak": 1 }, - { "login": "gopi-trip", "streak": 1 }, - { "login": "khushbujain41709", "streak": 1 }, - { "login": "iemafzalhassan", "streak": 1 }, - { "login": "iam-salman", "streak": 1 }, - { "login": "shobit000", "streak": 1 }, - { "login": "ramajaiswal08", "streak": 1 }, - { "login": "Kulashekar01", "streak": 1 }, - { "login": "siddhima22", "streak": 1 }, - { "login": "ajayprataptomar", "streak": 1 }, - { "login": "Anuj054", "streak": 1 }, - { "login": "Himanshityagii24", "streak": 1 }, - { "login": "vaxxnsh", "streak": 1 }, - { "login": "AnuragKr24", "streak": 1 }, - { "login": "kskeertana", "streak": 1 }, - { "login": "Pranali3103", "streak": 1 }, - { "login": "Nihal-Somarajupalli", "streak": 1 }, - { "login": "HE-MAN-22603", "streak": 1 }, - { "login": "saketh-05", "streak": 1 }, - { "login": "shivam2027", "streak": 1 }, - { "login": "harithaguna", "streak": 1 }, - { "login": "PallaviGudupallavi", "streak": 1 }, - { "login": "dipti-019", "streak": 1 }, - { "login": "Vaishali-ajmera", "streak": 1 }, - { "login": "SHARITHA2002", "streak": 1 }, - { "login": "PRAYAG0908", "streak": 1 }, - { "login": "Dhanashree170", "streak": 1 }, - { "login": "moutamarakshit", "streak": 1 }, - { "login": "SarthVader2004", "streak": 1 }, - { "login": "JansiSabharwal05", "streak": 1 }, - { "login": "jigglypufflazybaby", "streak": 1 }, - { "login": "saikuladeepgithub", "streak": 1 }, - { "login": "KDevendra", "streak": 1 }, - { "login": "saumyajainnn", "streak": 1 }, - { "login": "yash-tyagi-2003", "streak": 1 }, - { "login": "yash21sriv", "streak": 1 }, - { "login": "Naincy04", "streak": 1 }, - { "login": "Virucodes", "streak": 1 }, - { "login": "DevPatel1023", "streak": 1 }, - { "login": "Dharanilakkireddy", "streak": 1 }, - { "login": "dushyant2909", "streak": 1 }, - { "login": "ChandelAnish", "streak": 1 }, - { "login": "MadduHarshitha30", "streak": 1 }, - { "login": "AdityaPrakash-03", "streak": 1 }, - { "login": "mb-aarfi", "streak": 1 }, - { "login": "BagchiShreya", "streak": 1 }, - { "login": "pragnapadamata", "streak": 1 }, - { "login": "abhi-la-sha", "streak": 1 }, - { "login": "MavSneha", "streak": 1 }, - { "login": "Siwanikaushik", "streak": 1 }, - { "login": "gauribahuguna21", "streak": 1 }, - { "login": "sandeep-garai", "streak": 1 }, - { "login": "vaidehi134", "streak": 1 }, - { "login": "KshitijaGiradkar", "streak": 1 }, - { "login": "Kalamatha-Eshwari", "streak": 1 }, - { "login": "Bharath200415", "streak": 1 }, - { "login": "Woookiiee", "streak": 1 }, - { "login": "nikitha-kandi", "streak": 1 }, - { "login": "sahithialeti", "streak": 1 }, - { "login": "gunner26735", "streak": 1 }, - { "login": "yashi-025", "streak": 1 }, - { "login": "Kashif581", "streak": 1 }, - { "login": "Rajneeshkarya", "streak": 1 }, - { "login": "MrPC7", "streak": 1 }, - { "login": "Mrigaank-9", "streak": 1 }, - { "login": "rawani123", "streak": 1 }, - { "login": "satyaveni299", "streak": 1 }, - { "login": "Ravindrak0812", "streak": 1 }, - { "login": "Peehu1308", "streak": 1 }, - { "login": "anmol-2004", "streak": 1 }, - { "login": "s4sanyaa", "streak": 1 }, - { "login": "Prateek0305", "streak": 1 }, - { "login": "ashishmishra4444", "streak": 1 }, - { "login": "Nimisha-Mavar", "streak": 1 }, - { "login": "AkshayKankaria", "streak": 1 }, - { "login": "Amarta113", "streak": 1 }, - { "login": "Madhuri36", "streak": 1 }, - { "login": "Abhay182005dat", "streak": 1 }, - { "login": "Ishitva744", "streak": 1 }, - { "login": "d1vyadharsh1n1", "streak": 1 }, - { "login": "Asha0509", "streak": 1 }, - { "login": "rishmiiee26", "streak": 1 }, - { "login": "Shubh-88", "streak": 1 }, - { "login": "tanisha290", "streak": 1 }, - { "login": "Aishwaryaa-22", "streak": 1 }, - { "login": "Harleen-786", "streak": 1 }, - { "login": "AratiAmbekar", "streak": 1 }, - { "login": "SomyaAggarwal1209", "streak": 1 }, - { "login": "Tanaya-1-2-3", "streak": 1 }, - { "login": "Sayanmaity2003", "streak": 1 }, - { "login": "tubakhxn", "streak": 1 }, - { "login": "khushi-upadhyay", "streak": 1 }, - { "login": "somyasaxena01", "streak": 1 }, - { "login": "varunallagh21022002", "streak": 1 }, - { "login": "Mitul1927", "streak": 1 }, - { "login": "sobhitsinghal", "streak": 1 }, - { "login": "gitshott", "streak": 1 }, - { "login": "NAVJOT-786", "streak": 1 }, - { "login": "SaurabhJha19", "streak": 1 }, - { "login": "Natasha-kush", "streak": 1 }, - { "login": "chanmeet01", "streak": 1 }, - { "login": "singhtanishq", "streak": 1 }, - { "login": "kartheekmule", "streak": 1 }, - { "login": "rainybug11", "streak": 1 }, - { "login": "Samriddha49", "streak": 1 }, - { "login": "Yatin-Sabikhi", "streak": 1 }, - { "login": "Aditi-Gupta-dev", "streak": 1 }, - { "login": "V-anisha", "streak": 1 }, - { "login": "SkandSingh", "streak": 1 }, - { "login": "githubshivanshukumarsrivastava", "streak": 1 }, - { "login": "hitanshu04", "streak": 1 }, - { "login": "khushikhuranaa2", "streak": 1 }, - { "login": "Varshini0703", "streak": 1 }, - { "login": "761jayanth8", "streak": 1 }, - { "login": "yashika-45", "streak": 1 }, - { "login": "b-nimai", "streak": 1 }, - { "login": "Sreejita-code", "streak": 1 }, - { "login": "khush200145", "streak": 1 }, - { "login": "DownOnCoffee", "streak": 1 }, - { "login": "Rizwanahmad07", "streak": 1 }, - { "login": "disha3110", "streak": 1 }, - { "login": "snehasahu7", "streak": 1 }, - { "login": "Manojkumar1007", "streak": 1 }, - { "login": "Sudiksha18", "streak": 1 }, - { "login": "radharashmitha", "streak": 1 }, - { "login": "Ananya-Singh1901", "streak": 1 }, - { "login": "vishal-sharma-369", "streak": 1 }, - { "login": "Ayushi22-coder", "streak": 1 }, - { "login": "Sandhyarani23", "streak": 1 }, - { "login": "abd0777", "streak": 1 }, - { "login": "Rahufkhan", "streak": 1 }, - { "login": "harshitha0004", "streak": 1 }, - { "login": "sherinbaiju", "streak": 1 }, - { "login": "23Anushkac", "streak": 1 }, - { "login": "SAHILMPATIL", "streak": 1 }, - { "login": "Rutvik-121", "streak": 1 }, - { "login": "najir83", "streak": 1 }, - { "login": "sonikirtan110", "streak": 1 }, - { "login": "TechSenseiX", "streak": 1 }, - { "login": "dev-rsiva", "streak": 1 }, - { "login": "shadabalam78698", "streak": 1 }, - { "login": "SimantaSarma", "streak": 1 }, - { "login": "KhushAgrawal001", "streak": 1 }, - { "login": "Tanya-Nagpal", "streak": 1 }, - { "login": "KARTHIK174", "streak": 1 }, - { "login": "aindrelasaha", "streak": 1 }, - { "login": "Sadhvika55", "streak": 1 }, - { "login": "Amrit-Raj-17", "streak": 1 }, - { "login": "virenK0211", "streak": 1 }, - { "login": "MUKUL-RAJPUT2004", "streak": 1 }, - { "login": "Kanishk-03-Jain", "streak": 1 }, - { "login": "AshaSatpathy08", "streak": 1 }, - { "login": "SaumyaSinha11", "streak": 1 }, - { "login": "RishitaChourey", "streak": 1 }, - { "login": "Riddhima-sh", "streak": 1 }, - { "login": "saisri0102", "streak": 1 }, - { "login": "Ritika-sahu", "streak": 1 }, - { "login": "NittinBalajee1", "streak": 1 }, - { "login": "Aditya01229", "streak": 1 }, - { "login": "Ishika0-0", "streak": 1 }, - { "login": "mohit2202solanki", "streak": 1 }, - { "login": "pgit80", "streak": 1 }, - { "login": "Agrima11", "streak": 1 }, - { "login": "MitvaGami", "streak": 1 }, - { "login": "AaryaBalwadkar", "streak": 1 }, - { "login": "JyothsnaThangudu", "streak": 1 }, - { "login": "Hemav009", "streak": 1 }, - { "login": "Dishika18", "streak": 1 }, - { "login": "22bce355", "streak": 1 }, - { "login": "Shirapti-nath", "streak": 1 }, - { "login": "SuhainaFathimaM", "streak": 1 }, - { "login": "ISHAAN-KKR", "streak": 1 }, - { "login": "Ayushmaanagarwal1211", "streak": 1 }, - { "login": "nancyvaryani", "streak": 1 }, - { "login": "Mohitgit22", "streak": 1 }, - { "login": "Varshithays", "streak": 1 }, - { "login": "Akshayata101", "streak": 1 }, - { "login": "KaushikBarnwal", "streak": 1 }, - { "login": "RiddhiMenroy", "streak": 1 }, - { "login": "AnushkaJainFirst", "streak": 1 }, - { "login": "pranavimehta13", "streak": 1 }, - { "login": "arnab-mitra", "streak": 1 }, - { "login": "Ambika03p", "streak": 1 }, - { "login": "Preeti-deora", "streak": 1 }, - { "login": "AkhilJain5", "streak": 1 }, - { "login": "karthikreddydasari", "streak": 1 }, - { "login": "bhumii-ka", "streak": 1 }, - { "login": "ApurvaDharam", "streak": 1 }, - { "login": "BhargavTammana", "streak": 1 }, - { "login": "adititapariya", "streak": 1 }, - { "login": "nagalakshmi08", "streak": 1 }, - { "login": "spacedust26", "streak": 1 }, - { "login": "Navyazitya", "streak": 1 }, - { "login": "shrutisachan08", "streak": 1 }, - { "login": "KhushmitaKapoor", "streak": 1 }, - { "login": "anshika-gupta21", "streak": 1 }, - { "login": "Tanish2510", "streak": 1 }, - { "login": "AnkitaWaghode25", "streak": 1 }, - { "login": "anushreenair", "streak": 1 }, - { "login": "sshreyanshii", "streak": 1 }, - { "login": "amitdhiman5086", "streak": 1 }, - { "login": "ayushpant007", "streak": 1 }, - { "login": "prajwaldp223", "streak": 1 }, - { "login": "richa-dasila", "streak": 1 }, - { "login": "GAVINESHWAR", "streak": 1 }, - { "login": "ishankumax", "streak": 1 }, - { "login": "anythingkartik", "streak": 1 }, - { "login": "Dovineowuor", "streak": 1 }, - { "login": "siimrann", "streak": 1 }, - { "login": "ABaijal9", "streak": 1 }, - { "login": "Helios-snd", "streak": 1 }, - { "login": "Vika0408", "streak": 1 }, - { "login": "VanshikaSabharwal", "streak": 1 }, - { "login": "arjav-sankadasariya", "streak": 1 }, - { "login": "muskan18113", "streak": 1 }, - { "login": "navjot369", "streak": 1 }, - { "login": "realHKV", "streak": 1 }, - { "login": "SwastikGiri", "streak": 1 }, - { "login": "mtg718", "streak": 1 }, - { "login": "sinchana91", "streak": 1 }, - { "login": "Chelseasingla1", "streak": 1 }, - { "login": "saswat733", "streak": 1 }, - { "login": "SaiTejaswaniBikkasani", "streak": 1 }, - { "login": "ketaki-c", "streak": 1 }, - { "login": "mrrahulkrr", "streak": 1 }, - { "login": "Vishvajeetr", "streak": 1 }, - { "login": "Uma-129", "streak": 1 }, - { "login": "zoey-11", "streak": 1 }, - { "login": "vishalmaurya850", "streak": 1 }, - { "login": "ashishraja", "streak": 1 }, - { "login": "nik-r-cmd", "streak": 1 }, - { "login": "MoonStar05", "streak": 1 }, - { "login": "Shivamm138", "streak": 1 }, - { "login": "ojuss", "streak": 1 }, - { "login": "kusumdesai", "streak": 1 }, - { "login": "sujal1256", "streak": 1 }, - { "login": "asinha828", "streak": 1 }, - { "login": "Aryan-joh", "streak": 1 }, - { "login": "avidhanorkar", "streak": 1 }, - { "login": "Pranavi-04", "streak": 1 }, - { "login": "Prannav-Bansal", "streak": 1 }, - { "login": "Swapnita06", "streak": 1 }, - { "login": "jayeshpandey01", "streak": 1 }, - { "login": "Gaurav-576", "streak": 1 }, - { "login": "Madhurima-R04", "streak": 1 }, - { "login": "astitvabajpai", "streak": 1 }, - { "login": "Vaishalic288", "streak": 1 }, - { "login": "yashika1900", "streak": 1 }, - { "login": "NamanJain795", "streak": 1 }, - { "login": "Taiyorath", "streak": 1 }, - { "login": "ancelia06", "streak": 1 }, - { "login": "SwayamTakkamore", "streak": 1 }, - { "login": "meenal900", "streak": 1 }, - { "login": "221fa04732", "streak": 1 }, - { "login": "Greesma-225B1", "streak": 1 }, - { "login": "nihardas0611", "streak": 1 }, - { "login": "jinamsancheti", "streak": 1 }, - { "login": "aryah22", "streak": 1 }, - { "login": "preethikamal", "streak": 1 }, - { "login": "PSP2706", "streak": 1 }, - { "login": "Mr-mahato", "streak": 1 }, - { "login": "07sumit1002", "streak": 1 }, - { "login": "deepak9285", "streak": 1 }, - { "login": "bhanushri12", "streak": 1 }, - { "login": "Mukta64Chaudhari", "streak": 1 }, - { "login": "hpishwe", "streak": 1 }, - { "login": "supersaif08", "streak": 1 }, - { "login": "technicalkuldeep", "streak": 1 }, - { "login": "SaiMani30", "streak": 1 }, - { "login": "sahilsingh2002", "streak": 1 }, - { "login": "ayush-kumarrai", "streak": 1 }, - { "login": "Shadowsweep", "streak": 1 }, - { "login": "pearll12", "streak": 1 }, - { "login": "roushanverma23", "streak": 1 }, - { "login": "Bhumika1312", "streak": 1 }, - { "login": "gantasrilaitha", "streak": 1 }, - { "login": "Hamsikakrishnan", "streak": 1 }, - { "login": "NavuluriBalaji", "streak": 1 }, - { "login": "Thewhitewolfsasi", "streak": 1 }, - { "login": "Pearlochani131677", "streak": 1 }, - { "login": "rahuls49", "streak": 1 }, - { "login": "aryadavare19", "streak": 1 }, - { "login": "aditibais", "streak": 1 }, - { "login": "MuraliDharan7", "streak": 1 }, - { "login": "Suryansh777777", "streak": 1 }, - { "login": "sanikadeokule", "streak": 1 }, - { "login": "Jeba-Rachel-Nesica", "streak": 1 }, - { "login": "rickyrick23", "streak": 1 }, - { "login": "ankitgupta143", "streak": 1 }, - { "login": "VedantKale29", "streak": 1 }, - { "login": "BhattAnsh", "streak": 1 }, - { "login": "kartikmehta18", "streak": 1 }, - { "login": "kruthi-sb", "streak": 1 }, - { "login": "bhavananb062020", "streak": 2 }, - { "login": "sachin2003226", "streak": 1 }, - { "login": "Yashhuc", "streak": 1 }, - { "login": "charu1110", "streak": 2 }, - { "login": "anshdeep0504", "streak": 1 }, - { "login": "SumithThota", "streak": 2 }, - { "login": "coderiksenthil", "streak": 2 }, - { "login": "ShireenKachroo", "streak": 1 }, - { "login": "ADITHYA-NS", "streak": 1 }, - { "login": "tanishqkolhatkar93", "streak": 1 }, - { "login": "Mohith1490", "streak": 1 }, - { "login": "RaginiSharma01", "streak": 1 }, - { "login": "hetvipopat", "streak": 1 }, - { "login": "RudraKumarSharma", "streak": 2 }, - { "login": "KeshavGogia", "streak": 1 }, - { "login": "Namit2111", "streak": 1 }, - { "login": "KAJAL7764", "streak": 1 }, - { "login": "paricharm", "streak": 1 }, - { "login": "Anujyadav0074", "streak": 1 }, - { "login": "1101surabhi", "streak": 1 }, - { "login": "om453", "streak": 1 }, - { "login": "Parnab03", "streak": 2 }, - { "login": "rasmirajesh", "streak": 1 }, - { "login": "ShreyanshAgrawal17", "streak": 2 }, - { "login": "RishabxBhardwaj", "streak": 1 }, - { "login": "sahithinandikula", "streak": 1 }, - { "login": "s0wjanyaa", "streak": 2 }, - { "login": "rohitsharma2610", "streak": 1 }, - { "login": "bhatiatanish225", "streak": 1 }, - { "login": "mjgandhi2305", "streak": 1 }, - { "login": "diva711", "streak": 1 }, - { "login": "Anu142004", "streak": 1 }, - { "login": "codewithganeshhh", "streak": 1 }, - { "login": "Khushi-Dua", "streak": 1 }, - { "login": "subhro1530", "streak": 1 }, - { "login": "sruthi070", "streak": 1 }, - { "login": "NitishKumar525", "streak": 1 }, - { "login": "spc-28", "streak": 1 }, - { "login": "ShivaniNikam1", "streak": 2 }, - { "login": "QaisarMoin", "streak": 2 }, - { "login": "divyansh-2005", "streak": 1 }, - { "login": "Vijitverm1234", "streak": 1 }, - { "login": "Ashutoshrai10630", "streak": 1 }, - { "login": "GarimaSingh0109", "streak": 1 }, - { "login": "Gaurav075", "streak": 1 }, - { "login": "ankitkrdubey", "streak": 2 }, - { "login": "Deepanshi0019", "streak": 1 }, - { "login": "harjasae2001", "streak": 1 }, - { "login": "CharVaibhav", "streak": 1 }, - { "login": "Hemant9808", "streak": 2 }, - { "login": "sank8-2", "streak": 2 }, - { "login": "Aum8", "streak": 1 }, - { "login": "krish2366", "streak": 1 }, - { "login": "Cgarg9", "streak": 1 }, - { "login": "Monojit-Pal", "streak": 1 }, - { "login": "divyanshii10", "streak": 1 }, - { "login": "Rohinipilla", "streak": 1 }, - { "login": "toxic-for-code", "streak": 1 }, - { "login": "ananydev", "streak": 1 }, - { "login": "PrasanBora", "streak": 1 }, - { "login": "abhisek247767", "streak": 1 }, - { "login": "Ambit-ion", "streak": 1 }, - { "login": "swarupn17", "streak": 2 }, - { "login": "icemberg", "streak": 1 }, - { "login": "ayush-singh-26", "streak": 1 }, - { "login": "ArinNigam", "streak": 1 }, - { "login": "GautamBytes", "streak": 1 }, - { "login": "Geet2002", "streak": 2 }, - { "login": "Rohit-Gupta-126", "streak": 1 }, - { "login": "Ronnit44", "streak": 1 }, - { "login": "peterdanwan", "streak": 1 }, - { "login": "NilanchalaPanda", "streak": 1 }, - { "login": "MutiatBash", "streak": 1 }, - { "login": "syedfardeenjeelani", "streak": 1 }, - { "login": "Roshansuthar1105", "streak": 1 }, - { "login": "Ibrangrd", "streak": 1 }, - { "login": "mdthejaswini123", "streak": 1 }, - { "login": "sps234", "streak": 2 }, - { "login": "akankshagoel28", "streak": 1 }, - { "login": "MuhammadAshraf23", "streak": 1 }, - { "login": "Anchal-C09", "streak": 1 }, - { "login": "rielara", "streak": 1 }, - { "login": "softcreations01", "streak": 1 }, - { "login": "codingkatty", "streak": 1 }, - { "login": "Roshn1", "streak": 1 }, - { "login": "agrawal-2005", "streak": 1 }, - { "login": "aryanbroy", "streak": 1 }, - { "login": "VinaySatrasala", "streak": 1 }, - { "login": "exilonium", "streak": 1 }, - { "login": "SaiChithra333", "streak": 1 }, - { "login": "susrithasabbini", "streak": 1 }, - { "login": "nafri-dev", "streak": 1 }, - { "login": "Manojkumar2806", "streak": 1 }, - { "login": "Aman-git06", "streak": 1 }, - { "login": "RohanSai22", "streak": 1 }, - { "login": "Bhabuk10", "streak": 1 }, - { "login": "sujal-GITHUB", "streak": 1 }, - { "login": "Mahi3454", "streak": 1 }, - { "login": "kartik1112", "streak": 1 }, - { "login": "NishantRana07", "streak": 1 }, - { "login": "madhavi-peddireddy", "streak": 1 }, - { "login": "Rashigera", "streak": 1 }, - { "login": "karanmaheshwari16", "streak": 1 }, - { "login": "aasritha-24", "streak": 1 }, - { "login": "Ruksina01", "streak": 1 }, - { "login": "CygnusST3RN", "streak": 1 }, - { "login": "jashwanthbavandlapalli", "streak": 1 }, - { "login": "IRFANSARI2", "streak": 1 }, - { "login": "omkar861856", "streak": 1 }, - { "login": "iamDyeus", "streak": 1 }, - { "login": "MisbahAnsar", "streak": 1 }, - { "login": "MohammedMusharraf11", "streak": 1 }, - { "login": "Atharv-110", "streak": 1 }, - { "login": "syedmohammadaquib", "streak": 1 }, - { "login": "ShrutiDesai7", "streak": 1 }, - { "login": "ayush-badola", "streak": 1 }, - { "login": "UdaySharmaGitHub", "streak": 1 }, - { "login": "Saurabh-Sithkar", "streak": 1 }, - { "login": "Ayush07571", "streak": 1 }, - { "login": "apoorvxgoyalx", "streak": 1 }, - { "login": "Ayo-J", "streak": 2 }, - { "login": "Jeeban-2006", "streak": 1 }, - { "login": "srikanth-maganti", "streak": 1 }, - { "login": "so-bhannn", "streak": 1 }, - { "login": "Skibo555", "streak": 1 }, - { "login": "SAURABHM6341", "streak": 1 }, - { "login": "sanghaibiraj", "streak": 1 }, - { "login": "Drumsofliberation", "streak": 1 }, - { "login": "Kritikaadhikarii", "streak": 1 }, - { "login": "Kishore007raj", "streak": 1 }, - { "login": "Sai-Dangade777", "streak": 1 }, - { "login": "rahulkumarparida", "streak": 1 }, - { "login": "Adityakashyap1011", "streak": 1 }, - { "login": "kashishchadha", "streak": 1 }, - { "login": "Kush0l", "streak": 1 }, - { "login": "Molza01", "streak": 1 }, - { "login": "torok839098", "streak": 1 }, - { "login": "Vijay1667", "streak": 1 }, - { "login": "Mr-Mysterious001", "streak": 1 }, - { "login": "Mayank-joshi-21", "streak": 1 }, - { "login": "pratapVansh", "streak": 1 }, - { "login": "AnuragPrasad003", "streak": 1 }, - { "login": "mitgajera", "streak": 1 }, - { "login": "Sahitya317", "streak": 1 }, - { "login": "meayushsriv", "streak": 1 }, - { "login": "NirajD04", "streak": 1 }, - { "login": "Yusufiqbal15", "streak": 1 }, - { "login": "AppajiDheeraj", "streak": 1 }, - { "login": "wgeenath", "streak": 1 }, - { "login": "AnantInamdar77", "streak": 1 }, - { "login": "Tejashri-Taral", "streak": 1 }, - { "login": "akanchha-rani", "streak": 1 }, - { "login": "Harshgupta88156", "streak": 1 }, - { "login": "BKarthik7", "streak": 1 }, - { "login": "akshayabankumidi", "streak": 1 }, - { "login": "ManmathX", "streak": 1 }, - { "login": "Samar-Ali-Ansari", "streak": 1 }, - { "login": "Prerrna", "streak": 1 }, - { "login": "Addhithya", "streak": 1 }, - { "login": "Abhiiesante", "streak": 1 }, - { "login": "Vatsal565", "streak": 1 }, - { "login": "Nikhat623446", "streak": 1 }, - { "login": "Satyabrat2005", "streak": 1 }, - { "login": "AvgBlank", "streak": 1 }, - { "login": "TEJAS07080", "streak": 1 }, - { "login": "lazzysimp", "streak": 1 }, - { "login": "adityadhawan44", "streak": 1 }, - { "login": "Jayant7579", "streak": 1 }, - { "login": "Ravibabu910", "streak": 1 }, - { "login": "EspeonIV", "streak": 1 }, - { "login": "tripujjawal", "streak": 1 }, - { "login": "namankoolwal", "streak": 1 }, - { "login": "Venkateeshh", "streak": 1 }, - { "login": "SRIJAN-KUMAR7", "streak": 1 }, - { "login": "PranayBhatnagar", "streak": 1 }, - { "login": "VedasreeM", "streak": 1 }, - { "login": "Coder-Harsha-2805", "streak": 1 }, - { "login": "Harsha-01-cmd", "streak": 1 }, - { "login": "KrishKoria", "streak": 1 }, - { "login": "vanshchauhan21", "streak": 1 }, - { "login": "AnjanaS2004", "streak": 1 }, - { "login": "Dcoder10M", "streak": 1 }, - { "login": "tusharshah21", "streak": 1 }, - { "login": "hemanvithapullela0456", "streak": 1 }, - { "login": "priyanshu778", "streak": 1 }, - { "login": "Adithyasharma1162", "streak": 1 }, - { "login": "ayushtiwari18", "streak": 1 }, - { "login": "LavishaMhjn1910", "streak": 1 }, - { "login": "Sadman95", "streak": 1 }, - { "login": "kumar1035", "streak": 1 }, - { "login": "Vivek-C365", "streak": 1 }, - { "login": "ritumehta302002", "streak": 1 }, - { "login": "cypher4802", "streak": 1 }, - { "login": "jaya005", "streak": 1 }, - { "login": "ANJI1026", "streak": 1 }, - { "login": "n14rishitha", "streak": 1 }, - { "login": "gangadharbhavi-7", "streak": 1 }, - { "login": "dhruvsinha3130", "streak": 1 }, - { "login": "khushi5824", "streak": 1 }, - { "login": "arvinder004", "streak": 1 }, - { "login": "Axestein", "streak": 1 }, - { "login": "adi271001", "streak": 1 }, - { "login": "Akashrrrrd", "streak": 1 }, - { "login": "shashankch2003", "streak": 1 }, - { "login": "DivyaN10", "streak": 1 }, - { "login": "22Rupesh", "streak": 1 }, - { "login": "aryanbarde80", "streak": 1 }, - { "login": "suryapratapsinghsuryavanshi", "streak": 1 }, - { "login": "paras-verma7454", "streak": 1 }, - { "login": "0xkrishu", "streak": 1 }, - { "login": "khushiii-6510", "streak": 1 }, - { "login": "deepesh611", "streak": 1 }, - { "login": "HetuKariya", "streak": 1 }, - { "login": "Ayushgautam16", "streak": 1 }, - { "login": "shubhanshurav", "streak": 1 }, - { "login": "LazyCodwr", "streak": 1 }, - { "login": "PIYUSH1525", "streak": 1 }, - { "login": "MonishRaman", "streak": 1 }, - { "login": "suryapratap04", "streak": 1 }, - { "login": "Shrutakeerti", "streak": 1 }, - { "login": "Harshavardhan2k3", "streak": 1 }, - { "login": "vcerpasalas", "streak": 1 }, - { "login": "tanishraj7", "streak": 1 }, - { "login": "Abdus-8747", "streak": 1 }, - { "login": "anish013326", "streak": 1 }, - { "login": "Harsh-KumarJha", "streak": 1 }, - { "login": "Sanchita76", "streak": 1 }, - { "login": "Herostomo", "streak": 1 }, - { "login": "saatvika07", "streak": 1 }, - { "login": "palak-k5", "streak": 1 }, - { "login": "PunithaNarasegowda", "streak": 1 }, - { "login": "shahanxd", "streak": 1 }, - { "login": "ShobhitPatra", "streak": 1 }, - { "login": "TanishqMehrunkarIIPSDAVV", "streak": 1 }, - { "login": "Aastik-Mehta-22", "streak": 1 }, - { "login": "iamkaniska", "streak": 1 }, - { "login": "Reboot2004", "streak": 1 }, - { "login": "wasif1", "streak": 1 }, - { "login": "Subhadeep-khawas", "streak": 1 }, - { "login": "Ravi10300", "streak": 1 }, - { "login": "shruti9935", "streak": 1 }, - { "login": "Yash-Jadaun", "streak": 1 }, - { "login": "Khatwangadhareddy", "streak": 1 }, - { "login": "Abhishek123a45", "streak": 1 }, - { "login": "vararaghu002", "streak": 1 }, - { "login": "Arushi-N4", "streak": 1 }, - { "login": "mrvishalsharma01", "streak": 1 }, - { "login": "Dnyaneshpise", "streak": 1 }, - { "login": "weshaan", "streak": 1 }, - { "login": "fahadshahbaz", "streak": 1 }, - { "login": "sakshikedari", "streak": 1 }, - { "login": "varun1982000", "streak": 1 }, - { "login": "prashikk", "streak": 1 }, - { "login": "hkcodings", "streak": 1 }, - { "login": "Shreya-0510", "streak": 1 }, - { "login": "sandy-queen", "streak": 1 }, - { "login": "tejamajji", "streak": 1 }, - { "login": "albinsabu2023", "streak": 1 }, - { "login": "Rajankit26", "streak": 1 }, - { "login": "YOGINIMAHIMA1", "streak": 1 }, - { "login": "CoolCoder431", "streak": 1 }, - { "login": "Prarthana-35", "streak": 1 }, - { "login": "akshayks13", "streak": 1 }, - { "login": "NISHAKUSHWAHA23", "streak": 1 }, - { "login": "Hope-Alemayehu", "streak": 1 }, - { "login": "kuhupatel15", "streak": 1 }, - { "login": "shrutisk0405", "streak": 1 }, - { "login": "aman5062", "streak": 1 }, - { "login": "KharjulSneha", "streak": 1 }, - { "login": "Ishitagu", "streak": 1 }, - { "login": "ADeshmukh80", "streak": 1 }, - { "login": "Nbisht1208", "streak": 1 }, - { "login": "samalsubrat", "streak": 1 }, - { "login": "RebellionR2", "streak": 1 }, - { "login": "XIVASSS", "streak": 1 }, - { "login": "viveksarkar0", "streak": 1 }, - { "login": "powerstone666", "streak": 1 }, - { "login": "ashu273k", "streak": 1 }, - { "login": "Peddinti-Sriram-Bharadwaj", "streak": 1 }, - { "login": "ris-gzp", "streak": 1 }, - { "login": "mohit-1710", "streak": 1 }, - { "login": "mohitahlawat2001", "streak": 1 }, - { "login": "zadescoxp", "streak": 1 }, - { "login": "Bashamega", "streak": 1 }, - { "login": "mwango-phoenix", "streak": 1 }, - { "login": "harshucoder", "streak": 1 }, - { "login": "mansaa15", "streak": 1 }, - { "login": "Tanish2207", "streak": 1 }, - { "login": "prateek-1803", "streak": 1 }, - { "login": "RacharlaSanjana", "streak": 1 }, - { "login": "PrasannaKasar", "streak": 1 }, - { "login": "vishnumur777", "streak": 1 }, - { "login": "DebanKsahu", "streak": 1 }, - { "login": "Ultimecia1463", "streak": 1 }, - { "login": "ReaganBlade", "streak": 1 }, - { "login": "ohmschrodinger", "streak": 1 }, - { "login": "shubhamkumaar", "streak": 1 }, - { "login": "Manshu555", "streak": 1 }, - { "login": "its-kumar-yash", "streak": 1 }, - { "login": "Speedysays01", "streak": 1 }, - { "login": "ShreyasNandanwar", "streak": 1 }, - { "login": "MarvelMathesh", "streak": 1 }, - { "login": "azhar47-sk", "streak": 1 }, - { "login": "HarshAgrawal1", "streak": 1 }, - { "login": "tronbeing3030", "streak": 1 }, - { "login": "Diya050", "streak": 1 }, - { "login": "Saransh-Jainbu", "streak": 1 }, - { "login": "LovkashGarg", "streak": 1 }, - { "login": "Sejalitgithub", "streak": 1 }, - { "login": "Coder-Bhoomi", "streak": 1 }, - { "login": "Mahesh2k5", "streak": 1 }, - { "login": "TejasSaraf", "streak": 1 }, - { "login": "Sandigupta", "streak": 1 }, - { "login": "5odead", "streak": 1 }, - { "login": "navanish07", "streak": 1 }, - { "login": "Emilio-PdeA", "streak": 1 }, - { "login": "HackesticMedusa", "streak": 1 }, - { "login": "tharun634", "streak": 1 }, - { "login": "linga-007", "streak": 1 }, - { "login": "bhushankhopkarr", "streak": 1 }, - { "login": "Diya-Saha2005", "streak": 1 }, - { "login": "yeolesanskruti", "streak": 1 }, - { "login": "Kcode15", "streak": 1 }, - { "login": "sumitrajput96", "streak": 1 }, - { "login": "DPS-2912", "streak": 1 }, - { "login": "Arushi2S", "streak": 1 }, - { "login": "o0PHOENIX0o", "streak": 1 }, - { "login": "AshmitaBarthwal", "streak": 1 }, - { "login": "o-CodeBlitz-o", "streak": 1 }, - { "login": "vivek-anand-singh", "streak": 1 }, - { "login": "Fahad-Ali-Khan-ca", "streak": 1 }, - { "login": "Nandinipatil1410", "streak": 1 }, - { "login": "PranavKndpl", "streak": 1 }, - { "login": "ifykykk", "streak": 1 }, - { "login": "JalinaH", "streak": 1 }, - { "login": "heyooJatinHere", "streak": 1 }, - { "login": "tanya-soni-git", "streak": 1 }, - { "login": "antan2002", "streak": 1 }, - { "login": "aparna-44", "streak": 1 }, - { "login": "shinshin86", "streak": 1 }, - { "login": "shreya5xiii", "streak": 1 }, - { "login": "RiyaBhurse", "streak": 1 }, - { "login": "ArthKulkarni93", "streak": 1 }, - { "login": "Abhiraj-Sardar", "streak": 1 }, - { "login": "Chinmayee-cd", "streak": 1 }, - { "login": "Divija-Arora", "streak": 1 }, - { "login": "shashank-lol", "streak": 1 }, - { "login": "akhilreddy20", "streak": 1 }, - { "login": "RitoG09", "streak": 1 }, - { "login": "Abhi-Jeeet", "streak": 1 }, - { "login": "Mayanksaininh", "streak": 1 }, - { "login": "poojitha-ch", "streak": 1 }, - { "login": "tusharmishra069", "streak": 1 }, - { "login": "hgjajoo", "streak": 1 }, - { "login": "Sakshi-maulekhi", "streak": 1 }, - { "login": "tt-a1i", "streak": 1 }, - { "login": "vridhichaudhary", "streak": 1 }, - { "login": "aslams2020", "streak": 1 }, - { "login": "vyom10445", "streak": 1 }, - { "login": "mahmoud-the-dev", "streak": 1 }, - { "login": "singh04ayush", "streak": 1 }, - { "login": "lucifer-990", "streak": 1 }, - { "login": "infrunamilacym", "streak": 1 }, - { "login": "TyagiManshi", "streak": 1 }, - { "login": "istanujbhatia", "streak": 1 }, - { "login": "aLok-1105", "streak": 1 }, - { "login": "Dharmadhaashan", "streak": 1 }, - { "login": "nikil107", "streak": 1 }, - { "login": "HarshVardhanSalve", "streak": 1 }, - { "login": "Ashishkr8802", "streak": 1 }, - { "login": "anmol2710", "streak": 1 }, - { "login": "rudalkunwar", "streak": 1 }, - { "login": "Virtual4087", "streak": 1 }, - { "login": "DanonymousCoder", "streak": 1 }, - { "login": "Utkarshrajmishra", "streak": 1 }, - { "login": "Abhijais4896", "streak": 1 }, - { "login": "Prashant1659", "streak": 1 }, - { "login": "kenzo0p", "streak": 1 }, - { "login": "Picodes10", "streak": 1 }, - { "login": "Syed-Farazuddin", "streak": 1 }, - { "login": "ItsVermaAbhi", "streak": 1 }, - { "login": "Akkash20", "streak": 1 }, - { "login": "Priyanshu1035", "streak": 1 }, - { "login": "SKADE2303", "streak": 1 }, - { "login": "gaurkrutika", "streak": 1 }, - { "login": "oathar", "streak": 1 }, - { "login": "lakshyeahh", "streak": 1 }, - { "login": "devalcodes", "streak": 1 }, - { "login": "Varshitha006", "streak": 1 }, - { "login": "TilteD24", "streak": 1 }, - { "login": "KRITHIYA", "streak": 1 }, - { "login": "RajaXSharma", "streak": 1 }, - { "login": "subrataCS", "streak": 1 }, - { "login": "AngadSudan", "streak": 1 }, - { "login": "mayur1377", "streak": 1 }, - { "login": "mukulkundu", "streak": 1 }, - { "login": "ShivaniSaini123", "streak": 1 }, - { "login": "amir-mansoor", "streak": 1 }, - { "login": "ambrishgoswami", "streak": 1 }, - { "login": "Asjdnnc", "streak": 1 }, - { "login": "rakeshkushwaha332", "streak": 1 }, - { "login": "AnshDwivedi03", "streak": 1 }, - { "login": "Nidhibansalll", "streak": 1 }, - { "login": "leonyangela", "streak": 1 }, - { "login": "swaraj-das", "streak": 1 }, - { "login": "Indugundam", "streak": 1 }, - { "login": "gollaanusha249", "streak": 1 }, - { "login": "shauryakushwaha08", "streak": 1 }, - { "login": "HemanthTigga", "streak": 1 }, - { "login": "Pruthviraj404", "streak": 1 }, - { "login": "RajukrRaja", "streak": 1 }, - { "login": "subodhsalgaonkar", "streak": 1 }, - { "login": "httpsumita", "streak": 1 }, - { "login": "jassBawa", "streak": 1 }, - { "login": "KrinsKumar", "streak": 1 }, - { "login": "aafaris", "streak": 1 }, - { "login": "shobhit15082003", "streak": 1 }, - { "login": "antidude900", "streak": 1 }, - { "login": "Kasaksaxena", "streak": 1 }, - { "login": "siddhant-2002", "streak": 1 }, - { "login": "Prince-1917", "streak": 1 }, - { "login": "Sonalika003", "streak": 1 }, - { "login": "arcane-2004", "streak": 1 }, - { "login": "chiragsaini96", "streak": 1 }, - { "login": "mashazyu", "streak": 1 }, - { "login": "j-mahapatra", "streak": 1 }, - { "login": "DeeptejD", "streak": 1 }, - { "login": "code-killer0", "streak": 2 }, - { "login": "poonam17122004", "streak": 1 }, - { "login": "Gunpreet08", "streak": 1 }, - { "login": "Aditya-NV-06", "streak": 1 }, - { "login": "Arijit-chakraborty2k24", "streak": 1 }, - { "login": "wouffle", "streak": 1 }, - { "login": "Deepikajyothi007", "streak": 1 }, - { "login": "11-sg", "streak": 1 }, - { "login": "Shiva-Bajpai", "streak": 1 }, - { "login": "JyotsnaGuntha", "streak": 2 }, - { "login": "nicolejorn", "streak": 1 }, - { "login": "Unnati2603", "streak": 1 }, - { "login": "charmi2109", "streak": 1 }, - { "login": "diwakarchaurasiya", "streak": 1 }, - { "login": "azfar-2", "streak": 1 }, - { "login": "aman8042", "streak": 1 }, - { "login": "divya7202", "streak": 1 }, - { "login": "shanvid19", "streak": 1 }, - { "login": "MohitGoyal09", "streak": 1 }, - { "login": "anurags10", "streak": 1 }, - { "login": "kaustubh0601", "streak": 1 }, - { "login": "abishekak18", "streak": 1 }, - { "login": "Isham17NIT", "streak": 1 }, - { "login": "GVishnudhasan", "streak": 1 }, - { "login": "Saumy1905", "streak": 1 }, - { "login": "AbhigyaKrishna", "streak": 1 }, - { "login": "amitthecoder", "streak": 1 }, - { "login": "umar-farooq-shaik", "streak": 1 }, - { "login": "Wangmo-inn", "streak": 1 }, - { "login": "raushan2104", "streak": 1 }, - { "login": "synthiaekka", "streak": 1 }, - { "login": "Ankitaghavate", "streak": 1 }, - { "login": "Khushi14404", "streak": 1 }, - { "login": "Nimitshekhawat", "streak": 1 }, - { "login": "CoderXYZ14", "streak": 1 }, - { "login": "manoj-netizenn", "streak": 1 }, - { "login": "ptskok", "streak": 1 }, - { "login": "anamelahi", "streak": 1 }, - { "login": "aswathcm29", "streak": 1 }, - { "login": "Wasid786", "streak": 1 }, - { "login": "Aryan-dev-enth", "streak": 1 }, - { "login": "ManojithBhat", "streak": 1 }, - { "login": "Aditi-008", "streak": 1 }, - { "login": "im-amanjai", "streak": 1 }, - { "login": "prachi-0319", "streak": 1 }, - { "login": "debabrata-15", "streak": 1 }, - { "login": "Harshvardhan5703", "streak": 1 }, - { "login": "JoyelJohny", "streak": 1 }, - { "login": "Shasha004", "streak": 1 }, - { "login": "PrakashIrom", "streak": 1 }, - { "login": "MohassinHussain", "streak": 1 }, - { "login": "Shane-3", "streak": 1 }, - { "login": "DeenuRSD", "streak": 1 }, - { "login": "IniyalPalanisamy", "streak": 1 }, - { "login": "abhishekpaturkar", "streak": 1 }, - { "login": "KaroK365", "streak": 1 }, - { "login": "Prabhatsingh001", "streak": 1 }, - { "login": "dino65-dev", "streak": 1 }, - { "login": "Saipradyumnagoud", "streak": 1 }, - { "login": "kvcops", "streak": 1 }, - { "login": "HRITVIK25", "streak": 1 }, - { "login": "VesperAkshay", "streak": 1 }, - { "login": "AlfiyaSiddique", "streak": 1 }, - { "login": "ankit071105", "streak": 1 }, - { "login": "RitiChandak", "streak": 1 }, - { "login": "arjunatapadkar", "streak": 1 }, - { "login": "VijaySingh8650", "streak": 1 }, - { "login": "saidinesh49", "streak": 1 }, - { "login": "munnavuyyuru", "streak": 1 }, - { "login": "elic4vet", "streak": 1 }, - { "login": "dipanshurdev", "streak": 1 }, - { "login": "Unnimaya6122004", "streak": 1 }, - { "login": "ragineedarade", "streak": 2 }, - { "login": "dhairyagothi", "streak": 1 }, - { "login": "Prithwi32", "streak": 1 }, - { "login": "UppuluriKalyani", "streak": 1 }, - { "login": "MastanSayyad", "streak": 1 }, - { "login": "ShivRaiGithub", "streak": 1 }, - { "login": "whyvineet", "streak": 1 }, - { "login": "c0sm0void", "streak": 1 }, - { "login": "Naveenkumar30838", "streak": 1 }, - { "login": "gyanshankar1708", "streak": 1 }, - { "login": "iituts", "streak": 1 }, - { "login": "anuragverma108", "streak": 1 }, - { "login": "PrinceYadav001", "streak": 1 }, - { "login": "SatyamThakur0", "streak": 1 }, - { "login": "saikatsardar01", "streak": 1 }, - { "login": "kaiyumdev", "streak": 1 }, - { "login": "AliGates915", "streak": 1 }, - { "login": "amanbind898", "streak": 1 }, - { "login": "AbhinavDhiman34", "streak": 1 }, - { "login": "PhilipJohn005", "streak": 1 }, - { "login": "AshuKr22", "streak": 1 }, - { "login": "AnitSarkar123", "streak": 1 }, - { "login": "Aryakhot", "streak": 1 }, - { "login": "Eshan05", "streak": 1 }, - { "login": "rivercory", "streak": 1 }, - { "login": "kshitijhadke26", "streak": 1 }, - { "login": "Alitindrawan24", "streak": 1 }, - { "login": "DhanushNehru", "streak": 1 }, - { "login": "LuciaSheel", "streak": 1 }, - { "login": "68mschmitt", "streak": 1 }, - { "login": "tushargupta1504", "streak": 1 }, - { "login": "Shiv13jm", "streak": 1 }, - { "login": "Munazir151", "streak": 1 }, - { "login": "sahilsama", "streak": 1 }, - { "login": "LoneStanding", "streak": 1 }, - { "login": "SadafKausar2025", "streak": 2 }, - { "login": "Ritikabiswas", "streak": 1 }, - { "login": "carlosfiori", "streak": 1 }, - { "login": "KirolosMFahem", "streak": 1 }, - { "login": "Nitinkumar-29", "streak": 1 } ] -} +} \ No newline at end of file From 5b0689ab51173f18ac0e6f167619697e6dcfc628 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:54 +0530 Subject: [PATCH 6/9] Update updateCALeaderboard.js --- jobs/updateCALeaderboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/updateCALeaderboard.js b/jobs/updateCALeaderboard.js index 2db0255..18a008f 100644 --- a/jobs/updateCALeaderboard.js +++ b/jobs/updateCALeaderboard.js @@ -4,7 +4,7 @@ const { generateCALeaderboard } = require('../functions/generateCALeaderboard'); function updateCALeaderboardJob() { - schedule.scheduleJob('0 0 * * * *', function () { + schedule.scheduleJob('0 0 * * * *', function () { console.log("========") console.log("Starting leaderboard updation job..."); console.log("========") From 45800f1b414475479021ba0f3e164ad6efe718b9 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:56 +0530 Subject: [PATCH 7/9] Update updateOSLeaderboard.js --- jobs/updateOSLeaderboard.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jobs/updateOSLeaderboard.js b/jobs/updateOSLeaderboard.js index e6a95ad..ed232e2 100644 --- a/jobs/updateOSLeaderboard.js +++ b/jobs/updateOSLeaderboard.js @@ -4,12 +4,12 @@ const { generateLeaderboard } = require('../functions/generateLeaderboard'); function updateLeaderboardJob() { - // schedule.scheduleJob('0 0 */12 * * *', function () { - // console.log("========") - // console.log("Starting leaderboard updation job..."); - // console.log("========") - // generateLeaderboard(); - // }); + schedule.scheduleJob('0 0 */2 * * *', function () { + console.log("========") + console.log("Starting leaderboard update job..."); + console.log("========") + generateLeaderboard(); + }); } From 04704128363caa5ebe8b86174c748d45f571a7fa Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:38:58 +0530 Subject: [PATCH 8/9] Create stats.json --- stats.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 stats.json diff --git a/stats.json b/stats.json new file mode 100644 index 0000000..8d590f0 --- /dev/null +++ b/stats.json @@ -0,0 +1,11 @@ +{ + "success": true, + "updatedAt": 1781548394731, + "lastUpdated": 1781548394731, + "totalStars": 10, + "totalForks": 5, + "totalContributors": 1, + "totalRepositories": 2, + "publicRepositories": 1, + "discussionsCount": 42 +} \ No newline at end of file From 74367e3617bf4e8c6b9aea342c8519afb0112647 Mon Sep 17 00:00:00 2001 From: Sameer Prajapati Date: Wed, 17 Jun 2026 16:39:04 +0530 Subject: [PATCH 9/9] Create cacheHelper.js --- utils/cacheHelper.js | 91 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 utils/cacheHelper.js diff --git a/utils/cacheHelper.js b/utils/cacheHelper.js new file mode 100644 index 0000000..668ae5f --- /dev/null +++ b/utils/cacheHelper.js @@ -0,0 +1,91 @@ +const fs = require("fs").promises; +const path = require("path"); + +const DEFAULT_LEADERBOARD = { + success: true, + updatedAt: null, + generated: false, + contributors: [], + leaderboard: [] // Backward compatibility alias +}; + +const DEFAULT_STATS = { + success: true, + updatedAt: null, + totalStars: 0, + totalForks: 0, + totalContributors: 0, + totalRepositories: 0, + discussionsCount: 0 +}; + +const DEFAULT_CA_LEADERBOARD = { + success: true, + updatedAt: null, + generated: false, + leaderboard: [] +}; + +/** + * Resolves the path to a cache file. + * Supports a custom CACHE_DIR environment variable (useful for Railway volumes). + */ +function getCacheFilePath(fileName) { + const cacheDir = process.env.CACHE_DIR || path.resolve(__dirname, ".."); + return path.join(cacheDir, fileName); +} + +/** + * Ensures cache files exist on startup. + * Creates them with valid default empty structures if they are missing. + */ +async function ensureCacheFiles() { + const cacheDir = process.env.CACHE_DIR || path.resolve(__dirname, ".."); + await fs.mkdir(cacheDir, { recursive: true }); + + const cacheFiles = [ + { name: "leaderboard.json", defaultData: DEFAULT_LEADERBOARD }, + { name: "stats.json", defaultData: DEFAULT_STATS }, + { name: "caLeaderboard.json", defaultData: DEFAULT_CA_LEADERBOARD } + ]; + + for (const file of cacheFiles) { + const filePath = getCacheFilePath(file.name); + try { + await fs.access(filePath); + console.log(`Cache file checked: ${file.name} (exists at ${filePath})`); + } catch (err) { + console.log(`Cache file missing: ${file.name}. Creating default structure at ${filePath}...`); + await writeJsonAtomic(filePath, file.defaultData); + } + } +} + +/** + * Safely reads a JSON file from disk. + * Returns the parsed JSON object, or throws if parsing/reading fails. + */ +async function readJsonFile(filePath) { + const content = await fs.readFile(filePath, "utf8"); + return JSON.parse(content); +} + +/** + * Atomically writes data to a JSON file. + * Prevents corruption by writing to a temporary file first and renaming it. + */ +async function writeJsonAtomic(filePath, data) { + const tempPath = `${filePath}.tmp`; + await fs.writeFile(tempPath, JSON.stringify(data, null, 2), "utf8"); + await fs.rename(tempPath, filePath); +} + +module.exports = { + getCacheFilePath, + ensureCacheFiles, + readJsonFile, + writeJsonAtomic, + DEFAULT_LEADERBOARD, + DEFAULT_STATS, + DEFAULT_CA_LEADERBOARD +};