diff --git a/fetch_github_data.sh b/fetch_github_data.sh index 3ed1353..e8ae2e0 100755 --- a/fetch_github_data.sh +++ b/fetch_github_data.sh @@ -25,29 +25,10 @@ TOTAL_STARS=$(echo "$REPOS" | jq '[.[] .stargazers_count] | add') REPOS_DATA=$(echo "$REPOS" | jq '[.[] | {name: .name, description: .description, stars: .stargazers_count, html_url: .html_url, homepage: .homepage}]') # ------------------------------------------------------------ -# Aggregate all unique contributors across all repositories using JSON array merging -ALL_CONTRIBS="[]" -for REPO_NAME in $(echo "$REPOS" | jq -r '.[].name'); do - PAGE=1 - while true; do - ContribResp=$(curl -s -H "Authorization: token $TOKEN" "https://api.github.com/repos/$ORG/$REPO_NAME/contributors?per_page=100&page=$PAGE") - COUNT=$(echo "$ContribResp" | jq length) - if [[ $COUNT -eq 0 ]]; then - break - fi - # Merge this page's contributors into the accumulator (ensure array) - ALL_CONTRIBS=$(printf '%s\n%s' "$ALL_CONTRIBS" "$ContribResp" | jq -s 'add') - ((PAGE++)) - done -done - -# Deduplicate contributors -UNIQUE_CONTRIBS=$(echo "$ALL_CONTRIBS" | jq 'unique_by(.login)') # Fetch org members and ensure it's an array ORG_MEMBERS_RAW=$(curl -s -H "Authorization: token $TOKEN" "https://api.github.com/orgs/$ORG/members?per_page=100") ORG_MEMBERS=$(echo "$ORG_MEMBERS_RAW" | jq 'if type=="array" then . else [. ] end') -# Merge contributors and org members, deduplicate again -ALL_USERS=$(printf '%s\n%s' "$UNIQUE_CONTRIBS" "$ORG_MEMBERS" | jq -s 'add | unique_by(.login)') +ALL_USERS=$(echo "$ORG_MEMBERS" | jq 'unique_by(.login)') PRIORITY_LOGINS=("RishiByte" "Pranav00076" "SharanyoBanerjee" "Yuvraj-Sarathe") MEMBERS_DATA="[]" # Add priority members first diff --git a/github_summary.json b/github_summary.json index 93870a3..c1579f2 100644 --- a/github_summary.json +++ b/github_summary.json @@ -1,591 +1,384 @@ { "project_count": 9, "total_stars": 16, - "contributor_count": 24, + "contributor_count": 9, "repos": [ - { - "name": "CNTRL", - "description": "An AI-powered desktop browser built with Tauri, Rust, and TypeScript — featuring hybrid local/cloud AI routing, smart navigation, and webview rendering.", - "stars": 1, - "html_url": "https://github.com/Omnikon-Org/CNTRL" - }, - { - "name": ".github", - "description": null, - "stars": 0, - "html_url": "https://github.com/Omnikon-Org/.github" - }, - { - "name": "Website", - "description": "Omnikon is an open-source technology community building impactful software and helping developers grow through collaboration.", - "stars": 2, - "html_url": "https://github.com/Omnikon-Org/Website" - }, - { - "name": "DemonTechRoadmap", - "description": "Community-driven roadmaps for students and aspiring developers.", - "stars": 7, - "html_url": "https://github.com/Omnikon-Org/DemonTechRoadmap" - }, - { - "name": "UnVibe", - "description": "UnVibe trains developers to truly understand code, not just generate it. AI writes the hardest solution — you decode it, rebuild it simpler, then defend your understanding in interviews. Your \"Irreplaceability Score\" tracks your depth. The goal: be skilled enough that no company can replace you with a prompt.", - "stars": 2, - "html_url": "https://github.com/Omnikon-Org/UnVibe" - }, - { - "name": "Certifier", - "description": "Auto issuing badges for Contributors", - "stars": 0, - "html_url": "https://github.com/Omnikon-Org/Certifier" - }, - { - "name": "SyncCanvas", - "description": "SyncCanvas is an AI-powered collaborative whiteboard for real-time brainstorming, diagramming, and team collaboration on an infinite canvas. 🚀", - "stars": 3, - "html_url": "https://github.com/Omnikon-Org/SyncCanvas" - }, - { - "name": "PackVault", - "description": "Offline-first package caching and distribution CLI for JavaScript developers. Cache npm packages once, install anywhere without internet.", - "stars": 1, - "html_url": "https://github.com/Omnikon-Org/PackVault" - }, - { - "name": "schema-cast", - "description": "Define your data once. schema-forge generates TypeScript, Zod, Mongoose, and PostgreSQL from a single schema file.", - "stars": 0, - "html_url": "https://github.com/Omnikon-Org/schema-cast" - } -], + { + "name": "Astrodex", + "description": "A futuristic space exploration companion.", + "stars": 0, + "html_url": "https://github.com/Omnikon-Org/Astrodex" + }, + { + "name": "CNTRL", + "description": "An AI-powered desktop browser built with Tauri, Rust, and TypeScript — featuring hybrid local/cloud AI routing, smart navigation, and webview rendering.", + "stars": 1, + "html_url": "https://github.com/Omnikon-Org/CNTRL" + }, + { + "name": ".github", + "description": null, + "stars": 0, + "html_url": "https://github.com/Omnikon-Org/.github" + }, + { + "name": "Website", + "description": "Omnikon is an open-source technology community building impactful software and helping developers grow through collaboration.", + "stars": 2, + "html_url": "https://github.com/Omnikon-Org/Website" + }, + { + "name": "DemonTechRoadmap", + "description": "Community-driven roadmaps for students and aspiring developers.", + "stars": 7, + "html_url": "https://github.com/Omnikon-Org/DemonTechRoadmap" + }, + { + "name": "UnVibe", + "description": "UnVibe trains developers to truly understand code, not just generate it. AI writes the hardest solution — you decode it, rebuild it simpler, then defend your understanding in interviews. Your \"Irreplaceability Score\" tracks your depth. The goal: be skilled enough that no company can replace you with a prompt.", + "stars": 2, + "html_url": "https://github.com/Omnikon-Org/UnVibe" + }, + { + "name": "Certifier", + "description": "Auto issuing badges for Contributors", + "stars": 0, + "html_url": "https://github.com/Omnikon-Org/Certifier" + }, + { + "name": "SyncCanvas", + "description": "SyncCanvas is an AI-powered collaborative whiteboard for real-time brainstorming, diagramming, and team collaboration on an infinite canvas. 🚀", + "stars": 3, + "html_url": "https://github.com/Omnikon-Org/SyncCanvas" + }, + { + "name": "PackVault", + "description": "Offline-first package caching and distribution CLI for JavaScript developers. Cache npm packages once, install anywhere without internet.", + "stars": 1, + "html_url": "https://github.com/Omnikon-Org/PackVault" + }, + { + "name": "schema-cast", + "description": "Define your data once. schema-forge generates TypeScript, Zod, Mongoose, and PostgreSQL from a single schema file.", + "stars": 0, + "html_url": "https://github.com/Omnikon-Org/schema-cast" + } + ], "members": [ - { - "login": "RishiByte", - "id": 227175134, - "node_id": "U_kgDODYpq3g", - "avatar_url": "https://avatars.githubusercontent.com/u/227175134?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/RishiByte", - "html_url": "https://github.com/RishiByte", - "followers_url": "https://api.github.com/users/RishiByte/followers", - "following_url": "https://api.github.com/users/RishiByte/following{/other_user}", - "gists_url": "https://api.github.com/users/RishiByte/gists{/gist_id}", - "starred_url": "https://api.github.com/users/RishiByte/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/RishiByte/subscriptions", - "organizations_url": "https://api.github.com/users/RishiByte/orgs", - "repos_url": "https://api.github.com/users/RishiByte/repos", - "events_url": "https://api.github.com/users/RishiByte/events{/privacy}", - "received_events_url": "https://api.github.com/users/RishiByte/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 8 - }, - { - "login": "Pranav00076", - "id": 222479696, - "node_id": "U_kgDODULFUA", - "avatar_url": "https://avatars.githubusercontent.com/u/222479696?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Pranav00076", - "html_url": "https://github.com/Pranav00076", - "followers_url": "https://api.github.com/users/Pranav00076/followers", - "following_url": "https://api.github.com/users/Pranav00076/following{/other_user}", - "gists_url": "https://api.github.com/users/Pranav00076/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Pranav00076/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Pranav00076/subscriptions", - "organizations_url": "https://api.github.com/users/Pranav00076/orgs", - "repos_url": "https://api.github.com/users/Pranav00076/repos", - "events_url": "https://api.github.com/users/Pranav00076/events{/privacy}", - "received_events_url": "https://api.github.com/users/Pranav00076/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "SharanyoBanerjee", - "id": 70018622, - "node_id": "MDQ6VXNlcjcwMDE4NjIy", - "avatar_url": "https://avatars.githubusercontent.com/u/70018622?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/SharanyoBanerjee", - "html_url": "https://github.com/SharanyoBanerjee", - "followers_url": "https://api.github.com/users/SharanyoBanerjee/followers", - "following_url": "https://api.github.com/users/SharanyoBanerjee/following{/other_user}", - "gists_url": "https://api.github.com/users/SharanyoBanerjee/gists{/gist_id}", - "starred_url": "https://api.github.com/users/SharanyoBanerjee/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/SharanyoBanerjee/subscriptions", - "organizations_url": "https://api.github.com/users/SharanyoBanerjee/orgs", - "repos_url": "https://api.github.com/users/SharanyoBanerjee/repos", - "events_url": "https://api.github.com/users/SharanyoBanerjee/events{/privacy}", - "received_events_url": "https://api.github.com/users/SharanyoBanerjee/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 23 - }, - { - "login": "Yuvraj-Sarathe", - "id": 216678101, - "node_id": "U_kgDODOo-1Q", - "avatar_url": "https://avatars.githubusercontent.com/u/216678101?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Yuvraj-Sarathe", - "html_url": "https://github.com/Yuvraj-Sarathe", - "followers_url": "https://api.github.com/users/Yuvraj-Sarathe/followers", - "following_url": "https://api.github.com/users/Yuvraj-Sarathe/following{/other_user}", - "gists_url": "https://api.github.com/users/Yuvraj-Sarathe/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Yuvraj-Sarathe/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Yuvraj-Sarathe/subscriptions", - "organizations_url": "https://api.github.com/users/Yuvraj-Sarathe/orgs", - "repos_url": "https://api.github.com/users/Yuvraj-Sarathe/repos", - "events_url": "https://api.github.com/users/Yuvraj-Sarathe/events{/privacy}", - "received_events_url": "https://api.github.com/users/Yuvraj-Sarathe/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 13 - }, - { - "login": "Anushkarshetty45", - "id": 188852743, - "node_id": "U_kgDOC0GqBw", - "avatar_url": "https://avatars.githubusercontent.com/u/188852743?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Anushkarshetty45", - "html_url": "https://github.com/Anushkarshetty45", - "followers_url": "https://api.github.com/users/Anushkarshetty45/followers", - "following_url": "https://api.github.com/users/Anushkarshetty45/following{/other_user}", - "gists_url": "https://api.github.com/users/Anushkarshetty45/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Anushkarshetty45/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Anushkarshetty45/subscriptions", - "organizations_url": "https://api.github.com/users/Anushkarshetty45/orgs", - "repos_url": "https://api.github.com/users/Anushkarshetty45/repos", - "events_url": "https://api.github.com/users/Anushkarshetty45/events{/privacy}", - "received_events_url": "https://api.github.com/users/Anushkarshetty45/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "Chirantan112", - "id": 211558197, - "node_id": "U_kgDODJwfNQ", - "avatar_url": "https://avatars.githubusercontent.com/u/211558197?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Chirantan112", - "html_url": "https://github.com/Chirantan112", - "followers_url": "https://api.github.com/users/Chirantan112/followers", - "following_url": "https://api.github.com/users/Chirantan112/following{/other_user}", - "gists_url": "https://api.github.com/users/Chirantan112/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Chirantan112/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Chirantan112/subscriptions", - "organizations_url": "https://api.github.com/users/Chirantan112/orgs", - "repos_url": "https://api.github.com/users/Chirantan112/repos", - "events_url": "https://api.github.com/users/Chirantan112/events{/privacy}", - "received_events_url": "https://api.github.com/users/Chirantan112/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 3 - }, - { - "login": "Dhrubajyoti930", - "id": 149499573, - "node_id": "U_kgDOCOkutQ", - "avatar_url": "https://avatars.githubusercontent.com/u/149499573?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Dhrubajyoti930", - "html_url": "https://github.com/Dhrubajyoti930", - "followers_url": "https://api.github.com/users/Dhrubajyoti930/followers", - "following_url": "https://api.github.com/users/Dhrubajyoti930/following{/other_user}", - "gists_url": "https://api.github.com/users/Dhrubajyoti930/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Dhrubajyoti930/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Dhrubajyoti930/subscriptions", - "organizations_url": "https://api.github.com/users/Dhrubajyoti930/orgs", - "repos_url": "https://api.github.com/users/Dhrubajyoti930/repos", - "events_url": "https://api.github.com/users/Dhrubajyoti930/events{/privacy}", - "received_events_url": "https://api.github.com/users/Dhrubajyoti930/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "TejaswaniMishra", - "id": 191905008, - "node_id": "U_kgDOC3A88A", - "avatar_url": "https://avatars.githubusercontent.com/u/191905008?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/TejaswaniMishra", - "html_url": "https://github.com/TejaswaniMishra", - "followers_url": "https://api.github.com/users/TejaswaniMishra/followers", - "following_url": "https://api.github.com/users/TejaswaniMishra/following{/other_user}", - "gists_url": "https://api.github.com/users/TejaswaniMishra/gists{/gist_id}", - "starred_url": "https://api.github.com/users/TejaswaniMishra/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/TejaswaniMishra/subscriptions", - "organizations_url": "https://api.github.com/users/TejaswaniMishra/orgs", - "repos_url": "https://api.github.com/users/TejaswaniMishra/repos", - "events_url": "https://api.github.com/users/TejaswaniMishra/events{/privacy}", - "received_events_url": "https://api.github.com/users/TejaswaniMishra/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "Wombatfreak6", - "id": 163987103, - "node_id": "U_kgDOCcY-nw", - "avatar_url": "https://avatars.githubusercontent.com/u/163987103?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Wombatfreak6", - "html_url": "https://github.com/Wombatfreak6", - "followers_url": "https://api.github.com/users/Wombatfreak6/followers", - "following_url": "https://api.github.com/users/Wombatfreak6/following{/other_user}", - "gists_url": "https://api.github.com/users/Wombatfreak6/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Wombatfreak6/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Wombatfreak6/subscriptions", - "organizations_url": "https://api.github.com/users/Wombatfreak6/orgs", - "repos_url": "https://api.github.com/users/Wombatfreak6/repos", - "events_url": "https://api.github.com/users/Wombatfreak6/events{/privacy}", - "received_events_url": "https://api.github.com/users/Wombatfreak6/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "aishteviolet", - "id": 274579060, - "node_id": "U_kgDOEF2-dA", - "avatar_url": "https://avatars.githubusercontent.com/u/274579060?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/aishteviolet", - "html_url": "https://github.com/aishteviolet", - "followers_url": "https://api.github.com/users/aishteviolet/followers", - "following_url": "https://api.github.com/users/aishteviolet/following{/other_user}", - "gists_url": "https://api.github.com/users/aishteviolet/gists{/gist_id}", - "starred_url": "https://api.github.com/users/aishteviolet/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/aishteviolet/subscriptions", - "organizations_url": "https://api.github.com/users/aishteviolet/orgs", - "repos_url": "https://api.github.com/users/aishteviolet/repos", - "events_url": "https://api.github.com/users/aishteviolet/events{/privacy}", - "received_events_url": "https://api.github.com/users/aishteviolet/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "amreshanand", - "id": 225670667, - "node_id": "U_kgDODXN2Cw", - "avatar_url": "https://avatars.githubusercontent.com/u/225670667?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/amreshanand", - "html_url": "https://github.com/amreshanand", - "followers_url": "https://api.github.com/users/amreshanand/followers", - "following_url": "https://api.github.com/users/amreshanand/following{/other_user}", - "gists_url": "https://api.github.com/users/amreshanand/gists{/gist_id}", - "starred_url": "https://api.github.com/users/amreshanand/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/amreshanand/subscriptions", - "organizations_url": "https://api.github.com/users/amreshanand/orgs", - "repos_url": "https://api.github.com/users/amreshanand/repos", - "events_url": "https://api.github.com/users/amreshanand/events{/privacy}", - "received_events_url": "https://api.github.com/users/amreshanand/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 5 - }, - { - "login": "arnav-144p", - "id": 180639701, - "node_id": "U_kgDOCsRX1Q", - "avatar_url": "https://avatars.githubusercontent.com/u/180639701?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/arnav-144p", - "html_url": "https://github.com/arnav-144p", - "followers_url": "https://api.github.com/users/arnav-144p/followers", - "following_url": "https://api.github.com/users/arnav-144p/following{/other_user}", - "gists_url": "https://api.github.com/users/arnav-144p/gists{/gist_id}", - "starred_url": "https://api.github.com/users/arnav-144p/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/arnav-144p/subscriptions", - "organizations_url": "https://api.github.com/users/arnav-144p/orgs", - "repos_url": "https://api.github.com/users/arnav-144p/repos", - "events_url": "https://api.github.com/users/arnav-144p/events{/privacy}", - "received_events_url": "https://api.github.com/users/arnav-144p/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "coderabbitai[bot]", - "id": 136622811, - "node_id": "BOT_kgDOCCSy2w", - "avatar_url": "https://avatars.githubusercontent.com/in/347564?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/coderabbitai%5Bbot%5D", - "html_url": "https://github.com/apps/coderabbitai", - "followers_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/coderabbitai%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "ded-furby", - "id": 190979964, - "node_id": "U_kgDOC2IffA", - "avatar_url": "https://avatars.githubusercontent.com/u/190979964?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ded-furby", - "html_url": "https://github.com/ded-furby", - "followers_url": "https://api.github.com/users/ded-furby/followers", - "following_url": "https://api.github.com/users/ded-furby/following{/other_user}", - "gists_url": "https://api.github.com/users/ded-furby/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ded-furby/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ded-furby/subscriptions", - "organizations_url": "https://api.github.com/users/ded-furby/orgs", - "repos_url": "https://api.github.com/users/ded-furby/repos", - "events_url": "https://api.github.com/users/ded-furby/events{/privacy}", - "received_events_url": "https://api.github.com/users/ded-furby/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "fire-ux1", - "id": 235557639, - "node_id": "U_kgDODgpTBw", - "avatar_url": "https://avatars.githubusercontent.com/u/235557639?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/fire-ux1", - "html_url": "https://github.com/fire-ux1", - "followers_url": "https://api.github.com/users/fire-ux1/followers", - "following_url": "https://api.github.com/users/fire-ux1/following{/other_user}", - "gists_url": "https://api.github.com/users/fire-ux1/gists{/gist_id}", - "starred_url": "https://api.github.com/users/fire-ux1/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/fire-ux1/subscriptions", - "organizations_url": "https://api.github.com/users/fire-ux1/orgs", - "repos_url": "https://api.github.com/users/fire-ux1/repos", - "events_url": "https://api.github.com/users/fire-ux1/events{/privacy}", - "received_events_url": "https://api.github.com/users/fire-ux1/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "flopez0294", - "id": 112422608, - "node_id": "U_kgDOBrNu0A", - "avatar_url": "https://avatars.githubusercontent.com/u/112422608?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/flopez0294", - "html_url": "https://github.com/flopez0294", - "followers_url": "https://api.github.com/users/flopez0294/followers", - "following_url": "https://api.github.com/users/flopez0294/following{/other_user}", - "gists_url": "https://api.github.com/users/flopez0294/gists{/gist_id}", - "starred_url": "https://api.github.com/users/flopez0294/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/flopez0294/subscriptions", - "organizations_url": "https://api.github.com/users/flopez0294/orgs", - "repos_url": "https://api.github.com/users/flopez0294/repos", - "events_url": "https://api.github.com/users/flopez0294/events{/privacy}", - "received_events_url": "https://api.github.com/users/flopez0294/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 4 - }, - { - "login": "gitguildoss-rgb", - "id": 292772479, - "node_id": "U_kgDOEXNafw", - "avatar_url": "https://avatars.githubusercontent.com/u/292772479?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gitguildoss-rgb", - "html_url": "https://github.com/gitguildoss-rgb", - "followers_url": "https://api.github.com/users/gitguildoss-rgb/followers", - "following_url": "https://api.github.com/users/gitguildoss-rgb/following{/other_user}", - "gists_url": "https://api.github.com/users/gitguildoss-rgb/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gitguildoss-rgb/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gitguildoss-rgb/subscriptions", - "organizations_url": "https://api.github.com/users/gitguildoss-rgb/orgs", - "repos_url": "https://api.github.com/users/gitguildoss-rgb/repos", - "events_url": "https://api.github.com/users/gitguildoss-rgb/events{/privacy}", - "received_events_url": "https://api.github.com/users/gitguildoss-rgb/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "github-actions[bot]", - "id": 41898282, - "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/github-actions%5Bbot%5D", - "html_url": "https://github.com/apps/github-actions", - "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", - "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", - "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", - "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", - "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", - "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", - "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", - "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", - "type": "Bot", - "user_view_type": "public", - "site_admin": false, - "contributions": 11 - }, - { - "login": "kanika021105", - "id": 181403648, - "node_id": "U_kgDOCtAAAA", - "avatar_url": "https://avatars.githubusercontent.com/u/181403648?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/kanika021105", - "html_url": "https://github.com/kanika021105", - "followers_url": "https://api.github.com/users/kanika021105/followers", - "following_url": "https://api.github.com/users/kanika021105/following{/other_user}", - "gists_url": "https://api.github.com/users/kanika021105/gists{/gist_id}", - "starred_url": "https://api.github.com/users/kanika021105/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/kanika021105/subscriptions", - "organizations_url": "https://api.github.com/users/kanika021105/orgs", - "repos_url": "https://api.github.com/users/kanika021105/repos", - "events_url": "https://api.github.com/users/kanika021105/events{/privacy}", - "received_events_url": "https://api.github.com/users/kanika021105/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "maitriupadhyay03-cell", - "id": 238037247, - "node_id": "U_kgDODjAo_w", - "avatar_url": "https://avatars.githubusercontent.com/u/238037247?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/maitriupadhyay03-cell", - "html_url": "https://github.com/maitriupadhyay03-cell", - "followers_url": "https://api.github.com/users/maitriupadhyay03-cell/followers", - "following_url": "https://api.github.com/users/maitriupadhyay03-cell/following{/other_user}", - "gists_url": "https://api.github.com/users/maitriupadhyay03-cell/gists{/gist_id}", - "starred_url": "https://api.github.com/users/maitriupadhyay03-cell/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/maitriupadhyay03-cell/subscriptions", - "organizations_url": "https://api.github.com/users/maitriupadhyay03-cell/orgs", - "repos_url": "https://api.github.com/users/maitriupadhyay03-cell/repos", - "events_url": "https://api.github.com/users/maitriupadhyay03-cell/events{/privacy}", - "received_events_url": "https://api.github.com/users/maitriupadhyay03-cell/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "nishtha-agarwal-211", - "id": 242000265, - "node_id": "U_kgDODmyhiQ", - "avatar_url": "https://avatars.githubusercontent.com/u/242000265?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nishtha-agarwal-211", - "html_url": "https://github.com/nishtha-agarwal-211", - "followers_url": "https://api.github.com/users/nishtha-agarwal-211/followers", - "following_url": "https://api.github.com/users/nishtha-agarwal-211/following{/other_user}", - "gists_url": "https://api.github.com/users/nishtha-agarwal-211/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nishtha-agarwal-211/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nishtha-agarwal-211/subscriptions", - "organizations_url": "https://api.github.com/users/nishtha-agarwal-211/orgs", - "repos_url": "https://api.github.com/users/nishtha-agarwal-211/repos", - "events_url": "https://api.github.com/users/nishtha-agarwal-211/events{/privacy}", - "received_events_url": "https://api.github.com/users/nishtha-agarwal-211/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 2 - }, - { - "login": "rhoggs-bot-test-account", - "id": 22551806, - "node_id": "MDQ6VXNlcjIyNTUxODA2", - "avatar_url": "https://avatars.githubusercontent.com/u/22551806?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/rhoggs-bot-test-account", - "html_url": "https://github.com/rhoggs-bot-test-account", - "followers_url": "https://api.github.com/users/rhoggs-bot-test-account/followers", - "following_url": "https://api.github.com/users/rhoggs-bot-test-account/following{/other_user}", - "gists_url": "https://api.github.com/users/rhoggs-bot-test-account/gists{/gist_id}", - "starred_url": "https://api.github.com/users/rhoggs-bot-test-account/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/rhoggs-bot-test-account/subscriptions", - "organizations_url": "https://api.github.com/users/rhoggs-bot-test-account/orgs", - "repos_url": "https://api.github.com/users/rhoggs-bot-test-account/repos", - "events_url": "https://api.github.com/users/rhoggs-bot-test-account/events{/privacy}", - "received_events_url": "https://api.github.com/users/rhoggs-bot-test-account/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 22 - }, - { - "login": "rue-eru", - "id": 162464326, - "node_id": "U_kgDOCa8CRg", - "avatar_url": "https://avatars.githubusercontent.com/u/162464326?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/rue-eru", - "html_url": "https://github.com/rue-eru", - "followers_url": "https://api.github.com/users/rue-eru/followers", - "following_url": "https://api.github.com/users/rue-eru/following{/other_user}", - "gists_url": "https://api.github.com/users/rue-eru/gists{/gist_id}", - "starred_url": "https://api.github.com/users/rue-eru/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/rue-eru/subscriptions", - "organizations_url": "https://api.github.com/users/rue-eru/orgs", - "repos_url": "https://api.github.com/users/rue-eru/repos", - "events_url": "https://api.github.com/users/rue-eru/events{/privacy}", - "received_events_url": "https://api.github.com/users/rue-eru/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - }, - { - "login": "sakshimuttha578", - "id": 195105098, - "node_id": "U_kgDOC6ERSg", - "avatar_url": "https://avatars.githubusercontent.com/u/195105098?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/sakshimuttha578", - "html_url": "https://github.com/sakshimuttha578", - "followers_url": "https://api.github.com/users/sakshimuttha578/followers", - "following_url": "https://api.github.com/users/sakshimuttha578/following{/other_user}", - "gists_url": "https://api.github.com/users/sakshimuttha578/gists{/gist_id}", - "starred_url": "https://api.github.com/users/sakshimuttha578/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/sakshimuttha578/subscriptions", - "organizations_url": "https://api.github.com/users/sakshimuttha578/orgs", - "repos_url": "https://api.github.com/users/sakshimuttha578/repos", - "events_url": "https://api.github.com/users/sakshimuttha578/events{/privacy}", - "received_events_url": "https://api.github.com/users/sakshimuttha578/received_events", - "type": "User", - "user_view_type": "public", - "site_admin": false, - "contributions": 1 - } -] -} + { + "login": "omnikonorg-work", + "id": 297255329, + "node_id": "U_kgDOEbfBoQ", + "avatar_url": "https://avatars.githubusercontent.com/u/297255329?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/omnikonorg-work", + "html_url": "https://github.com/omnikonorg-work", + "followers_url": "https://api.github.com/users/omnikonorg-work/followers", + "following_url": "https://api.github.com/users/omnikonorg-work/following{/other_user}", + "gists_url": "https://api.github.com/users/omnikonorg-work/gists{/gist_id}", + "starred_url": "https://api.github.com/users/omnikonorg-work/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/omnikonorg-work/subscriptions", + "organizations_url": "https://api.github.com/users/omnikonorg-work/orgs", + "repos_url": "https://api.github.com/users/omnikonorg-work/repos", + "events_url": "https://api.github.com/users/omnikonorg-work/events{/privacy}", + "received_events_url": "https://api.github.com/users/omnikonorg-work/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 1, + "public_gists": 0, + "followers": 0, + "following": 0, + "created_at": "2026-06-26T19:26:43Z", + "updated_at": "2026-06-26T19:26:43Z" + }, + { + "login": "Pranav00076", + "id": 222479696, + "node_id": "U_kgDODULFUA", + "avatar_url": "https://avatars.githubusercontent.com/u/222479696?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Pranav00076", + "html_url": "https://github.com/Pranav00076", + "followers_url": "https://api.github.com/users/Pranav00076/followers", + "following_url": "https://api.github.com/users/Pranav00076/following{/other_user}", + "gists_url": "https://api.github.com/users/Pranav00076/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Pranav00076/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Pranav00076/subscriptions", + "organizations_url": "https://api.github.com/users/Pranav00076/orgs", + "repos_url": "https://api.github.com/users/Pranav00076/repos", + "events_url": "https://api.github.com/users/Pranav00076/events{/privacy}", + "received_events_url": "https://api.github.com/users/Pranav00076/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Pranav Thawait", + "company": "Newton School of Technology", + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 48, + "public_gists": 0, + "followers": 9, + "following": 7, + "created_at": "2025-07-23T17:32:13Z", + "updated_at": "2026-06-10T19:06:16Z" + }, + { + "login": "preranaanand07", + "id": 241425799, + "node_id": "U_kgDODmPdhw", + "avatar_url": "https://avatars.githubusercontent.com/u/241425799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/preranaanand07", + "html_url": "https://github.com/preranaanand07", + "followers_url": "https://api.github.com/users/preranaanand07/followers", + "following_url": "https://api.github.com/users/preranaanand07/following{/other_user}", + "gists_url": "https://api.github.com/users/preranaanand07/gists{/gist_id}", + "starred_url": "https://api.github.com/users/preranaanand07/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/preranaanand07/subscriptions", + "organizations_url": "https://api.github.com/users/preranaanand07/orgs", + "repos_url": "https://api.github.com/users/preranaanand07/repos", + "events_url": "https://api.github.com/users/preranaanand07/events{/privacy}", + "received_events_url": "https://api.github.com/users/preranaanand07/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Prerana anand", + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 2, + "public_gists": 0, + "followers": 0, + "following": 1, + "created_at": "2025-11-01T09:08:28Z", + "updated_at": "2026-05-25T04:10:21Z" + }, + { + "login": "RishiByte", + "id": 227175134, + "node_id": "U_kgDODYpq3g", + "avatar_url": "https://avatars.githubusercontent.com/u/227175134?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RishiByte", + "html_url": "https://github.com/RishiByte", + "followers_url": "https://api.github.com/users/RishiByte/followers", + "following_url": "https://api.github.com/users/RishiByte/following{/other_user}", + "gists_url": "https://api.github.com/users/RishiByte/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RishiByte/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RishiByte/subscriptions", + "organizations_url": "https://api.github.com/users/RishiByte/orgs", + "repos_url": "https://api.github.com/users/RishiByte/repos", + "events_url": "https://api.github.com/users/RishiByte/events{/privacy}", + "received_events_url": "https://api.github.com/users/RishiByte/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Rishi Bhardwaj", + "company": null, + "blog": "https://rishibhardwaj.netlify.app/", + "location": null, + "email": null, + "hireable": true, + "bio": "🚀 BTech CSE (AI & ML) | Open Source Contributor | 🖥️ Web Dev | 🔍 Competitive Programmer |", + "twitter_username": null, + "public_repos": 51, + "public_gists": 0, + "followers": 32, + "following": 28, + "created_at": "2025-08-18T12:26:27Z", + "updated_at": "2026-06-23T14:22:49Z" + }, + { + "login": "Shantanusongirkar", + "id": 102292581, + "node_id": "U_kgDOBhjcZQ", + "avatar_url": "https://avatars.githubusercontent.com/u/102292581?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Shantanusongirkar", + "html_url": "https://github.com/Shantanusongirkar", + "followers_url": "https://api.github.com/users/Shantanusongirkar/followers", + "following_url": "https://api.github.com/users/Shantanusongirkar/following{/other_user}", + "gists_url": "https://api.github.com/users/Shantanusongirkar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Shantanusongirkar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Shantanusongirkar/subscriptions", + "organizations_url": "https://api.github.com/users/Shantanusongirkar/orgs", + "repos_url": "https://api.github.com/users/Shantanusongirkar/repos", + "events_url": "https://api.github.com/users/Shantanusongirkar/events{/privacy}", + "received_events_url": "https://api.github.com/users/Shantanusongirkar/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": null, + "company": null, + "blog": "", + "location": "india", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 14, + "public_gists": 0, + "followers": 18, + "following": 64, + "created_at": "2022-03-24T10:08:49Z", + "updated_at": "2026-07-01T03:38:29Z" + }, + { + "login": "SharanyoBanerjee", + "id": 70018622, + "node_id": "MDQ6VXNlcjcwMDE4NjIy", + "avatar_url": "https://avatars.githubusercontent.com/u/70018622?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SharanyoBanerjee", + "html_url": "https://github.com/SharanyoBanerjee", + "followers_url": "https://api.github.com/users/SharanyoBanerjee/followers", + "following_url": "https://api.github.com/users/SharanyoBanerjee/following{/other_user}", + "gists_url": "https://api.github.com/users/SharanyoBanerjee/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SharanyoBanerjee/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SharanyoBanerjee/subscriptions", + "organizations_url": "https://api.github.com/users/SharanyoBanerjee/orgs", + "repos_url": "https://api.github.com/users/SharanyoBanerjee/repos", + "events_url": "https://api.github.com/users/SharanyoBanerjee/events{/privacy}", + "received_events_url": "https://api.github.com/users/SharanyoBanerjee/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Sharanyo Banerjee", + "company": null, + "blog": "", + "location": "Kalyani", + "email": null, + "hireable": null, + "bio": "I am 19 year old coder. ", + "twitter_username": null, + "public_repos": 174, + "public_gists": 0, + "followers": 3, + "following": 3, + "created_at": "2020-08-21T12:09:34Z", + "updated_at": "2026-06-09T21:12:24Z" + }, + { + "login": "SourabhX16", + "id": 146323884, + "node_id": "U_kgDOCLi5rA", + "avatar_url": "https://avatars.githubusercontent.com/u/146323884?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SourabhX16", + "html_url": "https://github.com/SourabhX16", + "followers_url": "https://api.github.com/users/SourabhX16/followers", + "following_url": "https://api.github.com/users/SourabhX16/following{/other_user}", + "gists_url": "https://api.github.com/users/SourabhX16/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SourabhX16/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SourabhX16/subscriptions", + "organizations_url": "https://api.github.com/users/SourabhX16/orgs", + "repos_url": "https://api.github.com/users/SourabhX16/repos", + "events_url": "https://api.github.com/users/SourabhX16/events{/privacy}", + "received_events_url": "https://api.github.com/users/SourabhX16/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Sourabh", + "company": null, + "blog": "", + "location": "Earth", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 13, + "public_gists": 0, + "followers": 6, + "following": 7, + "created_at": "2023-09-28T07:34:06Z", + "updated_at": "2026-02-02T09:58:48Z" + }, + { + "login": "Wombatfreak6", + "id": 163987103, + "node_id": "U_kgDOCcY-nw", + "avatar_url": "https://avatars.githubusercontent.com/u/163987103?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Wombatfreak6", + "html_url": "https://github.com/Wombatfreak6", + "followers_url": "https://api.github.com/users/Wombatfreak6/followers", + "following_url": "https://api.github.com/users/Wombatfreak6/following{/other_user}", + "gists_url": "https://api.github.com/users/Wombatfreak6/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Wombatfreak6/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Wombatfreak6/subscriptions", + "organizations_url": "https://api.github.com/users/Wombatfreak6/orgs", + "repos_url": "https://api.github.com/users/Wombatfreak6/repos", + "events_url": "https://api.github.com/users/Wombatfreak6/events{/privacy}", + "received_events_url": "https://api.github.com/users/Wombatfreak6/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "wombfrk.exe", + "company": null, + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 46, + "public_gists": 0, + "followers": 3, + "following": 7, + "created_at": "2024-03-19T07:48:40Z", + "updated_at": "2026-06-21T02:51:04Z" + }, + { + "login": "Yuvraj-Sarathe", + "id": 216678101, + "node_id": "U_kgDODOo-1Q", + "avatar_url": "https://avatars.githubusercontent.com/u/216678101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Yuvraj-Sarathe", + "html_url": "https://github.com/Yuvraj-Sarathe", + "followers_url": "https://api.github.com/users/Yuvraj-Sarathe/followers", + "following_url": "https://api.github.com/users/Yuvraj-Sarathe/following{/other_user}", + "gists_url": "https://api.github.com/users/Yuvraj-Sarathe/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Yuvraj-Sarathe/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Yuvraj-Sarathe/subscriptions", + "organizations_url": "https://api.github.com/users/Yuvraj-Sarathe/orgs", + "repos_url": "https://api.github.com/users/Yuvraj-Sarathe/repos", + "events_url": "https://api.github.com/users/Yuvraj-Sarathe/events{/privacy}", + "received_events_url": "https://api.github.com/users/Yuvraj-Sarathe/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Yuvraj Sarathe", + "company": "@Omnikon-Org ", + "blog": "https://yuvraj-sarathe.github.io/Portfolio/", + "location": "Bhopal, India", + "email": null, + "hireable": true, + "bio": "🛡️ B.Tech Cyber Security @ LNCT '29 | 📈 50+ DSA Problems Solved | Focused on shipping production-ready, standalone software | Working in @Omnikon-Org ", + "twitter_username": null, + "public_repos": 29, + "public_gists": 0, + "followers": 9, + "following": 2, + "created_at": "2025-06-17T08:20:11Z", + "updated_at": "2026-07-04T14:08:48Z" + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html index 51f26a9..b996528 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@ @@ -42,7 +42,7 @@
-
- + + +
+
+ stars +
+
+
+ + workspace_premium ACHIEVEMENT + + Open Source +
+

Selected for Mentorship Programs

+ +
+ +
+
+
+ rocket_launch +
+
+

Astrodex

+

Selected in GSSoC 2026

+
+
+ + open_in_new + +
+ + +
+
+
+ desktop_windows +
+
+

CNTRL

+

Selected in ECSoC 2026

+
+
+ + open_in_new +
- AI/ML Quiz Poster - - -
@@ -394,35 +465,38 @@

AI/ML Quiz Challenge 2
-
-
+
+
COMPLETED Legacy
-
- Quiz Arena Logo -

Omnikon Quiz Arena

+
+ Quiz Arena Logo +
+

Frontend Quiz

+

Omnikon Quiz Arena

+
-
-
-
0+
-
Registrations
+
+
+
0+
+
Registrations
-
-
0K
-
Impressions
+
+
0K
+
Impressions
-
-
0
-
Reviews
+
+
0
+
Reviews
-
-
0%
-
Engineering
+
+
0%
+
Engineering
-

+

Massive student engagement across domains.

@@ -433,8 +507,8 @@

Omnikon Quiz Arena

- -
+ +
history @@ -547,7 +621,7 @@

Recent Activity

} -
@@ -701,15 +775,15 @@

Projects Explorer
account_circle -

Contributor Wall

+

Member's Wall

- View all contributors arrow_forward + View all members arrow_forward

-
+