From 858eb8d0b204a1dccdc01f1f54f3a61104f804ce Mon Sep 17 00:00:00 2001 From: Imranch4 Date: Sun, 12 Oct 2025 17:16:01 +0100 Subject: [PATCH 1/6] add my project files --- .github/workflows/update-readme.yml | 31 ++ gsoc_readme.py | 532 ++++++++++++++++++++++++++++ requirements.txt | Bin 0 -> 200 bytes 3 files changed, 563 insertions(+) create mode 100644 .github/workflows/update-readme.yml create mode 100644 gsoc_readme.py create mode 100644 requirements.txt diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml new file mode 100644 index 0000000..bcddde5 --- /dev/null +++ b/.github/workflows/update-readme.yml @@ -0,0 +1,31 @@ +name: Update GSoC README +on: + schedule: + - cron: '0 9 * * 1' + workflow_dispatch: + +jobs: + update-readme: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.9' + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Update README + run: python gsoc_readme.py + + - name: Commit and push changes + run: | + git config --local user.email "imranbtk201@gmail.com" + git config --local user.name "Imranch4" + git add README.md gsoc_*.json + git diff --quiet && git diff --staged --quiet || git commit -m "Auto-update GSoC organizations" + git push \ No newline at end of file diff --git a/gsoc_readme.py b/gsoc_readme.py new file mode 100644 index 0000000..3eea508 --- /dev/null +++ b/gsoc_readme.py @@ -0,0 +1,532 @@ +#!/usr/bin/env python3 +import requests +import json +import time +import logging +from datetime import datetime, timedelta +from bs4 import BeautifulSoup +import re +import os +from typing import List, Dict, Set, Tuple, Optional + +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') +logger = logging.getLogger(__name__) + +BASE_URL = "https://summerofcode.withgoogle.com" +API_BASE = "https://summerofcode.withgoogle.com/api" + +class GSoCReadmeUpdater: + def __init__(self): + self.technology_keywords = { + # Web Frontend + 'React': ['react', 'reactjs', 'react.js'], + 'Vue.js': ['vue', 'vuejs', 'vue.js'], + 'Angular': ['angular', 'angularjs'], + 'JavaScript': ['javascript', 'js', 'ecmascript'], + 'TypeScript': ['typescript', 'ts'], + 'HTML': ['html', 'html5'], + 'CSS': ['css', 'css3'], + 'Sass/SCSS': ['sass', 'scss'], + 'Less': ['less'], + 'Stylus': ['stylus'], + 'Bootstrap': ['bootstrap'], + 'Tailwind CSS': ['tailwind', 'tailwindcss'], + 'jQuery': ['jquery'], + 'D3.js': ['d3.js', 'd3'], + 'Three.js': ['three.js', 'threejs'], + + # Web Backend + 'Node.js': ['node', 'nodejs', 'node.js'], + 'Express.js': ['express', 'expressjs'], + 'Django': ['django'], + 'Flask': ['flask'], + 'Spring Boot': ['spring boot', 'springboot'], + 'Laravel': ['laravel'], + 'Ruby on Rails': ['rails', 'ruby on rails', 'ror'], + 'FastAPI': ['fastapi'], + 'ASP.NET': ['asp.net', 'aspnet'], + 'Phoenix': ['phoenix'], + + # Programming Languages + 'Python': ['python'], + 'Java': ['java'], + 'C++': ['c++', 'cpp'], + 'C': ['c'], + 'Go': ['go', 'golang'], + 'Rust': ['rust'], + 'Kotlin': ['kotlin'], + 'Swift': ['swift'], + 'PHP': ['php'], + 'Ruby': ['ruby'], + 'C#': ['c#', 'csharp'], + + # Mobile + 'React Native': ['react native'], + 'Flutter': ['flutter'], + 'Android': ['android'], + 'iOS': ['ios'], + + # Databases + 'MySQL': ['mysql'], + 'PostgreSQL': ['postgresql', 'postgres'], + 'MongoDB': ['mongodb', 'mongo'], + 'Redis': ['redis'], + 'SQLite': ['sqlite'], + 'Cassandra': ['cassandra'], + 'Elasticsearch': ['elasticsearch'], + + # DevOps & Cloud + 'Docker': ['docker'], + 'Kubernetes': ['kubernetes', 'k8s'], + 'AWS': ['aws', 'amazon web services'], + 'Azure': ['azure'], + 'GCP': ['gcp', 'google cloud'], + + # Tools & Frameworks + 'Webpack': ['webpack'], + 'Babel': ['babel'], + 'Jest': ['jest'], + 'Mocha': ['mocha'], + 'GraphQL': ['graphql'], + 'REST API': ['rest', 'restful', 'rest api'], + 'WebSocket': ['websocket', 'websockets'], + 'WebRTC': ['webrtc'], + } + + # Web-specific technologies for filtering + self.web_tech_keywords = [ + 'react', 'vue', 'angular', 'javascript', 'typescript', 'html', 'css', + 'sass', 'scss', 'less', 'stylus', 'bootstrap', 'tailwind', 'jquery', + 'd3.js', 'three.js', 'node.js', 'express', 'django', 'flask', + 'spring boot', 'laravel', 'ruby on rails', 'fastapi', 'asp.net', + 'phoenix', 'react native', 'webpack', 'babel', 'jest', 'mocha', + 'graphql', 'rest api', 'websocket', 'webrtc' + ] + + self.cached_data = self.load_cached_data() + + def load_cached_data(self) -> Dict: + """Load cached organization data to avoid re-scraping.""" + cache_file = "gsoc_cache.json" + if os.path.exists(cache_file): + try: + with open(cache_file, 'r', encoding='utf-8') as f: + return json.load(f) + except: + pass + return {} + + def save_cached_data(self): + """Save cached organization data.""" + cache_file = "gsoc_cache.json" + try: + with open(cache_file, 'w', encoding='utf-8') as f: + json.dump(self.cached_data, f, indent=2, ensure_ascii=False) + except Exception as e: + logger.error(f"Failed to save cache: {e}") + + def get_cache_key(self, org_slug: str, year: int) -> str: + """Generate cache key for organization.""" + return f"{year}_{org_slug}" + + def get_available_years(self) -> List[int]: + """Check which GSoC years have data available.""" + current_year = datetime.now().year + available_years = [] + + for year in range(current_year, current_year - 5, -1): + url = f"{API_BASE}/program/{year}/organizations/" + try: + response = requests.head(url, timeout=5) + if response.status_code == 200: + available_years.append(year) + logger.info(f"βœ“ GSoC {year} data is available") + else: + logger.info(f"βœ— GSoC {year} data not available (Status: {response.status_code})") + except Exception as e: + logger.info(f"βœ— GSoC {year} data not available: {e}") + + return available_years + + def get_organizations(self, year: int) -> List[Dict]: + """Get all organizations for a specific year.""" + url = f"{API_BASE}/program/{year}/organizations/" + try: + logger.info(f"Fetching organizations for GSoC {year}") + response = requests.get(url, timeout=15) + response.raise_for_status() + organizations = response.json() + logger.info(f"Found {len(organizations)} organizations for GSoC {year}") + return organizations + except requests.exceptions.RequestException as e: + logger.error(f"Failed to fetch organizations for {year}: {e}") + return [] + + def extract_technologies_from_text(self, text: str) -> List[str]: + """Extract technologies from text using comprehensive keyword matching.""" + if not text: + return [] + + text_lower = text.lower() + found_technologies = set() + + for tech_name, aliases in self.technology_keywords.items(): + for alias in aliases: + pattern = r'\b' + re.escape(alias) + r'\b' + if re.search(pattern, text_lower): + found_technologies.add(tech_name) + break + + return list(found_technologies) + + def scrape_organization_page(self, org_slug: str, year: int) -> Dict: + """Scrape the organization page to get technologies and detailed info.""" + cache_key = self.get_cache_key(org_slug, year) + + if cache_key in self.cached_data: + cached_entry = self.cached_data[cache_key] + if 'timestamp' in cached_entry: + cache_time = datetime.fromisoformat(cached_entry['timestamp']) + if datetime.now() - cache_time < timedelta(days=7): + logger.info(f"Using cached data for {org_slug}") + return cached_entry['data'] + + url = f"{BASE_URL}/programs/{year}/organizations/{org_slug}" + try: + logger.info(f"Scraping organization page: {org_slug}") + response = requests.get(url, timeout=10) + response.raise_for_status() + soup = BeautifulSoup(response.text, 'html.parser') + + technologies = set() + description = "" + project_ideas = "" + + page_text = soup.get_text() + + text_technologies = self.extract_technologies_from_text(page_text) + technologies.update(text_technologies) + + project_selectors = [ + '[class*="project"]', + '[class*="idea"]', + '[class*="proposal"]', + '.project-ideas', + '.ideas-list', + '.proposals' + ] + + for selector in project_selectors: + elements = soup.select(selector) + for element in elements: + project_text = element.get_text() + project_ideas += " " + project_text + project_techs = self.extract_technologies_from_text(project_text) + technologies.update(project_techs) + + if project_ideas: + project_techs = self.extract_technologies_from_text(project_ideas) + technologies.update(project_techs) + + tech_sections = soup.find_all(['div', 'section'], + string=re.compile(r'technolog|stack|skill', re.IGNORECASE)) + + for section in tech_sections: + section_text = section.get_text() + section_techs = self.extract_technologies_from_text(section_text) + technologies.update(section_techs) + + tech_selectors = [ + '[class*="tech"]', + '[class*="tag"]', + '[class*="skill"]', + '[class*="label"]', + '[class*="badge"]', + '.tag', '.label', '.badge', '.skill', '.technology' + ] + + for selector in tech_selectors: + elements = soup.select(selector) + for element in elements: + text = element.get_text(strip=True) + if text and len(text) < 50: + element_techs = self.extract_technologies_from_text(text) + technologies.update(element_techs) + + desc_selectors = [ + 'p', + '.description', + '.org-description', + '.organization-description', + '[class*="description"]', + 'div > p', + 'section > p' + ] + + for selector in desc_selectors: + desc_elements = soup.select(selector) + for desc_element in desc_elements: + desc_text = desc_element.get_text(strip=True) + if len(desc_text) > 100 and len(desc_text) < 1000: + description = desc_text + break + if description: + break + + if not description: + paragraphs = soup.find_all('p') + for p in paragraphs: + text = p.get_text(strip=True) + if len(text) > 50 and len(text) < 500: + description = text + break + + result = { + 'technologies': sorted(list(technologies)), + 'description': description, + 'url': url, + 'project_ideas_text': project_ideas[:1000] + } + + self.cached_data[cache_key] = { + 'timestamp': datetime.now().isoformat(), + 'data': result + } + + return result + + except Exception as e: + logger.error(f"Failed to scrape {org_slug}: {e}") + result = {'technologies': [], 'description': '', 'url': url, 'project_ideas_text': ''} + + self.cached_data[cache_key] = { + 'timestamp': datetime.now().isoformat(), + 'data': result + } + + return result + + def contains_web_technologies(self, technologies: List[str]) -> bool: + """Check if technologies list contains web development technologies.""" + if not technologies: + return False + + tech_lower = [tech.lower() for tech in technologies] + return any(any(web_tech in tech_lower_tech for web_tech in self.web_tech_keywords) + for tech_lower_tech in tech_lower) + + def analyze_organization_web_projects(self, org_data: Dict, year: int) -> Tuple[bool, Dict]: + """Analyze if organization has web development projects.""" + org_name = org_data.get('name', 'Unknown Organization') + org_slug = org_data.get('slug', '') + + scraped_data = self.scrape_organization_page(org_slug, year) + org_description = org_data.get('description', '') + ' ' + scraped_data.get('description', '') + org_technologies = scraped_data.get('technologies', []) + + desc_technologies = self.extract_technologies_from_text(org_description) + project_technologies = self.extract_technologies_from_text(scraped_data.get('project_ideas_text', '')) + + all_technologies = list(set(org_technologies + desc_technologies + project_technologies)) + + has_web_tech = self.contains_web_technologies(all_technologies) + + return has_web_tech, {**scraped_data, 'technologies': all_technologies} + + def extract_web_technologies(self, technologies: List[str]) -> str: + """Extract and format web technologies from technology list.""" + web_technologies = [] + for tech in technologies: + if any(web_tech in tech.lower() for web_tech in self.web_tech_keywords): + web_technologies.append(tech) + + return ', '.join(sorted(web_technologies)) if web_technologies else 'Web technologies' + + def generate_readme_content(self, web_organizations_by_year: Dict[int, List[Dict]]) -> str: + """Generate the README content with multiple years.""" + current_year = datetime.now().year + next_year = current_year + 1 + + available_years = sorted(web_organizations_by_year.keys(), reverse=True) + latest_year = available_years[0] if available_years else current_year - 1 + + readme_content = f'''
+ +
+ +

List of Open Source organizations participating in Google Summer of Code having Web Development projects
based on technologies like React, Vue.js, Angular, JavaScript, TypeScript, Node.js, and more! πŸ“

+ +
+ +**NOTE:** This list helps you find & compare web development projects across different GSoC years. + +
+ +## πŸ“Š Current Status + +''' + + for year in sorted(available_years, reverse=True): + org_count = len(web_organizations_by_year[year]) + readme_content += f"- **GSoC {year}**: {org_count} organizations with web projects\n" + + readme_content += f"\n> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n" + + for year in sorted(available_years, reverse=True): + orgs = web_organizations_by_year[year] + if not orgs: + continue + + readme_content += f"## πŸš€ GSoC {year} - Web Development Organizations\n\n" + readme_content += f"**Total: {len(orgs)} organizations**\n\n" + readme_content += "| No. | Organization | Web Technologies |\n" + readme_content += "|-----|--------------|------------------|\n" + + for i, org in enumerate(orgs, 1): + org_name = org['name'] + anchor = f"{year}-" + org_name.lower().replace(' ', '-').replace('.', '').replace(',', '').replace('&', '') + technologies = org['technologies'] + readme_content += f"| {i}. | [{org_name}](#{anchor}) | {technologies} |\n" + + readme_content += "\n
\n\n" + + for year in sorted(available_years, reverse=True): + orgs = web_organizations_by_year[year] + if not orgs: + continue + + readme_content += f"## πŸ“‹ GSoC {year} - Organization Details\n\n" + + for i, org in enumerate(orgs, 1): + org_name = org['name'] + org_url = org['url'] + technologies = org['technologies'] + description = org['description'] + anchor = f"{year}-" + org_name.lower().replace(' ', '-').replace('.', '').replace(',', '').replace('&', '') + + readme_content += f"### {i}. {org_name} {{#{anchor}}}\n\n" + if description: + readme_content += f"{description}\n\n" + readme_content += f"- **Technologies**: {technologies}\n" + readme_content += f"- **GSoC URL**: [View on GSoC]({org_url})\n" + if org.get('website_url'): + readme_content += f"- **Website**: [Visit Website]({org['website_url']})\n" + readme_content += "\n
\n\n" + + readme_content += f'''--- +## πŸ“ˆ Statistics + +| Year | Organizations with Web Projects | +|------|----------------------------------| +''' + for year in sorted(available_years, reverse=True): + org_count = len(web_organizations_by_year[year]) + readme_content += f"| GSoC {year} | {org_count} |\n" + + readme_content += f''' + +## πŸ”§ Technical Details + +- **Last Updated**: {datetime.now().strftime("%Y-%m-%d %H:%M:%S")} +- **Data Source**: Google Summer of Code Official API +- **Web Technologies Detected**: {', '.join(sorted(set(self.web_tech_keywords)))} +- **Update Frequency**: Weekly automatic checks +- **Cache**: Enabled (1 week duration) + +## πŸ”„ Automatic Updates + +This repository automatically: +1. Checks for new GSoC data every Monday +2. Updates the README with the latest organizations +3. Maintains historical data for multiple years +4. Caches results to be respectful to GSoC servers + +When GSoC {next_year} organizations are announced, this list will update automatically! + +
+ +Made with ❀️ by Imranch4 for the GSoC Community + +**⭐ Star this repo if you find it helpful! ⭐** + +
+''' + return readme_content + + def update_readme(self): + """Main function to update the README with data from all available years.""" + logger.info("Starting GSoC README update...") + + available_years = self.get_available_years() + + if not available_years: + logger.error("No GSoC data available for any year!") + return False + + web_organizations_by_year = {} + + for year in available_years: + logger.info(f"Processing GSoC {year}...") + + organizations = self.get_organizations(year) + if not organizations: + logger.warning(f"No organizations found for GSoC {year}") + continue + + web_organizations = [] + for i, org in enumerate(organizations, 1): + org_name = org.get('name', 'Unknown') + logger.info(f"Analyzing {i}/{len(organizations)}: {org_name} (GSoC {year})") + + has_web_projects, scraped_data = self.analyze_organization_web_projects(org, year) + if has_web_projects: + technologies = self.extract_web_technologies(scraped_data['technologies']) + web_org_data = { + 'name': org_name, + 'url': scraped_data.get('url', f"{BASE_URL}/programs/{year}/organizations/{org.get('slug', '')}"), + 'description': scraped_data.get('description', org.get('description', '')), + 'technologies': technologies, + 'website_url': org.get('website_url', ''), + 'slug': org.get('slug', '') + } + web_organizations.append(web_org_data) + logger.info(f"βœ“ {org_name} has web projects: {technologies}") + + time.sleep(0.5) + + web_organizations_by_year[year] = web_organizations + logger.info(f"Found {len(web_organizations)} web organizations for GSoC {year}") + + with open(f"gsoc_{year}_web_organizations.json", "w", encoding="utf-8") as f: + json.dump(web_organizations, f, indent=2, ensure_ascii=False) + + readme_content = self.generate_readme_content(web_organizations_by_year) + with open("README.md", "w", encoding="utf-8") as f: + f.write(readme_content) + + self.save_cached_data() + + total_orgs = sum(len(orgs) for orgs in web_organizations_by_year.values()) + logger.info(f"βœ“ README updated! Found {total_orgs} web organizations across {len(web_organizations_by_year)} years") + + return total_orgs + +def main(): + print("GSoC Web Development Organizations Updater") + print("=============================================") + print("This script automatically finds GSoC organizations with web development projects.") + print("It will check all available GSoC years and maintain historical data.\n") + + updater = GSoCReadmeUpdater() + count = updater.update_readme() + + if count: + current_year = datetime.now().year + print(f"\nβœ“ Success! Updated {count} organizations across multiple years") + print(f"βœ“ Check README.md for the complete list") + print(f"βœ“ The list will auto-update weekly and when new GSoC data becomes available") + else: + print("\n❌ Failed to update README.md") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5ed7a22966f15cb0cf4c5f6bd636c396c0150c37 GIT binary patch literal 200 zcmX|*(GI~t6b0v5;!`w5EAha;v_VLURojH0$Ltmld+%oN+}ZPf_3XJZSnov7mJJIE zmbunUnb10IWFjXH_D=3<4^)}2 Date: Sun, 12 Oct 2025 16:24:31 +0000 Subject: [PATCH 2/6] Auto-update GSoC organizations --- README.md | 1353 ++++-- gsoc_2022_web_organizations.json | 258 ++ gsoc_2023_web_organizations.json | 170 + gsoc_2024_web_organizations.json | 234 ++ gsoc_2025_web_organizations.json | 186 + gsoc_cache.json | 6707 ++++++++++++++++++++++++++++++ 6 files changed, 8465 insertions(+), 443 deletions(-) create mode 100644 gsoc_2022_web_organizations.json create mode 100644 gsoc_2023_web_organizations.json create mode 100644 gsoc_2024_web_organizations.json create mode 100644 gsoc_2025_web_organizations.json create mode 100644 gsoc_cache.json diff --git a/README.md b/README.md index e7603c4..4aa08d1 100644 --- a/README.md +++ b/README.md @@ -2,578 +2,1045 @@
-

List of Open Source organizations participating in GSoC having Web Development projects based on
React, React Native, HTML, CSS, Vue and JavaScriptπŸ“

+

List of Open Source organizations participating in Google Summer of Code having Web Development projects
based on technologies like React, Vue.js, Angular, JavaScript, TypeScript, Node.js, and more! πŸ“


-**NOTE:** The search functionality on [GSoC website](https://summerofcode.withgoogle.com/) to filter web based projects is **broken**. It does not filter out all the projects but a few of them. This list will help you find & compare projects as per your interest. - +**NOTE:** This list helps you find & compare web development projects across different GSoC years. +
- -> Click :star: if you like the repo. Please note, this list has not been updated after GSoC 2021. Feel free to submit Pull Requests updating the list. - -## Table of Contents - -| No. | Organization | -|-------- | ------------ | -|1. | [Processing Foundation](#1-processing-foundation) | -|2. | [Apache Foundation](#2-apache-foundation)| -|3. | [Wikimedia Foundation](#3-wikimedia-foundation)| -|4. | [Rocket.chat](#4-rocketchat)| -|5. | [Score Labs](#5-score-labs)| -|6. | [EOS Design (Python)](#6-eos-design-python)| -|7. | [JdeRobot](#7-jderobot)| -|8. | [Anita B.org](#8-anita-borg)| -|9. | [Elastic](#9-elastic)| -|10. | [Matrix](#10-matrix)| -|11. | [Bookbrainz](#11-bookbrainz)| -|12. | [Joplin](#12-joplin)| -|13. | [Hydra Ecosystem](#13-hydra-ecosystem)| -|14. | [Moira](#14-moira)| -|15. | [Mozilla](#15-mozilla)| -|16. | [Fossology](#16-fossology)| -|17. | [Fossi](#17-fossi)| -|18. | [GDevelop](#18-gdevelop)| -|19. | [Internet Archive](#19-internet-archive)| -|20. | [GPAC](#20-gpac)| -|21. | [Zulip](#21-zulip)| -|22. | [MGGG](#22-mggg)| -|23. | [Kubeflow](#23-kubeflow)| -|24. | [Inclusive Design Institute](#24-inclusive-design-institute)| -|25. | [SugarLabs](#25-sugarlabs)| -|26. | [Performance Co-Pilot](#26-performance-co-pilot)| -|27. | [Submitty](#27-submitty)| -|28. | [Circuit Verse](#28-circuit-verse)| -|29. | [Creative Commons](#29-creative-commons)| -|30. | [OcraSound](#30-ocrasound)| -|31. | [OpenMRS](#31-openmrs)| -|32. | [Webpack](#32-webpack)| -|33. | [Open Bioinformatics Foundation (OBF)](#33-open-bioinformatics-foundation-obf)| -|34. | [Open Genome Informatics](#34-open-genome-informatics)| -|35. | [Open Chemistry](#35-open-chemistry)| -|36. | [Open EMR](#36-open-emr)| -|37. | [Open CV](#37-open-cv)| -|38. | [Nteract (NumFocus)](#38-nteract-numfocus)| -|39. | [Purr Data](#39-purr-data)| -|40. | [Fossasia](#40-fossasia)| -|41. | [Owasp](#41-owasp)| -|42. | [SambaWiki](#42-sambawiki)| -|43. | [GraphQL Plugins](#43-graphql-plugins)| -|44. | [Postman](#44-postman)| -|45. | [CNCF](#45-cncf)| -|46. | [GNOME Foundation](#46-gnome-foundation)| -|47. | [Chromium](#47-chromium)| -|48. | [Salesforce](#48-salesforce)| -|49. | [Shaka Player](#49-shaka-player)| -|50. | [JBoss Community)](#50-jboss-community)| -
- -## 1. Processing Foundation - -- p5.js Web Editor (**React**) -
- GitHub Repo [here](https://github.com/processing/p5.js-web-editor) - -- p5.js Website (**CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/processing/p5.js-website) - -- p5.js Showcase (**HTML, CSS, JavaScript**) -
- GitHub Repo for 2020 showcase [here](https://github.com/connieliu0/p5.js-showcase) - -- p5.js (**JavaScript**) -
- GitHub Repo [here](https://github.com/processing/p5.js) - -## 2. Apache Foundation - -- APISIX website (**React**) -
- GitHub Repo [here](https://github.com/apache/apisix-website) -
- More Info [here](https://issues.apache.org/jira/browse/APISIX-14) - -- Apache APISIX Dashboard (**React, JavaScript**) -
- GitHub Repo [here](https://github.com/apache/apisix-dashboard) -
- More Info [here](https://issues.apache.org/jira/browse/APISIX-12) - -More projects under Apache Foundation, info [here](https://cwiki.apache.org/confluence/display/COMDEV/GSoC+2021+Ideas+list) - -## 3. Wikimedia Foundation - -- Update the front-page of Wikimedia projects (**HTML, CSS, Javascript, Node.js**) -
- GitHub Repo [here](https://github.com/wikimedia/portals/tree/master/docs) - More info [here](https://phabricator.wikimedia.org/T273179) - -- Write MediaWiki userscript tutorial (**HTML, CSS, JavaScript, and jQuery**) -
- More info [here](https://phabricator.wikimedia.org/T274635) - -- Add zooming and panning to the Wikisource Pagelist Widget (**JavaScript, PHP**) -
- More info [here](https://phabricator.wikimedia.org/T262146) - -## 4. Rocket.chat - -- Around 20 Projects based on (**React, JavaScript, CSS**) -
- GitHub Repo(s) [here](https://github.com/RocketChat/Rocket.Chat) -
- More info (2021) [here](https://docs.rocket.chat/contributors/gsoc/google-summer-of-code-2021#project-ideas) - -## 5. Score Labs - -- Webiu (**Javascript, React, GatsbyJS**) -
- GitHub Repo [here](https://github.com/scorelab/Webiu) - -- Implement Community App Using Go Social Framework (**NodeJS, React, ReactNative**) -
- GitHub Repo [here](https://github.com/scorelab/Go-social) - -- Improve LabelLab web application (**React, Flask, PostgreSQL, Docker**) -
- GitHub Repo [here](https://github.com/scorelab/LabelLab) - -- Design 5 new Themes for Webiu (**Javascript, React, Gatsby**) -
- GitHub Repo [here](https://github.com/scorelab/Webiu) -- CodeLabz - FrontEnd Improvemnts (**React, JavaScript**) -
- GitHub Repo [here](https://github.com/scorelab/Codelabz) +## πŸ“Š Current Status + +- **GSoC 2025**: 23 organizations with web projects +- **GSoC 2024**: 29 organizations with web projects +- **GSoC 2023**: 21 organizations with web projects +- **GSoC 2022**: 32 organizations with web projects + +> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-12 16:24:31 + +## πŸš€ GSoC 2025 - Web Development Organizations + +**Total: 23 organizations** + +| No. | Organization | Web Technologies | +|-----|--------------|------------------| +| 1. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 2. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | +| 3. | [Haskell.org](#2025-haskellorg) | JavaScript | +| 4. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | +| 5. | [Python Software Foundation](#2025-python-software-foundation) | HTML | +| 6. | [stdlib](#2025-stdlib) | JavaScript, Node.js | +| 7. | [Processing Foundation](#2025-processing-foundation) | JavaScript | +| 8. | [Checker Framework](#2025-checker-framework) | HTML | +| 9. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | +| 10. | [Jenkins](#2025-jenkins) | JavaScript | +| 11. | [API Dash](#2025-api-dash) | GraphQL | +| 12. | [OpenAstronomy](#2025-openastronomy) | HTML | +| 13. | [Graphite](#2025-graphite) | Node.js | +| 14. | [freifunk](#2025-freifunk) | Babel | +| 15. | [Joomla!](#2025-joomla!) | HTML | +| 16. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | +| 17. | [Git](#2025-git) | Ruby on Rails | +| 18. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 19. | [JdeRobot](#2025-jderobot) | JavaScript | +| 20. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | +| 21. | [Plone Foundation](#2025-plone-foundation) | React | +| 22. | [BRL-CAD](#2025-brl-cad) | JavaScript | +| 23. | [Alaska](#2025-alaska) | REST API | + +
+ +## πŸš€ GSoC 2024 - Web Development Organizations + +**Total: 29 organizations** + +| No. | Organization | Web Technologies | +|-----|--------------|------------------| +| 1. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 2. | [JdeRobot](#2024-jderobot) | JavaScript | +| 3. | [Graphite](#2024-graphite) | Node.js | +| 4. | [Alaska](#2024-alaska) | REST API | +| 5. | [Haskell.org](#2024-haskellorg) | JavaScript | +| 6. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | +| 7. | [Purr Data](#2024-purr-data) | HTML | +| 8. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | +| 9. | [Django Software Foundation](#2024-django-software-foundation) | Django | +| 10. | [Python Software Foundation](#2024-python-software-foundation) | HTML | +| 11. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | +| 12. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 13. | [API Dash](#2024-api-dash) | GraphQL | +| 14. | [BRL-CAD](#2024-brl-cad) | JavaScript | +| 15. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | +| 16. | [Open Chemistry](#2024-open-chemistry) | Babel | +| 17. | [Git](#2024-git) | Ruby on Rails | +| 18. | [caMicroscope](#2024-camicroscope) | HTML | +| 19. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 20. | [Plone Foundation](#2024-plone-foundation) | React | +| 21. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 22. | [Jenkins](#2024-jenkins) | JavaScript | +| 23. | [Polypheny](#2024-polypheny) | REST API | +| 24. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | +| 25. | [OpenAstronomy](#2024-openastronomy) | HTML | +| 26. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | +| 27. | [MetaCall](#2024-metacall) | Node.js | +| 28. | [Apertium](#2024-apertium) | Less | +| 29. | [freifunk](#2024-freifunk) | Babel | + +
+ +## πŸš€ GSoC 2023 - Web Development Organizations + +**Total: 21 organizations** + +| No. | Organization | Web Technologies | +|-----|--------------|------------------| +| 1. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | +| 2. | [Purr Data](#2023-purr-data) | HTML | +| 3. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | +| 4. | [OpenAstronomy](#2023-openastronomy) | HTML | +| 5. | [Django Software Foundation](#2023-django-software-foundation) | Django | +| 6. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | +| 7. | [Python Software Foundation](#2023-python-software-foundation) | HTML | +| 8. | [caMicroscope](#2023-camicroscope) | HTML | +| 9. | [Jenkins](#2023-jenkins) | JavaScript | +| 10. | [MetaCall](#2023-metacall) | Node.js | +| 11. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 12. | [BRL-CAD](#2023-brl-cad) | JavaScript | +| 13. | [Plone Foundation](#2023-plone-foundation) | React | +| 14. | [Open Chemistry](#2023-open-chemistry) | Babel | +| 15. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | +| 16. | [Git](#2023-git) | Ruby on Rails | +| 17. | [freifunk](#2023-freifunk) | Babel | +| 18. | [Apertium](#2023-apertium) | Less | +| 19. | [JdeRobot](#2023-jderobot) | JavaScript | +| 20. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 21. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | + +
+ +## πŸš€ GSoC 2022 - Web Development Organizations + +**Total: 32 organizations** + +| No. | Organization | Web Technologies | +|-----|--------------|------------------| +| 1. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | +| 2. | [Joomla!](#2022-joomla!) | HTML | +| 3. | [Weaviate](#2022-weaviate) | GraphQL, REST API | +| 4. | [SeaQL](#2022-seaql) | GraphQL | +| 5. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | +| 6. | [Open Chemistry](#2022-open-chemistry) | Babel | +| 7. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | +| 8. | [Processing Foundation](#2022-processing-foundation) | JavaScript | +| 9. | [Python Software Foundation](#2022-python-software-foundation) | HTML | +| 10. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 11. | [Matrix.org](#2022-matrixorg) | WebRTC | +| 12. | [Django Software Foundation](#2022-django-software-foundation) | Django | +| 13. | [Plone Foundation](#2022-plone-foundation) | React | +| 14. | [MetaCall](#2022-metacall) | Node.js | +| 15. | [Jenkins](#2022-jenkins) | JavaScript | +| 16. | [freifunk](#2022-freifunk) | Babel | +| 17. | [OpenAstronomy](#2022-openastronomy) | HTML | +| 18. | [Git](#2022-git) | Ruby on Rails | +| 19. | [Polypheny](#2022-polypheny) | REST API | +| 20. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | +| 21. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | +| 22. | [Haskell.org](#2022-haskellorg) | JavaScript | +| 23. | [JdeRobot](#2022-jderobot) | JavaScript | +| 24. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | +| 25. | [Godot Engine](#2022-godot-engine) | HTML | +| 26. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | +| 27. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | +| 28. | [FRRouting](#2022-frrouting) | Babel | +| 29. | [Casbin](#2022-casbin) | JavaScript, Node.js | +| 30. | [Purr Data](#2022-purr-data) | HTML | +| 31. | [JBoss Community](#2022-jboss-community) | Node.js | +| 32. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | + +
+ +## πŸ“‹ GSoC 2025 - Organization Details + +### 1. Django Software Foundation {#2025-django-software-foundation} + +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) + +
+ +### 2. AOSSIE {#2025-aossie} + +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org) + +
+ +### 3. Haskell.org {#2025-haskellorg} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/) + +
+ +### 4. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} + +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/) + +
+ +### 5. Python Software Foundation {#2025-python-software-foundation} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/) + +
+ +### 6. stdlib {#2025-stdlib} + +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io) + +
+ +### 7. Processing Foundation {#2025-processing-foundation} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org) + +
+ +### 8. Checker Framework {#2025-checker-framework} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) +- **Website**: [Visit Website](https://checkerframework.org/) + +
+ +### 9. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html) + +
+ +### 10. Jenkins {#2025-jenkins} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io) + +
+ +### 11. API Dash {#2025-api-dash} + +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev) + +
+ +### 12. OpenAstronomy {#2025-openastronomy} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/) + +
+ +### 13. Graphite {#2025-graphite} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs) + +
+ +### 14. freifunk {#2025-freifunk} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en) + +
+ +### 15. Joomla! {#2025-joomla!} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/) + +
+ +### 16. Electron {#2025-electron} + +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org) + +
+ +### 17. Git {#2025-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/) -More Score Labs projects [here](https://scorelab.org/gsoc/) +
-## 6. EOS Design (Python) +### 18. rocket.chat {#2025-rocketchat} -- EOS icons react library (**React, CI, YAML**) -
- More info [here](https://gitlab.com/SUSE-UIUX/eos/-/wikis/GSoC-2021-Sub-org-at-Python.org:-EOS#project-1) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat) -- EOS-icons - Improvements (**React, SCSS**) -
- More info [here](https://gitlab.com/SUSE-UIUX/eos/-/wikis/GSoC-2021-Sub-org-at-Python.org:-EOS#project-2) +
-- EOS-icons - extensions for third party applications (**Python, React.js, SCSS**) -
- More info [here](https://gitlab.com/SUSE-UIUX/eos/-/wikis/GSoC-2021-Sub-org-at-Python.org:-EOS#project-3) +### 19. JdeRobot {#2025-jderobot} -- User Story - Improvements and new features (**React.js, Node.js, SCSS, MongoDB, GraphQL**) -
- More info [here](https://gitlab.com/SUSE-UIUX/eos/-/wikis/GSoC-2021-Sub-org-at-Python.org:-EOS#project-4) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io) -- EOS icons API (**Node.js, MongoDB, Redis, Docker, Gitlab Hooks**) -
- More info [here](https://gitlab.com/SUSE-UIUX/eos/-/wikis/GSoC-2021-Sub-org-at-Python.org:-EOS#project-5) +
-## 7. JdeRobot +### 20. webpack {#2025-webpack} -- Improving VisualStates (**Python and C++, HTML, JavaScript/Node.js**) -
- More info [here](https://jderobot.github.io/activities/gsoc/2021#project-5-improving-visualstates-tool-with-ros2-support-and-web-based-gui) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org) -## 8. Anita B.org +
-- Open Source Programs (**FrontEnd: HTML, CSS, JavaScript || Backend: Django, Python**) -
- GitHub Repo [here](https://github.com/anitab-org/open-source-programs-web) -
- More info [here](https://github.com/anitab-org/anitab-org.github.io/wiki/Open-Source-Programs) +### 21. Plone Foundation {#2025-plone-foundation} -- Bridge in Tech (**FrontEnd: HTML, CSS, JavaScript, React || Backend: Python**) -
- More info [here](https://github.com/anitab-org/anitab-org.github.io/wiki/Bridge-In-Tech) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) -## 9. Elastic +
-- Accessible combobox variants (**React, TypeScript**) -
- More info [here](https://github.com/elastic/gsoc#project-1-accessible-combobox-variants) +### 22. BRL-CAD {#2025-brl-cad} -- Alluvial diagram in @elastic/charts (**SVG, Canvas2D or WebGL, JavaScript/TypeScript, React, D3**) -
- More info [here](https://github.com/elastic/gsoc#project-2-alluvial-diagram-in-elasticcharts) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/) -- Parallel coordinates in @elastic/charts (**SVG, Canvas2D or WebGL, JavaScript/TypeScript, React, D3**) -
- More info [here](https://github.com/elastic/gsoc#project-3-data-sonification) +
-## 10. Matrix +### 23. Alaska {#2025-alaska} -- Bifrost (**Node.js, Typescript**) -
- More info [here](http://matrix-org.github.io/gsoc/#/projects?project=new_backends_for_bifrost&lang=en) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) -- Maths support (**Javascript, Python**) -
- GitHub Repo [here](https://github.com/vector-im/element-web) +
-## 11. Bookbrainz +## πŸ“‹ GSoC 2024 - Organization Details -- MusicBrainz (**React, Node.js**) -
- GitHub Repo [here](https://github.com/BookBrainz/bookbrainz-site) +### 1. stdlib {#2024-stdlib} -## 12. Joplin +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io) -- OCR plugin (**JavaScript, Image processing**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#1-ocr-plugin) +
-- Template plugin (**JavaScript**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#2-template-plugin) +### 2. JdeRobot {#2024-jderobot} -- BibTex plugin (**JavaScript**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#3-bibtex-plugin) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io) -- Real time collaboration on a note (**JavaScript**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#4-real-time-collaboration-on-a-note) +
-- Paste special (**JavaScript, HTML**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#5-paste-special) +### 3. Graphite {#2024-graphite} -- Plugin system on mobile (**JavaScript, React Native**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#6-plugin-system-on-mobile) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs) -- Conflict resolution editor plugin (**JavaScript, Markdown**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#7-conflict-resolution-editor-plugin) +
-- Kanban plugin (**JavaScript**) -
- Info [here](https://github.com/laurent22/joplin/blob/dev/readme/dev/gsoc/gsoc2021/ideas.md#8-kanban-plugin) +### 4. Alaska {#2024-alaska} -## 13. Hydra Ecosystem +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) -- General Improvements (**Python, React, JavaScript**) -
- GitHub Repo [here](https://github.com/HTTP-APIs/hydra-python-agent) +
-## 14. Moira +### 5. Haskell.org {#2024-haskellorg} -- RESTify Moira’s API (**REST, JSON API, Go**) -
- More info [here](https://moira.readthedocs.io/en/latest/gsoc.html#restify-moira-s-api) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/) -- Complete Moira’s mobile web version (**JavaScript, TypeScript and React**) -
- GitHub repo [here](https://github.com/moira-alert/web2.0) -
- More info [here](https://moira.readthedocs.io/en/latest/gsoc.html#complete-moira-s-mobile-web-version) +
-- Noisy trigger analysis tools (**Basic Go and JavaScript skills**) -
- More info [here](https://moira.readthedocs.io/en/latest/gsoc.html#noisy-trigger-analysis-tools) +### 6. rocket.chat {#2024-rocketchat} -- Health checks for delivery channels and contacts (**Go, JavaScript, React**) -
- More info [here](https://moira.readthedocs.io/en/latest/gsoc.html#health-checks-for-delivery-channels-and-contacts) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat) -## 15. Mozilla +
-- Common Voice Website (**React**) -
- GitHub Repo [here](https://github.com/common-voice/common-voice) +### 7. Purr Data {#2024-purr-data} -## 16. Fossology +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/) -- UI Conversion Project (**React/Angular/Vue**) -
- GitHub Repo [here](https://github.com/fossology/fossology) -
- More info [here](https://github.com/fossology/fossology/wiki/Google-Summer-of-Code-Proposals-2020#rewrite-fossology-ui-for-example-using-angular-bootstrap-vuejs-or-reactjs) +
-## 17. Fossi +### 8. The ENIGMA Team {#2024-the-enigma-team} -- Evolving fractalvalley.net (**React/Angular, JavaScript, HTML5, Node.js**) -- Extend LibreCores.org (**SQL, HTML**) -
- More info [here](https://www-archive.fossi-foundation.org/gsoc20-ideas) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org) -## 18. GDevelop +
-- Revamp shortcuts/"Goto Anything" in the editor (**React.js for the editor, JavaScript**) -- Improved Debugger and Profiler (**React**) -- Support opening multiple projects or multiple instances of the editor (**JavaScript, React, Electron**) -
- More info [here](http://wiki.compilgames.net/doku.php/gdevelop5/community/summer-of-code) +### 9. Django Software Foundation {#2024-django-software-foundation} -## 19. Internet Archive +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) -- Chrome extension Wayback Machine (**JavaScript, UX**) -- BookReader (**HTML, CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/internetarchive/bookreader) +
-- Front-End Web Components (**HTML, CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/internetarchive/iaux) +### 10. Python Software Foundation {#2024-python-software-foundation} -- Google Assistant Action (**Node.js**) -
- More info [here](More info [here](https://docs.google.com/document/d/1posF4zhq2lAz7eikloT9_K4LnHXfJ5VWGpCtJS6rJ0M/)) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/) -## 20. GPAC +
-- GPAC remote monitoring (**JavaScript, Web programming skills**) -- GPAC JS APIs (**Three.js, Babylon.js**) +### 11. Neutralinojs {#2024-neutralinojs} -## 21. Zulip +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org) -- Web Front-End Projects (**Python, Django, JavaScript, CSS**) -
- GitHub Repo [here](https://github.com/zulip/zulip/) +
-- Electron Desktop App -
- More info [here](https://zulip.readthedocs.io/en/latest/overview/gsoc-ideas.html#electron-desktop-app) +### 12. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} -## 22. MGGG +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html) -- Districtr Interactive Tutorial (**HTML, CSS, JavaScript**) -- Puzzle-mander (**HTML,CSS, JavaScript, Python, SQL**) +
-## 23. Kubeflow +### 13. API Dash {#2024-api-dash} -- Hyperparameter tuner UI (**JavaScript, ES6, CSS, NPM**) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev) -## 24. Inclusive Design Institute +
-- Port UIO+ Chrome Extension (**JavaScript**) -
- GitHub Repo [here](https://github.com/GPII/gpii-chrome-extension) +### 14. BRL-CAD {#2024-brl-cad} -- Migrate Floe (**HTML, CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/fluid-project/fluidproject.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/) -- Infusion Documentation (**HTML, CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/fluid-project/infusion-docs/) +
-## 25. SugarLabs +### 15. AOSSIE {#2024-aossie} -- Sugarizer Measure activity (**JavaScript, HTML5, Vue**) -
- More info [here](https://github.com/sugarlabs/GSoC/blob/master/Ideas-2021.md#sugarizer-measure-activity) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org) -- Sugarizer Story activity (**JavaScript, HTML5, Vue**) -
- More info [here](hhttps://github.com/sugarlabs/GSoC/blob/master/Ideas-2021.md#sugarizer-story-activity) +
+ +### 16. Open Chemistry {#2024-open-chemistry} -- Sugarizer Story activity (**JavaScript, HTML5, Vue**) -
- More info [here](https://github.com/sugarlabs/GSoC/blob/master/Ideas-2021.md#sugarizer-security-and-availability) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/) -## 26. Performance Co-Pilot +
-- Grafana Plugin (**React, TypeScript**) -
- GitHub Repo [here](https://github.com/performancecopilot/grafana-pcp) +### 17. Git {#2024-git} -## 27. Submitty +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/) + +
-- Mobile-Friendly Website (**HTML, CSS, Javascript, Bootstrap**) -
- More info [here](https://submitty.org/developer/project_ideas) +### 18. caMicroscope {#2024-camicroscope} -- Web Sockets (**PHP, JavaScript**) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io) -## 28. Circuit Verse +
-- Simulator (**JavaScript**) -
- GitHub Repo [here](https://github.com/CircuitVerse/CircuitVerse) +### 19. Electron {#2024-electron} -## 29. Creative Commons +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org) -- Vocabulary Usage Guide (**HTML, CSS, JavaScript**) -
- More info [here](https://opensource.creativecommons.org/internships/project-ideas/#vocabulary-usage-guide) +
-## 30. OcraSound +### 20. Plone Foundation {#2024-plone-foundation} -- Ocramap (**React**) -
- GitHub Repo [here](https://github.com/orcasound/orcamap-react) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) -## 31. OpenMRS +
-- OpenMRS projects (**HTML, CSS, JavaScript**) -
- GitHub Repo [here](https://github.com/openmrs/openmrs-owa-sysadmin) +### 21. webpack {#2024-webpack} -## 32. Webpack +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org) -- CLI (**JavaScript, Node.js**) -- Webpack v5: Documentation (**JavaScript, Node.JS, Webpack**) -- Webpack: Web Bundle (**JavaScript, Node.JS, Webpack**) -- Webpack: Interactive (**JavaScript, Node.JS, Webpack**) -
- GitHub Repo [here](https://github.com/webpack/webpack-cli/) -
- More Info [here](https://docs.google.com/document/d/14LlDCLM_l0AMGbHtylYOVGVsh0L3VPxpDHiSLRDqJ7o) +
-## 33. Open Bioinformatics Foundation (OBF) +### 22. Jenkins {#2024-jenkins} -- Javascript Data Visualisations (**HTML, CSS, JavaScript/React**) -
- More info [here](https://www.open-bio.org/events/gsoc/gsoc-project-ideas/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io) -## 34. Open Genome Informatics +
-- Wormbase (**JavaScript, CSS, React**) -- Phylogenetic tree viewer (**JavaScript, React**) -- Ensembl VEP integration (**JavaScript, React**) -- Genomic Variant Evidence Visualization (**JavaScript, React**) +### 23. Polypheny {#2024-polypheny} -## 35. Open Chemistry +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org) -- 3Dmol.js (**JavaScript, OpenGL/WebGL** -- JavaScript version of Open Babel (**C++, JavaScript**) -
- More info [here](https://wiki.openchemistry.org/GSoC_Ideas_2021) +
-## 36. Open EMR +### 24. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} -- Various Projects (**HTML, CSS, Javascript,PHP, MySQL/MariaDB**) -
- More info [here](https://www.open-emr.org/summer-of-code/) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/) -## 37. Open CV +
-- Open CV.js (**C++, Javascript**) +### 25. OpenAstronomy {#2024-openastronomy} -## 38. Nteract (NumFocus) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/) -- Nteract play app (**React, JavaScript, CSS** -
- GitHub Repo [here](https://github.com/nteract/play) -
- More info [here](https://github.com/nteract/nteract/wiki/GSoC-2020-Ideas#1-add-support-for-sessions-and-sharing-to-nteract-play-app) +
-- Data Explorer UI (**React, JavaScript**) +### 26. Nightwatch.js {#2024-nightwatchjs} -## 39. Purr Data +- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) +- **Website**: [Visit Website](https://nightwatchjs.org) -- Skills: (**Javascript, HTML, CSS**) - GitLab Repo [here](https://git.purrdata.net/jwilkes/purr-data) -
- More info [here](https://git.purrdata.net/jwilkes/summer-of-code-ideas-list#core-accessibility) +
-## 40. Fossasia +### 27. MetaCall {#2024-metacall} -- SUSI AI (**HTML, Javascript, CSS, React-JS, Java**) -
- GitHub Repo [here](https://github.com/fossasia?utf8=%E2%9C%93&q=susi) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io) -- Susper (**Java, Javascript, HTML, CSS**) -
- GitHub Repo [here](https://github.com/yacy) -
- More info [here](https://fossasia.org/labs/) +
-## 41. Owasp +### 28. Apertium {#2024-apertium} -- Offensive Web Testing Framework-OWTF (**React**) -
- GitHub Repo [here](https://github.com/owtf/owtf) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/) -- OWASP Bug Logging Tool (**React**) -
- GitHub Repo [here](https://github.com/OWASP/BLT) +
-## 42. SambaWiki +### 29. freifunk {#2024-freifunk} -- Samba AD deployment with Cockpit (**Python, React, CSS, HTML**) -
- GitHub Repo(s) [here](https://github.com/cockpit-project) -
- More info [here](https://wiki.samba.org/index.php/SoC/Ideas#Google_Summer_of_Code:_Suggested_Project_ideas) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en) -## 43. GraphQL Plugins +
-## 44. Postman +## πŸ“‹ GSoC 2023 - Organization Details -- Newman, Collection SDK, Code Generators, Importers (**JavaScript, Node.js**) -
- More info of all 13 projects [here](https://github.com/postmanlabs/gsoc/blob/master/2021/Ideas.md) +### 1. rocket.chat {#2023-rocketchat} -## 45. CNCF +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat) -- Thanos UI Project (**React**) -
- GitHub Repo [here](https://github.com/thanos-io/thanos) +
-## 46. GNOME Foundation +### 2. Purr Data {#2023-purr-data} -- Faces of GNOME (**Jekyll, JavaScript, HTML, CSS**) -
- GitLab Repo [here](https://gitlab.gnome.org/Teams/Engagement/websites/people-of-gnome) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/) -- GNOME Websites Framework (**CSS/SCSS, JavaScript**) -
- GitLab Repo [here](https://gitlab.gnome.org/Teams/Engagement/websites/gnome-websites-framework) +
-## 47. Chromium +### 3. AOSSIE {#2023-aossie} -- Roadmap view for chromestatus.com (**Python, JS, HTML, UI design**) -
- GitHub Repo [here](https://github.com/GoogleChrome/chromium-dashboard) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org) -- Automating Puppeteer's documentation from code (**JavaScript/TypeScript**) -
- GitHub Repo [here](https://github.com/puppeteer/puppeteer) - More info [here](https://docs.google.com/document/d/1x2ELJVSEUmiIzElcVGy5ScWoi4qRfgu2Hf1JAEYxrUg/edit#heading=h.56j543g6pzyg) +
+ +### 4. OpenAstronomy {#2023-openastronomy} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/) + +
+ +### 5. Django Software Foundation {#2023-django-software-foundation} + +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) + +
+ +### 6. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) +- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) + +
+ +### 7. Python Software Foundation {#2023-python-software-foundation} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/) + +
+ +### 8. caMicroscope {#2023-camicroscope} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io) + +
+ +### 9. Jenkins {#2023-jenkins} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io) + +
+ +### 10. MetaCall {#2023-metacall} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io) + +
+ +### 11. The ENIGMA Team {#2023-the-enigma-team} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org) + +
+ +### 12. BRL-CAD {#2023-brl-cad} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/) + +
+ +### 13. Plone Foundation {#2023-plone-foundation} + +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) + +
+ +### 14. Open Chemistry {#2023-open-chemistry} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/) + +
+ +### 15. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html) + +
+ +### 16. Git {#2023-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/) + +
+ +### 17. freifunk {#2023-freifunk} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en) + +
+ +### 18. Apertium {#2023-apertium} + +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/) + +
+ +### 19. JdeRobot {#2023-jderobot} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io) + +
+ +### 20. Processing Foundation {#2023-processing-foundation} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org) + +
+ +### 21. XWiki {#2023-xwiki} + +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/) + +
+ +## πŸ“‹ GSoC 2022 - Organization Details + +### 1. Neutralinojs {#2022-neutralinojs} + +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org) + +
+ +### 2. Joomla! {#2022-joomla!} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/) + +
+ +### 3. Weaviate {#2022-weaviate} + +- **Technologies**: GraphQL, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) +- **Website**: [Visit Website](https://weaviate.io) + +
+ +### 4. SeaQL {#2022-seaql} + +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) +- **Website**: [Visit Website](https://www.sea-ql.org) + +
+ +### 5. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) +- **Website**: [Visit Website](https://fz-juelich.de/en) + +
+ +### 6. Open Chemistry {#2022-open-chemistry} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/) + +
+ +### 7. Electron {#2022-electron} + +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org) + +
+ +### 8. Processing Foundation {#2022-processing-foundation} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org) + +
+ +### 9. Python Software Foundation {#2022-python-software-foundation} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/) + +
+ +### 10. BRL-CAD {#2022-brl-cad} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/) + +
+ +### 11. Matrix.org {#2022-matrixorg} + +- **Technologies**: WebRTC +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) +- **Website**: [Visit Website](https://matrix.org) + +
+ +### 12. Django Software Foundation {#2022-django-software-foundation} + +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) + +
+ +### 13. Plone Foundation {#2022-plone-foundation} + +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) + +
+ +### 14. MetaCall {#2022-metacall} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io) + +
+ +### 15. Jenkins {#2022-jenkins} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io) + +
+ +### 16. freifunk {#2022-freifunk} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en) + +
+ +### 17. OpenAstronomy {#2022-openastronomy} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/) + +
+ +### 18. Git {#2022-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/) + +
+ +### 19. Polypheny {#2022-polypheny} + +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org) + +
+ +### 20. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html) + +
+ +### 21. AOSSIE {#2022-aossie} + +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org) + +
+ +### 22. Haskell.org {#2022-haskellorg} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/) + +
+ +### 23. JdeRobot {#2022-jderobot} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io) + +
+ +### 24. XWiki {#2022-xwiki} + +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/) + +
+ +### 25. Godot Engine {#2022-godot-engine} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) +- **Website**: [Visit Website](https://godotengine.org) + +
+ +### 26. rocket.chat {#2022-rocketchat} + +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat) + +
+ +### 27. syslog-ng {#2022-syslog-ng} + +- **Technologies**: JavaScript, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) +- **Website**: [Visit Website](https://www.syslog-ng.com/) + +
+ +### 28. FRRouting {#2022-frrouting} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) +- **Website**: [Visit Website](https://frrouting.org/) + +
+ +### 29. Casbin {#2022-casbin} + +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) +- **Website**: [Visit Website](https://casbin.org) + +
+ +### 30. Purr Data {#2022-purr-data} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/) + +
+ +### 31. JBoss Community {#2022-jboss-community} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) +- **Website**: [Visit Website](http://www.jboss.org/) + +
+ +### 32. The ENIGMA Team {#2022-the-enigma-team} + +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org) + +
-- Snooze, search and filter for the Chrome DevTools Issues Tab (**JavaScript/TypeScript**) -
- GitHub Repo [here](https://github.com/ChromeDevTools/devtools-frontend) +--- +## πŸ“ˆ Statistics -- Sample Diagnostics App/Extension for Chrome OS (**HTML, CSS, Javascript**) -
- GitHub Repo [here](https://github.com/MahmoudAGawad/cros-diag-app) +| Year | Organizations with Web Projects | +|------|----------------------------------| +| GSoC 2025 | 23 | +| GSoC 2024 | 29 | +| GSoC 2023 | 21 | +| GSoC 2022 | 32 | -## 48. Salesforce -- Design System (**React**) -
- GitHub Repo [here](https://github.com/salesforce/design-system-react) +## πŸ”§ Technical Details -- Cloudsplaining (**React/Vue/Svetle, AWS**) -
- GitHub repo [here](https://github.com/salesforce/cloudsplaining) -
- More info [here](https://github.com/salesforce/gsoc#cloudsplaining--salesforcecloudsplaining) +- **Last Updated**: 2025-10-12 16:24:31 +- **Data Source**: Google Summer of Code Official API +- **Web Technologies Detected**: angular, asp.net, babel, bootstrap, css, d3.js, django, express, fastapi, flask, graphql, html, javascript, jest, jquery, laravel, less, mocha, node.js, phoenix, react, react native, rest api, ruby on rails, sass, scss, spring boot, stylus, tailwind, three.js, typescript, vue, webpack, webrtc, websocket +- **Update Frequency**: Weekly automatic checks +- **Cache**: Enabled (1 week duration) -## 49. Shaka Player +## πŸ”„ Automatic Updates -- Generate Typescript Type Definitions (**JavaScript/TypeScript**) -
- GitHub Repo [here](https://github.com/google/shaka-player) +This repository automatically: +1. Checks for new GSoC data every Monday +2. Updates the README with the latest organizations +3. Maintains historical data for multiple years +4. Caches results to be respectful to GSoC servers -- Shaka Player HLS Enhancements -
- GitHub Repo [here](https://github.com/google/shaka-player) +When GSoC 2026 organizations are announced, this list will update automatically! - All projects [here](https://storage.googleapis.com/wvtemp/shaka/Shaka%20Player%20GSoC%20Projects%20List.pdf) +
-## 50. JBoss Community +Made with ❀️ by Imranch4 for the GSoC Community -- Classrooms and Doubt Forum Feature in Mobile Application (**React, Javascript**) -
- GitHub Repo [here](https://github.com/codeforcauseorg/edu-client) +**⭐ Star this repo if you find it helpful! ⭐** -- Create and Enhance APIs related to Education Platform (**Javascript, NestJS**) -
- GitHub Repo [here](https://github.com/codeforcauseorg/edu-server) +
diff --git a/gsoc_2022_web_organizations.json b/gsoc_2022_web_organizations.json new file mode 100644 index 0000000..350869a --- /dev/null +++ b/gsoc_2022_web_organizations.json @@ -0,0 +1,258 @@ +[ + { + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" + }, + { + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", + "description": "", + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" + }, + { + "name": "Weaviate", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", + "description": "", + "technologies": "GraphQL, REST API", + "website_url": "https://weaviate.io", + "slug": "weaviate" + }, + { + "name": "SeaQL", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", + "description": "", + "technologies": "GraphQL", + "website_url": "https://www.sea-ql.org", + "slug": "seaql" + }, + { + "name": "Forschungszentrum JΓΌlich", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", + "description": "", + "technologies": "Node.js", + "website_url": "https://fz-juelich.de/en", + "slug": "forschungszentrum-julich" + }, + { + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Matrix.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", + "description": "", + "technologies": "WebRTC", + "website_url": "https://matrix.org", + "slug": "matrixorg" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" + }, + { + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "description": "", + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, + { + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/git", + "description": "", + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" + }, + { + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "description": "", + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" + }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "description": "", + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", + "description": "", + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" + }, + { + "name": "Godot Engine", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "description": "", + "technologies": "HTML", + "website_url": "https://godotengine.org", + "slug": "godot-engine" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "syslog-ng", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", + "description": "", + "technologies": "JavaScript, REST API", + "website_url": "https://www.syslog-ng.com/", + "slug": "syslog-ng" + }, + { + "name": "FRRouting", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "description": "", + "technologies": "Babel", + "website_url": "https://frrouting.org/", + "slug": "frrouting" + }, + { + "name": "Casbin", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://casbin.org", + "slug": "casbin" + }, + { + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "description": "", + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" + }, + { + "name": "JBoss Community", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", + "description": "", + "technologies": "Node.js", + "website_url": "http://www.jboss.org/", + "slug": "jboss-community" + }, + { + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", + "description": "", + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" + } +] \ No newline at end of file diff --git a/gsoc_2023_web_organizations.json b/gsoc_2023_web_organizations.json new file mode 100644 index 0000000..4942abf --- /dev/null +++ b/gsoc_2023_web_organizations.json @@ -0,0 +1,170 @@ +[ + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "description": "", + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" + }, + { + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", + "description": "", + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" + }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "MZmine and MS-DIAL", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", + "description": "", + "technologies": "HTML", + "website_url": "https://mzmine-ms-dial-gsoc.github.io/", + "slug": "mzmine-and-ms-dial" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, + { + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "description": "", + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", + "description": "", + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" + }, + { + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", + "description": "", + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" + }, + { + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", + "description": "", + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", + "description": "", + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" + } +] \ No newline at end of file diff --git a/gsoc_2024_web_organizations.json b/gsoc_2024_web_organizations.json new file mode 100644 index 0000000..bbab958 --- /dev/null +++ b/gsoc_2024_web_organizations.json @@ -0,0 +1,234 @@ +[ + { + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", + "description": "", + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" + }, + { + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "description": "", + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", + "description": "", + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "description": "", + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" + }, + { + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", + "description": "", + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, + { + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" + }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", + "description": "", + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", + "description": "", + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" + }, + { + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", + "description": "", + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" + }, + { + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "description": "", + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" + }, + { + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "description": "", + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny", + "description": "", + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" + }, + { + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", + "description": "", + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" + }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, + { + "name": "Nightwatch.js", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", + "description": "", + "technologies": "Angular, JavaScript, Node.js, React, Vue.js", + "website_url": "https://nightwatchjs.org", + "slug": "nightwatchjs" + }, + { + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", + "description": "", + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" + }, + { + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", + "description": "", + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + } +] \ No newline at end of file diff --git a/gsoc_2025_web_organizations.json b/gsoc_2025_web_organizations.json new file mode 100644 index 0000000..03387a4 --- /dev/null +++ b/gsoc_2025_web_organizations.json @@ -0,0 +1,186 @@ +[ + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", + "description": "", + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "description": "", + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" + }, + { + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "description": "", + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, + { + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "Checker Framework", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", + "description": "", + "technologies": "HTML", + "website_url": "https://checkerframework.org/", + "slug": "checker-framework" + }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "description": "", + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" + }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, + { + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", + "description": "", + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "description": "", + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, + { + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", + "description": "", + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", + "description": "", + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", + "description": "", + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" + } +] \ No newline at end of file diff --git a/gsoc_cache.json b/gsoc_cache.json new file mode 100644 index 0000000..33a70cd --- /dev/null +++ b/gsoc_cache.json @@ -0,0 +1,6707 @@ +{ + "2025_eclipse-foundation": { + "timestamp": "2025-10-12T16:17:18.288705", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/eclipse-foundation", + "project_ideas_text": "" + } + }, + "2025_openwisp": { + "timestamp": "2025-10-12T16:17:18.870346", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openwisp", + "project_ideas_text": "" + } + }, + "2025_osgeo-open-source-geospatial-foundation": { + "timestamp": "2025-10-12T16:17:19.449851", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/osgeo-open-source-geospatial-foundation", + "project_ideas_text": "" + } + }, + "2025_oppia-foundation": { + "timestamp": "2025-10-12T16:17:20.029185", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/oppia-foundation", + "project_ideas_text": "" + } + }, + "2025_aboutcode": { + "timestamp": "2025-10-12T16:17:20.609136", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aboutcode", + "project_ideas_text": "" + } + }, + "2025_center-for-translational-data-science": { + "timestamp": "2025-10-12T16:17:21.190746", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/center-for-translational-data-science", + "project_ideas_text": "" + } + }, + "2025_unicode-inc": { + "timestamp": "2025-10-12T16:17:21.764803", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/unicode-inc", + "project_ideas_text": "" + } + }, + "2025_rtems-project": { + "timestamp": "2025-10-12T16:17:22.342886", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rtems-project", + "project_ideas_text": "" + } + }, + "2025_videolan": { + "timestamp": "2025-10-12T16:17:22.923982", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/videolan", + "project_ideas_text": "" + } + }, + "2025_international-catrobat-association": { + "timestamp": "2025-10-12T16:17:23.504319", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/international-catrobat-association", + "project_ideas_text": "" + } + }, + "2025_uc-ospo": { + "timestamp": "2025-10-12T16:17:24.084963", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/uc-ospo", + "project_ideas_text": "" + } + }, + "2025_fossology": { + "timestamp": "2025-10-12T16:17:24.666208", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fossology", + "project_ideas_text": "" + } + }, + "2025_inkscape": { + "timestamp": "2025-10-12T16:17:25.245246", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/inkscape", + "project_ideas_text": "" + } + }, + "2025_aflplusplus": { + "timestamp": "2025-10-12T16:17:25.823591", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aflplusplus", + "project_ideas_text": "" + } + }, + "2025_mdanalysis": { + "timestamp": "2025-10-12T16:17:26.408613", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mdanalysis", + "project_ideas_text": "" + } + }, + "2025_meshery": { + "timestamp": "2025-10-12T16:17:26.989761", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/meshery", + "project_ideas_text": "" + } + }, + "2025_typelevel": { + "timestamp": "2025-10-12T16:17:27.564968", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/typelevel", + "project_ideas_text": "" + } + }, + "2025_open-technologies-alliance-gfoss": { + "timestamp": "2025-10-12T16:17:28.145064", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-technologies-alliance-gfoss", + "project_ideas_text": "" + } + }, + "2025_libreoffice": { + "timestamp": "2025-10-12T16:17:28.724371", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/libreoffice", + "project_ideas_text": "" + } + }, + "2025_swift": { + "timestamp": "2025-10-12T16:17:29.311859", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/swift", + "project_ideas_text": "" + } + }, + "2025_52north-spatial-information-research-gmbh": { + "timestamp": "2025-10-12T16:17:29.893738", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/52north-spatial-information-research-gmbh", + "project_ideas_text": "" + } + }, + "2025_opencv": { + "timestamp": "2025-10-12T16:17:30.475391", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/opencv", + "project_ideas_text": "" + } + }, + "2025_cloudcv": { + "timestamp": "2025-10-12T16:17:31.051246", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cloudcv", + "project_ideas_text": "" + } + }, + "2025_circuitverseorg": { + "timestamp": "2025-10-12T16:17:31.628203", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/circuitverseorg", + "project_ideas_text": "" + } + }, + "2025_django-software-foundation-8o": { + "timestamp": "2025-10-12T16:17:32.207507", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "project_ideas_text": "" + } + }, + "2025_open-food-facts": { + "timestamp": "2025-10-12T16:17:32.782154", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-food-facts", + "project_ideas_text": "" + } + }, + "2025_openstreetmap": { + "timestamp": "2025-10-12T16:17:33.361685", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openstreetmap", + "project_ideas_text": "" + } + }, + "2025_jitsi": { + "timestamp": "2025-10-12T16:17:33.940343", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jitsi", + "project_ideas_text": "" + } + }, + "2025_gnu-octave": { + "timestamp": "2025-10-12T16:17:34.517955", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-octave", + "project_ideas_text": "" + } + }, + "2025_geomscale": { + "timestamp": "2025-10-12T16:17:35.095846", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/geomscale", + "project_ideas_text": "" + } + }, + "2025_json-schema": { + "timestamp": "2025-10-12T16:17:35.678063", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/json-schema", + "project_ideas_text": "" + } + }, + "2025_blender-foundation": { + "timestamp": "2025-10-12T16:17:36.258388", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/blender-foundation", + "project_ideas_text": "" + } + }, + "2025_machine-learning-for-science-ml4sci": { + "timestamp": "2025-10-12T16:17:36.836107", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/machine-learning-for-science-ml4sci", + "project_ideas_text": "" + } + }, + "2025_postgresql": { + "timestamp": "2025-10-12T16:17:37.413774", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/postgresql", + "project_ideas_text": "" + } + }, + "2025_scala-center": { + "timestamp": "2025-10-12T16:17:37.994167", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/scala-center", + "project_ideas_text": "" + } + }, + "2025_aossie": { + "timestamp": "2025-10-12T16:17:38.575543", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", + "project_ideas_text": "" + } + }, + "2025_rspamd": { + "timestamp": "2025-10-12T16:17:39.158473", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rspamd", + "project_ideas_text": "" + } + }, + "2025_ffmpeg": { + "timestamp": "2025-10-12T16:17:39.737381", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ffmpeg", + "project_ideas_text": "" + } + }, + "2025_kubevirt": { + "timestamp": "2025-10-12T16:17:40.317624", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kubevirt", + "project_ideas_text": "" + } + }, + "2025_ankidroid": { + "timestamp": "2025-10-12T16:17:40.899843", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ankidroid", + "project_ideas_text": "" + } + }, + "2025_haskellorg": { + "timestamp": "2025-10-12T16:17:41.479269", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "project_ideas_text": "" + } + }, + "2025_asyncapi": { + "timestamp": "2025-10-12T16:17:42.060317", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/asyncapi", + "project_ideas_text": "" + } + }, + "2025_omegaup": { + "timestamp": "2025-10-12T16:17:42.636389", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/omegaup", + "project_ideas_text": "" + } + }, + "2025_open-science-initiative-for-perfusion-imaging": { + "timestamp": "2025-10-12T16:17:43.213542", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "project_ideas_text": "" + } + }, + "2025_python-software-foundation": { + "timestamp": "2025-10-12T16:17:43.794434", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", + "project_ideas_text": "" + } + }, + "2025_the-freebsd-project": { + "timestamp": "2025-10-12T16:17:44.373768", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-freebsd-project", + "project_ideas_text": "" + } + }, + "2025_open-science-labs": { + "timestamp": "2025-10-12T16:17:44.953587", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-labs", + "project_ideas_text": "" + } + }, + "2025_stdlib": { + "timestamp": "2025-10-12T16:17:45.533961", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", + "project_ideas_text": "" + } + }, + "2025_apache-datafusion": { + "timestamp": "2025-10-12T16:17:46.113258", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/apache-datafusion", + "project_ideas_text": "" + } + }, + "2025_neuroinformatics-unit": { + "timestamp": "2025-10-12T16:17:46.696185", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/neuroinformatics-unit", + "project_ideas_text": "" + } + }, + "2025_software-and-computational-systems-lab-at-lmu-munich": { + "timestamp": "2025-10-12T16:17:47.272302", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/software-and-computational-systems-lab-at-lmu-munich", + "project_ideas_text": "" + } + }, + "2025_flare": { + "timestamp": "2025-10-12T16:17:47.854435", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/flare", + "project_ideas_text": "" + } + }, + "2025_processing-foundation": { + "timestamp": "2025-10-12T16:17:48.430494", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", + "project_ideas_text": "" + } + }, + "2025_mit-app-inventor": { + "timestamp": "2025-10-12T16:17:49.008953", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mit-app-inventor", + "project_ideas_text": "" + } + }, + "2025_st-jude-childrens-research-hospital-ai": { + "timestamp": "2025-10-12T16:17:49.592317", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/st-jude-childrens-research-hospital-ai", + "project_ideas_text": "" + } + }, + "2025_checker-framework": { + "timestamp": "2025-10-12T16:17:50.171199", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", + "project_ideas_text": "" + } + }, + "2025_ioos": { + "timestamp": "2025-10-12T16:17:50.749428", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ioos", + "project_ideas_text": "" + } + }, + "2025_openelis-global": { + "timestamp": "2025-10-12T16:17:51.330056", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openelis-global", + "project_ideas_text": "" + } + }, + "2025_department-of-biomedical-informatics-emory-university": { + "timestamp": "2025-10-12T16:17:51.906762", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/department-of-biomedical-informatics-emory-university", + "project_ideas_text": "" + } + }, + "2025_owasp-foundation": { + "timestamp": "2025-10-12T16:17:52.488616", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/owasp-foundation", + "project_ideas_text": "" + } + }, + "2025_national-resource-for-network-biology-nrnb": { + "timestamp": "2025-10-12T16:17:53.071139", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", + "project_ideas_text": "" + } + }, + "2025_debian": { + "timestamp": "2025-10-12T16:17:53.649938", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/debian", + "project_ideas_text": "" + } + }, + "2025_openms": { + "timestamp": "2025-10-12T16:17:54.231824", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openms", + "project_ideas_text": "" + } + }, + "2025_cncf": { + "timestamp": "2025-10-12T16:17:54.808599", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cncf", + "project_ideas_text": "" + } + }, + "2025_the-julia-language": { + "timestamp": "2025-10-12T16:17:55.389455", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-julia-language", + "project_ideas_text": "" + } + }, + "2025_kotlin-foundation": { + "timestamp": "2025-10-12T16:17:55.968862", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kotlin-foundation", + "project_ideas_text": "" + } + }, + "2025_tardis-rt-collaboration": { + "timestamp": "2025-10-12T16:17:56.549361", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/tardis-rt-collaboration", + "project_ideas_text": "" + } + }, + "2025_zendalona": { + "timestamp": "2025-10-12T16:17:57.130842", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/zendalona", + "project_ideas_text": "" + } + }, + "2025_sagemath": { + "timestamp": "2025-10-12T16:17:57.708906", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sagemath", + "project_ideas_text": "" + } + }, + "2025_fossasia-bg": { + "timestamp": "2025-10-12T16:17:58.287605", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fossasia-bg", + "project_ideas_text": "" + } + }, + "2025_wagtail": { + "timestamp": "2025-10-12T16:17:58.866882", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/wagtail", + "project_ideas_text": "" + } + }, + "2025_google-deepmind-sq": { + "timestamp": "2025-10-12T16:17:59.445172", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/google-deepmind-sq", + "project_ideas_text": "" + } + }, + "2025_ccextractor-development": { + "timestamp": "2025-10-12T16:18:00.024125", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ccextractor-development", + "project_ideas_text": "" + } + }, + "2025_jenkins-wp": { + "timestamp": "2025-10-12T16:18:00.605667", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", + "project_ideas_text": "" + } + }, + "2025_openafs": { + "timestamp": "2025-10-12T16:18:01.186198", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openafs", + "project_ideas_text": "" + } + }, + "2025_liquid-galaxy-project": { + "timestamp": "2025-10-12T16:18:01.763257", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/liquid-galaxy-project", + "project_ideas_text": "" + } + }, + "2025_api-dash": { + "timestamp": "2025-10-12T16:18:02.340444", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "project_ideas_text": "" + } + }, + "2025_openastronomy": { + "timestamp": "2025-10-12T16:18:02.922113", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "project_ideas_text": "" + } + }, + "2025_cgal-project": { + "timestamp": "2025-10-12T16:18:03.501276", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cgal-project", + "project_ideas_text": "" + } + }, + "2025_graphite": { + "timestamp": "2025-10-12T16:18:04.079077", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", + "project_ideas_text": "" + } + }, + "2025_cbioportal-for-cancer-genomics": { + "timestamp": "2025-10-12T16:18:04.658789", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cbioportal-for-cancer-genomics", + "project_ideas_text": "" + } + }, + "2025_pal-robotics": { + "timestamp": "2025-10-12T16:18:05.239723", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/pal-robotics", + "project_ideas_text": "" + } + }, + "2025_dora-rs-tb": { + "timestamp": "2025-10-12T16:18:05.816487", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dora-rs-tb", + "project_ideas_text": "" + } + }, + "2025_freifunk": { + "timestamp": "2025-10-12T16:18:06.393383", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "project_ideas_text": "" + } + }, + "2025_pecan-project": { + "timestamp": "2025-10-12T16:18:06.972104", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/pecan-project", + "project_ideas_text": "" + } + }, + "2025_humanai": { + "timestamp": "2025-10-12T16:18:07.552496", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/humanai", + "project_ideas_text": "" + } + }, + "2025_gitlab": { + "timestamp": "2025-10-12T16:18:08.128831", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gitlab", + "project_ideas_text": "" + } + }, + "2025_metabrainz-foundation-inc": { + "timestamp": "2025-10-12T16:18:08.708036", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/metabrainz-foundation-inc", + "project_ideas_text": "" + } + }, + "2025_sugar-labs": { + "timestamp": "2025-10-12T16:18:09.288206", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sugar-labs", + "project_ideas_text": "" + } + }, + "2025_uramaki-lab": { + "timestamp": "2025-10-12T16:18:09.865214", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/uramaki-lab", + "project_ideas_text": "" + } + }, + "2025_kde-community": { + "timestamp": "2025-10-12T16:18:10.442459", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kde-community", + "project_ideas_text": "" + } + }, + "2025_pharo-consortium": { + "timestamp": "2025-10-12T16:18:11.020478", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/pharo-consortium", + "project_ideas_text": "" + } + }, + "2025_fedora-project": { + "timestamp": "2025-10-12T16:18:11.598092", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fedora-project", + "project_ideas_text": "" + } + }, + "2025_criu": { + "timestamp": "2025-10-12T16:18:12.176698", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/criu", + "project_ideas_text": "" + } + }, + "2025_the-honeynet-project": { + "timestamp": "2025-10-12T16:18:12.756391", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-honeynet-project", + "project_ideas_text": "" + } + }, + "2025_kornia": { + "timestamp": "2025-10-12T16:18:13.336516", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kornia", + "project_ideas_text": "" + } + }, + "2025_gprmax": { + "timestamp": "2025-10-12T16:18:13.920687", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gprmax", + "project_ideas_text": "" + } + }, + "2025_free-and-open-source-silicon-foundation": { + "timestamp": "2025-10-12T16:18:14.501786", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/free-and-open-source-silicon-foundation", + "project_ideas_text": "" + } + }, + "2025_society-for-arts-and-technology-sat": { + "timestamp": "2025-10-12T16:18:15.082600", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/society-for-arts-and-technology-sat", + "project_ideas_text": "" + } + }, + "2025_joomla": { + "timestamp": "2025-10-12T16:18:15.659564", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "project_ideas_text": "" + } + }, + "2025_qc-devs": { + "timestamp": "2025-10-12T16:18:16.239993", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/qc-devs", + "project_ideas_text": "" + } + }, + "2025_electron": { + "timestamp": "2025-10-12T16:18:16.824574", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", + "project_ideas_text": "" + } + }, + "2025_sqlancer": { + "timestamp": "2025-10-12T16:18:17.404199", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sqlancer", + "project_ideas_text": "" + } + }, + "2025_the-netbsd-foundation": { + "timestamp": "2025-10-12T16:18:17.985455", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-netbsd-foundation", + "project_ideas_text": "" + } + }, + "2025_git": { + "timestamp": "2025-10-12T16:18:18.565028", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", + "project_ideas_text": "" + } + }, + "2025_numfocus": { + "timestamp": "2025-10-12T16:18:19.142022", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/numfocus", + "project_ideas_text": "" + } + }, + "2025_open-robotics": { + "timestamp": "2025-10-12T16:18:19.717462", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-robotics", + "project_ideas_text": "" + } + }, + "2025_the-p4-language-consortium": { + "timestamp": "2025-10-12T16:18:20.300567", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-p4-language-consortium", + "project_ideas_text": "" + } + }, + "2025_accord-project": { + "timestamp": "2025-10-12T16:18:20.879850", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/accord-project", + "project_ideas_text": "" + } + }, + "2025_the-linux-foundation": { + "timestamp": "2025-10-12T16:18:21.460663", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-linux-foundation", + "project_ideas_text": "" + } + }, + "2025_freecad": { + "timestamp": "2025-10-12T16:18:22.038898", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freecad", + "project_ideas_text": "" + } + }, + "2025_kro-kube-resource-orchestrator": { + "timestamp": "2025-10-12T16:18:22.622945", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kro-kube-resource-orchestrator", + "project_ideas_text": "" + } + }, + "2025_rocketchat": { + "timestamp": "2025-10-12T16:18:23.200140", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "project_ideas_text": "" + } + }, + "2025_jderobot": { + "timestamp": "2025-10-12T16:18:23.777751", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "project_ideas_text": "" + } + }, + "2025_learning-equality": { + "timestamp": "2025-10-12T16:18:24.360312", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/learning-equality", + "project_ideas_text": "" + } + }, + "2025_checkstyle": { + "timestamp": "2025-10-12T16:18:24.941571", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checkstyle", + "project_ideas_text": "" + } + }, + "2025_fortran-lang": { + "timestamp": "2025-10-12T16:18:25.518557", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fortran-lang", + "project_ideas_text": "" + } + }, + "2025_chromium-lj": { + "timestamp": "2025-10-12T16:18:26.099511", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/chromium-lj", + "project_ideas_text": "" + } + }, + "2025_the-jpf-team-hg": { + "timestamp": "2025-10-12T16:18:26.679855", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-jpf-team-hg", + "project_ideas_text": "" + } + }, + "2025_wellcome-sanger-institute": { + "timestamp": "2025-10-12T16:18:27.264484", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/wellcome-sanger-institute", + "project_ideas_text": "" + } + }, + "2025_gnome-foundation": { + "timestamp": "2025-10-12T16:18:27.843887", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnome-foundation", + "project_ideas_text": "" + } + }, + "2025_gnu-compiler-collection-gcc": { + "timestamp": "2025-10-12T16:18:28.426071", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-compiler-collection-gcc", + "project_ideas_text": "" + } + }, + "2025_invesalius": { + "timestamp": "2025-10-12T16:18:29.002477", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/invesalius", + "project_ideas_text": "" + } + }, + "2025_openvino-toolkit": { + "timestamp": "2025-10-12T16:18:29.585869", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openvino-toolkit", + "project_ideas_text": "" + } + }, + "2025_opensuse-project": { + "timestamp": "2025-10-12T16:18:30.168314", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/opensuse-project", + "project_ideas_text": "" + } + }, + "2025_r-project-for-statistical-computing": { + "timestamp": "2025-10-12T16:18:30.748272", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/r-project-for-statistical-computing", + "project_ideas_text": "" + } + }, + "2025_gnu-image-manipulation-program": { + "timestamp": "2025-10-12T16:18:31.327580", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-image-manipulation-program", + "project_ideas_text": "" + } + }, + "2025_sympy": { + "timestamp": "2025-10-12T16:18:31.905172", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sympy", + "project_ideas_text": "" + } + }, + "2025_internet-archive": { + "timestamp": "2025-10-12T16:18:32.485387", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/internet-archive", + "project_ideas_text": "" + } + }, + "2025_drupal-association": { + "timestamp": "2025-10-12T16:18:33.064100", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/drupal-association", + "project_ideas_text": "" + } + }, + "2025_waycrate": { + "timestamp": "2025-10-12T16:18:33.648816", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/waycrate", + "project_ideas_text": "" + } + }, + "2025_prometheus-operator": { + "timestamp": "2025-10-12T16:18:34.232466", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/prometheus-operator", + "project_ideas_text": "" + } + }, + "2025_stichting-su2": { + "timestamp": "2025-10-12T16:18:34.810857", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stichting-su2", + "project_ideas_text": "" + } + }, + "2025_unikraft": { + "timestamp": "2025-10-12T16:18:35.389760", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/unikraft", + "project_ideas_text": "" + } + }, + "2025_dbpedia": { + "timestamp": "2025-10-12T16:18:35.986824", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dbpedia", + "project_ideas_text": "" + } + }, + "2025_webpack": { + "timestamp": "2025-10-12T16:18:36.566497", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", + "project_ideas_text": "" + } + }, + "2025_openmrs": { + "timestamp": "2025-10-12T16:18:37.146610", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openmrs", + "project_ideas_text": "" + } + }, + "2025_the-palisadoes-foundation": { + "timestamp": "2025-10-12T16:18:37.727436", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-palisadoes-foundation", + "project_ideas_text": "" + } + }, + "2025_keploy": { + "timestamp": "2025-10-12T16:18:38.310658", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/keploy", + "project_ideas_text": "" + } + }, + "2025_kiwix": { + "timestamp": "2025-10-12T16:18:38.887398", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kiwix", + "project_ideas_text": "" + } + }, + "2025_libssh": { + "timestamp": "2025-10-12T16:18:39.467487", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/libssh", + "project_ideas_text": "" + } + }, + "2025_mariadb": { + "timestamp": "2025-10-12T16:18:40.046667", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mariadb", + "project_ideas_text": "" + } + }, + "2025_stear-group": { + "timestamp": "2025-10-12T16:18:40.627971", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stear-group", + "project_ideas_text": "" + } + }, + "2025_sw360": { + "timestamp": "2025-10-12T16:18:41.210905", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sw360", + "project_ideas_text": "" + } + }, + "2025_open-transit-software-foundation": { + "timestamp": "2025-10-12T16:18:41.790805", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-transit-software-foundation", + "project_ideas_text": "" + } + }, + "2025_beagleboardorg": { + "timestamp": "2025-10-12T16:18:42.372746", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/beagleboardorg", + "project_ideas_text": "" + } + }, + "2025_project-mesa": { + "timestamp": "2025-10-12T16:18:42.947357", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/project-mesa", + "project_ideas_text": "" + } + }, + "2025_the-mifos-initiative": { + "timestamp": "2025-10-12T16:18:43.526477", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-mifos-initiative", + "project_ideas_text": "" + } + }, + "2025_plone-foundation": { + "timestamp": "2025-10-12T16:18:44.107822", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", + "project_ideas_text": "" + } + }, + "2025_ardupilot": { + "timestamp": "2025-10-12T16:18:44.686777", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ardupilot", + "project_ideas_text": "" + } + }, + "2025_lablua": { + "timestamp": "2025-10-12T16:18:45.270000", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/lablua", + "project_ideas_text": "" + } + }, + "2025_chaoss": { + "timestamp": "2025-10-12T16:18:45.849067", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/chaoss", + "project_ideas_text": "" + } + }, + "2025_dart": { + "timestamp": "2025-10-12T16:18:46.426867", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dart", + "project_ideas_text": "" + } + }, + "2025_the-rust-foundation": { + "timestamp": "2025-10-12T16:18:47.006407", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-rust-foundation", + "project_ideas_text": "" + } + }, + "2025_qemu": { + "timestamp": "2025-10-12T16:18:47.586047", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/qemu", + "project_ideas_text": "" + } + }, + "2025_mbdyn": { + "timestamp": "2025-10-12T16:18:48.165811", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mbdyn", + "project_ideas_text": "" + } + }, + "2025_scummvm": { + "timestamp": "2025-10-12T16:18:48.745007", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/scummvm", + "project_ideas_text": "" + } + }, + "2025_brl-cad": { + "timestamp": "2025-10-12T16:18:49.320638", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", + "project_ideas_text": "" + } + }, + "2025_incf": { + "timestamp": "2025-10-12T16:18:49.899103", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/incf", + "project_ideas_text": "" + } + }, + "2025_cern-hsf": { + "timestamp": "2025-10-12T16:18:50.481791", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cern-hsf", + "project_ideas_text": "" + } + }, + "2025_open-climate-fix": { + "timestamp": "2025-10-12T16:18:51.075761", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-climate-fix", + "project_ideas_text": "" + } + }, + "2025_jabref-ev": { + "timestamp": "2025-10-12T16:18:51.671781", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jabref-ev", + "project_ideas_text": "" + } + }, + "2025_alaska": { + "timestamp": "2025-10-12T16:18:52.251331", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", + "project_ideas_text": "" + } + }, + "2025_the-ns-3-network-simulator-project": { + "timestamp": "2025-10-12T16:18:52.831302", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-ns-3-network-simulator-project", + "project_ideas_text": "" + } + }, + "2025_internet-health-report": { + "timestamp": "2025-10-12T16:18:53.411248", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/internet-health-report", + "project_ideas_text": "" + } + }, + "2025_apache-software-foundation": { + "timestamp": "2025-10-12T16:18:53.986406", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/apache-software-foundation", + "project_ideas_text": "" + } + }, + "2025_deepchem": { + "timestamp": "2025-10-12T16:18:54.562592", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/deepchem", + "project_ideas_text": "" + } + }, + "2025_the-tor-project": { + "timestamp": "2025-10-12T16:18:55.142110", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-tor-project", + "project_ideas_text": "" + } + }, + "2025_kubeflow": { + "timestamp": "2025-10-12T16:18:55.721279", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kubeflow", + "project_ideas_text": "" + } + }, + "2025_gnss-sdr": { + "timestamp": "2025-10-12T16:18:56.301914", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnss-sdr", + "project_ideas_text": "" + } + }, + "2025_synfig": { + "timestamp": "2025-10-12T16:18:56.885351", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/synfig", + "project_ideas_text": "" + } + }, + "2025_jax-and-keras": { + "timestamp": "2025-10-12T16:18:57.466592", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jax-and-keras", + "project_ideas_text": "" + } + }, + "2025_rizin": { + "timestamp": "2025-10-12T16:18:58.041548", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rizin", + "project_ideas_text": "" + } + }, + "2025_llvm-compiler-infrastructure": { + "timestamp": "2025-10-12T16:18:58.619511", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/llvm-compiler-infrastructure", + "project_ideas_text": "" + } + }, + "2025_open-healthcare-network": { + "timestamp": "2025-10-12T16:18:59.199018", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-healthcare-network", + "project_ideas_text": "" + } + }, + "2025_micro-electronics-research-lab-uitu": { + "timestamp": "2025-10-12T16:18:59.832667", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/micro-electronics-research-lab-uitu", + "project_ideas_text": "" + } + }, + "2025_ceph": { + "timestamp": "2025-10-12T16:19:00.407520", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ceph", + "project_ideas_text": "" + } + }, + "2025_neovim": { + "timestamp": "2025-10-12T16:19:00.985542", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/neovim", + "project_ideas_text": "" + } + }, + "2025_zulip": { + "timestamp": "2025-10-12T16:19:01.563425", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/zulip", + "project_ideas_text": "" + } + }, + "2025_gnu-radio": { + "timestamp": "2025-10-12T16:19:02.142118", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-radio", + "project_ideas_text": "" + } + }, + "2025_organic-maps": { + "timestamp": "2025-10-12T16:19:02.727098", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/organic-maps", + "project_ideas_text": "" + } + }, + "2025_grame": { + "timestamp": "2025-10-12T16:19:03.307499", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/grame", + "project_ideas_text": "" + } + }, + "2025_mixxx": { + "timestamp": "2025-10-12T16:19:03.886948", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mixxx", + "project_ideas_text": "" + } + }, + "2025_d-language-foundation": { + "timestamp": "2025-10-12T16:19:04.467221", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/d-language-foundation", + "project_ideas_text": "" + } + }, + "2025_data-for-the-common-good": { + "timestamp": "2025-10-12T16:19:05.048583", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/data-for-the-common-good", + "project_ideas_text": "" + } + }, + "2024_stdlib": { + "timestamp": "2025-10-12T16:19:05.795795", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "project_ideas_text": "" + } + }, + "2024_fossasia-bg": { + "timestamp": "2025-10-12T16:19:06.378816", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/fossasia-bg", + "project_ideas_text": "" + } + }, + "2024_prometheus-operator": { + "timestamp": "2025-10-12T16:19:06.956113", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/prometheus-operator", + "project_ideas_text": "" + } + }, + "2024_mit-app-inventor": { + "timestamp": "2025-10-12T16:19:07.534018", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mit-app-inventor", + "project_ideas_text": "" + } + }, + "2024_scummvm": { + "timestamp": "2025-10-12T16:19:08.112805", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/scummvm", + "project_ideas_text": "" + } + }, + "2024_fortran-lang": { + "timestamp": "2025-10-12T16:19:08.694826", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/fortran-lang", + "project_ideas_text": "" + } + }, + "2024_submitty": { + "timestamp": "2025-10-12T16:19:09.276215", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/submitty", + "project_ideas_text": "" + } + }, + "2024_cbioportal-for-cancer-genomics": { + "timestamp": "2025-10-12T16:19:09.855073", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cbioportal-for-cancer-genomics", + "project_ideas_text": "" + } + }, + "2024_humanai": { + "timestamp": "2025-10-12T16:19:10.433384", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/humanai", + "project_ideas_text": "" + } + }, + "2024_the-honeynet-project": { + "timestamp": "2025-10-12T16:19:11.011390", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-honeynet-project", + "project_ideas_text": "" + } + }, + "2024_jderobot": { + "timestamp": "2025-10-12T16:19:11.587367", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "project_ideas_text": "" + } + }, + "2024_open-transit-software-foundation": { + "timestamp": "2025-10-12T16:19:12.168455", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-transit-software-foundation", + "project_ideas_text": "" + } + }, + "2024_synfig": { + "timestamp": "2025-10-12T16:19:12.747069", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/synfig", + "project_ideas_text": "" + } + }, + "2024_fossology": { + "timestamp": "2025-10-12T16:19:13.329344", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/fossology", + "project_ideas_text": "" + } + }, + "2024_opencv": { + "timestamp": "2025-10-12T16:19:13.907923", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/opencv", + "project_ideas_text": "" + } + }, + "2024_asyncapi": { + "timestamp": "2025-10-12T16:19:14.485932", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/asyncapi", + "project_ideas_text": "" + } + }, + "2024_open-climate-fix": { + "timestamp": "2025-10-12T16:19:15.067941", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-climate-fix", + "project_ideas_text": "" + } + }, + "2024_nixos-foundation": { + "timestamp": "2025-10-12T16:19:15.647505", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nixos-foundation", + "project_ideas_text": "" + } + }, + "2024_organic-maps": { + "timestamp": "2025-10-12T16:19:16.228334", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/organic-maps", + "project_ideas_text": "" + } + }, + "2024_gprmax": { + "timestamp": "2025-10-12T16:19:16.805394", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gprmax", + "project_ideas_text": "" + } + }, + "2024_graphite": { + "timestamp": "2025-10-12T16:19:17.385775", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", + "project_ideas_text": "" + } + }, + "2024_alaska": { + "timestamp": "2025-10-12T16:19:17.963726", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "project_ideas_text": "" + } + }, + "2024_pecan-project": { + "timestamp": "2025-10-12T16:19:18.540753", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/pecan-project", + "project_ideas_text": "" + } + }, + "2024_internet-archive": { + "timestamp": "2025-10-12T16:19:19.124705", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/internet-archive", + "project_ideas_text": "" + } + }, + "2024_the-rust-foundation": { + "timestamp": "2025-10-12T16:19:19.702808", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-rust-foundation", + "project_ideas_text": "" + } + }, + "2024_mlpack": { + "timestamp": "2025-10-12T16:19:20.284345", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mlpack", + "project_ideas_text": "" + } + }, + "2024_haskellorg": { + "timestamp": "2025-10-12T16:19:20.862423", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", + "project_ideas_text": "" + } + }, + "2024_red-hen-lab": { + "timestamp": "2025-10-12T16:19:21.442630", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/red-hen-lab", + "project_ideas_text": "" + } + }, + "2024_internet-health-report": { + "timestamp": "2025-10-12T16:19:22.021938", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/internet-health-report", + "project_ideas_text": "" + } + }, + "2024_robolectric": { + "timestamp": "2025-10-12T16:19:22.603118", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/robolectric", + "project_ideas_text": "" + } + }, + "2024_qc-devs": { + "timestamp": "2025-10-12T16:19:23.181069", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/qc-devs", + "project_ideas_text": "" + } + }, + "2024_xmpp-standards-foundation": { + "timestamp": "2025-10-12T16:19:23.758248", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/xmpp-standards-foundation", + "project_ideas_text": "" + } + }, + "2024_mbdyn": { + "timestamp": "2025-10-12T16:19:24.337485", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mbdyn", + "project_ideas_text": "" + } + }, + "2024_rizin": { + "timestamp": "2025-10-12T16:19:24.921320", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rizin", + "project_ideas_text": "" + } + }, + "2024_gnss-sdr": { + "timestamp": "2025-10-12T16:19:25.499642", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnss-sdr", + "project_ideas_text": "" + } + }, + "2024_the-palisadoes-foundation": { + "timestamp": "2025-10-12T16:19:26.077817", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-palisadoes-foundation", + "project_ideas_text": "" + } + }, + "2024_scala-center": { + "timestamp": "2025-10-12T16:19:26.657933", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/scala-center", + "project_ideas_text": "" + } + }, + "2024_rocketchat": { + "timestamp": "2025-10-12T16:19:27.239197", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "project_ideas_text": "" + } + }, + "2024_numfocus": { + "timestamp": "2025-10-12T16:19:27.818702", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/numfocus", + "project_ideas_text": "" + } + }, + "2024_unikraft": { + "timestamp": "2025-10-12T16:19:28.396828", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/unikraft", + "project_ideas_text": "" + } + }, + "2024_circuitverseorg": { + "timestamp": "2025-10-12T16:19:28.976192", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/circuitverseorg", + "project_ideas_text": "" + } + }, + "2024_sympy": { + "timestamp": "2025-10-12T16:19:29.556730", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/sympy", + "project_ideas_text": "" + } + }, + "2024_blender-foundation": { + "timestamp": "2025-10-12T16:19:30.139665", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/blender-foundation", + "project_ideas_text": "" + } + }, + "2024_wagtail": { + "timestamp": "2025-10-12T16:19:30.716409", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/wagtail", + "project_ideas_text": "" + } + }, + "2024_sugar-labs": { + "timestamp": "2025-10-12T16:19:31.294447", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/sugar-labs", + "project_ideas_text": "" + } + }, + "2024_llvm-compiler-infrastructure": { + "timestamp": "2025-10-12T16:19:31.870660", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/llvm-compiler-infrastructure", + "project_ideas_text": "" + } + }, + "2024_gnu-compiler-collection-gcc": { + "timestamp": "2025-10-12T16:19:32.453816", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnu-compiler-collection-gcc", + "project_ideas_text": "" + } + }, + "2024_sagemath": { + "timestamp": "2025-10-12T16:19:33.030580", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/sagemath", + "project_ideas_text": "" + } + }, + "2024_purr-data": { + "timestamp": "2025-10-12T16:19:33.609120", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "project_ideas_text": "" + } + }, + "2024_kubeflow": { + "timestamp": "2025-10-12T16:19:34.191924", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kubeflow", + "project_ideas_text": "" + } + }, + "2024_52north-spatial-information-research-gmbh": { + "timestamp": "2025-10-12T16:19:34.771837", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/52north-spatial-information-research-gmbh", + "project_ideas_text": "" + } + }, + "2024_incf": { + "timestamp": "2025-10-12T16:19:35.347934", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/incf", + "project_ideas_text": "" + } + }, + "2024_machine-learning-for-science-ml4sci": { + "timestamp": "2025-10-12T16:19:35.927402", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/machine-learning-for-science-ml4sci", + "project_ideas_text": "" + } + }, + "2024_tardis-rt-collaboration": { + "timestamp": "2025-10-12T16:19:36.509556", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/tardis-rt-collaboration", + "project_ideas_text": "" + } + }, + "2024_the-p4-language-consortium": { + "timestamp": "2025-10-12T16:19:37.089555", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-p4-language-consortium", + "project_ideas_text": "" + } + }, + "2024_stratosphere-laboratory-czech-technical-university-in-prague": { + "timestamp": "2025-10-12T16:19:37.675596", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stratosphere-laboratory-czech-technical-university-in-prague", + "project_ideas_text": "" + } + }, + "2024_freetype": { + "timestamp": "2025-10-12T16:19:38.254599", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freetype", + "project_ideas_text": "" + } + }, + "2024_the-enigma-team": { + "timestamp": "2025-10-12T16:19:38.827951", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", + "project_ideas_text": "" + } + }, + "2024_joplin": { + "timestamp": "2025-10-12T16:19:39.407574", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/joplin", + "project_ideas_text": "" + } + }, + "2024_django-software-foundation-8o": { + "timestamp": "2025-10-12T16:19:39.989199", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "project_ideas_text": "" + } + }, + "2024_open-robotics": { + "timestamp": "2025-10-12T16:19:40.567157", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-robotics", + "project_ideas_text": "" + } + }, + "2024_the-jpf-team-hg": { + "timestamp": "2025-10-12T16:19:41.143571", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-jpf-team-hg", + "project_ideas_text": "" + } + }, + "2024_gnu-octave": { + "timestamp": "2025-10-12T16:19:41.735100", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnu-octave", + "project_ideas_text": "" + } + }, + "2024_the-freebsd-project": { + "timestamp": "2025-10-12T16:19:42.333801", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-freebsd-project", + "project_ideas_text": "" + } + }, + "2024_dart": { + "timestamp": "2025-10-12T16:19:42.913849", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/dart", + "project_ideas_text": "" + } + }, + "2024_deepchem": { + "timestamp": "2025-10-12T16:19:43.496537", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/deepchem", + "project_ideas_text": "" + } + }, + "2024_jabref-ev": { + "timestamp": "2025-10-12T16:19:44.081513", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jabref-ev", + "project_ideas_text": "" + } + }, + "2024_beagleboardorg": { + "timestamp": "2025-10-12T16:19:44.657183", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/beagleboardorg", + "project_ideas_text": "" + } + }, + "2024_python-software-foundation": { + "timestamp": "2025-10-12T16:19:45.233027", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", + "project_ideas_text": "" + } + }, + "2024_the-ns-3-network-simulator-project": { + "timestamp": "2025-10-12T16:19:45.813527", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-ns-3-network-simulator-project", + "project_ideas_text": "" + } + }, + "2024_sktime": { + "timestamp": "2025-10-12T16:19:46.398855", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/sktime", + "project_ideas_text": "" + } + }, + "2024_ardupilot": { + "timestamp": "2025-10-12T16:19:46.974977", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ardupilot", + "project_ideas_text": "" + } + }, + "2024_neutralinojs": { + "timestamp": "2025-10-12T16:19:47.555302", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "project_ideas_text": "" + } + }, + "2024_lablua": { + "timestamp": "2025-10-12T16:19:48.133933", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/lablua", + "project_ideas_text": "" + } + }, + "2024_scalable-parallel-computing-laboratory": { + "timestamp": "2025-10-12T16:19:48.716173", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/scalable-parallel-computing-laboratory", + "project_ideas_text": "" + } + }, + "2024_openrefine-j0": { + "timestamp": "2025-10-12T16:19:49.295215", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openrefine-j0", + "project_ideas_text": "" + } + }, + "2024_gnome-foundation": { + "timestamp": "2025-10-12T16:19:49.878321", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnome-foundation", + "project_ideas_text": "" + } + }, + "2024_global-alliance-for-genomics-and-health": { + "timestamp": "2025-10-12T16:19:50.457136", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/global-alliance-for-genomics-and-health", + "project_ideas_text": "" + } + }, + "2024_ioos": { + "timestamp": "2025-10-12T16:19:51.033607", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ioos", + "project_ideas_text": "" + } + }, + "2024_rtems-project": { + "timestamp": "2025-10-12T16:19:51.612798", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rtems-project", + "project_ideas_text": "" + } + }, + "2024_uramaki-lab": { + "timestamp": "2025-10-12T16:19:52.191873", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/uramaki-lab", + "project_ideas_text": "" + } + }, + "2024_open-technologies-alliance-gfoss": { + "timestamp": "2025-10-12T16:19:52.772409", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-technologies-alliance-gfoss", + "project_ideas_text": "" + } + }, + "2024_gnu-project": { + "timestamp": "2025-10-12T16:19:53.352958", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnu-project", + "project_ideas_text": "" + } + }, + "2024_libssh": { + "timestamp": "2025-10-12T16:19:53.932295", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/libssh", + "project_ideas_text": "" + } + }, + "2024_the-netbsd-foundation": { + "timestamp": "2025-10-12T16:19:54.509571", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-netbsd-foundation", + "project_ideas_text": "" + } + }, + "2024_data-for-the-common-good": { + "timestamp": "2025-10-12T16:19:55.086746", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/data-for-the-common-good", + "project_ideas_text": "" + } + }, + "2024_mixxx": { + "timestamp": "2025-10-12T16:19:55.666481", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mixxx", + "project_ideas_text": "" + } + }, + "2024_jitsi": { + "timestamp": "2025-10-12T16:19:56.243191", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jitsi", + "project_ideas_text": "" + } + }, + "2024_videolan": { + "timestamp": "2025-10-12T16:19:56.819718", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/videolan", + "project_ideas_text": "" + } + }, + "2024_kolibrios-project-team": { + "timestamp": "2025-10-12T16:19:57.406690", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kolibrios-project-team", + "project_ideas_text": "" + } + }, + "2024_keploy": { + "timestamp": "2025-10-12T16:19:57.985120", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/keploy", + "project_ideas_text": "" + } + }, + "2024_osgeo-open-source-geospatial-foundation": { + "timestamp": "2025-10-12T16:19:58.566922", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/osgeo-open-source-geospatial-foundation", + "project_ideas_text": "" + } + }, + "2024_zendalona": { + "timestamp": "2025-10-12T16:19:59.151177", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/zendalona", + "project_ideas_text": "" + } + }, + "2024_libvirt": { + "timestamp": "2025-10-12T16:19:59.736799", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/libvirt", + "project_ideas_text": "" + } + }, + "2024_learning-equality": { + "timestamp": "2025-10-12T16:20:00.316212", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/learning-equality", + "project_ideas_text": "" + } + }, + "2024_city-of-boston": { + "timestamp": "2025-10-12T16:20:00.898870", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/city-of-boston", + "project_ideas_text": "" + } + }, + "2024_cern-hsf": { + "timestamp": "2025-10-12T16:20:01.479775", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cern-hsf", + "project_ideas_text": "" + } + }, + "2024_inkscape": { + "timestamp": "2025-10-12T16:20:02.061115", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/inkscape", + "project_ideas_text": "" + } + }, + "2024_opensuse-project": { + "timestamp": "2025-10-12T16:20:02.639069", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/opensuse-project", + "project_ideas_text": "" + } + }, + "2024_kde-community": { + "timestamp": "2025-10-12T16:20:03.220026", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kde-community", + "project_ideas_text": "" + } + }, + "2024_json-schema": { + "timestamp": "2025-10-12T16:20:03.795911", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/json-schema", + "project_ideas_text": "" + } + }, + "2024_gnu-image-manipulation-program": { + "timestamp": "2025-10-12T16:20:04.372335", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnu-image-manipulation-program", + "project_ideas_text": "" + } + }, + "2024_project-mesa": { + "timestamp": "2025-10-12T16:20:04.956658", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/project-mesa", + "project_ideas_text": "" + } + }, + "2024_micro-electronics-research-lab-uitu": { + "timestamp": "2025-10-12T16:20:05.542670", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/micro-electronics-research-lab-uitu", + "project_ideas_text": "" + } + }, + "2024_omegaup": { + "timestamp": "2025-10-12T16:20:06.124001", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/omegaup", + "project_ideas_text": "" + } + }, + "2024_national-resource-for-network-biology-nrnb": { + "timestamp": "2025-10-12T16:20:06.784387", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", + "project_ideas_text": "" + } + }, + "2024_openelis-global": { + "timestamp": "2025-10-12T16:20:07.363031", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openelis-global", + "project_ideas_text": "" + } + }, + "2024_uc-ospo": { + "timestamp": "2025-10-12T16:20:07.942379", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/uc-ospo", + "project_ideas_text": "" + } + }, + "2024_stichting-su2": { + "timestamp": "2025-10-12T16:20:08.519464", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stichting-su2", + "project_ideas_text": "" + } + }, + "2024_invesalius": { + "timestamp": "2025-10-12T16:20:09.101732", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/invesalius", + "project_ideas_text": "" + } + }, + "2024_moveit": { + "timestamp": "2025-10-12T16:20:09.679299", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/moveit", + "project_ideas_text": "" + } + }, + "2024_flare": { + "timestamp": "2025-10-12T16:20:10.257493", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/flare", + "project_ideas_text": "" + } + }, + "2024_software-and-computational-systems-lab-at-lmu-munich": { + "timestamp": "2025-10-12T16:20:10.837440", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/software-and-computational-systems-lab-at-lmu-munich", + "project_ideas_text": "" + } + }, + "2024_drupal-association": { + "timestamp": "2025-10-12T16:20:11.421404", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/drupal-association", + "project_ideas_text": "" + } + }, + "2024_c2si": { + "timestamp": "2025-10-12T16:20:12.000809", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/c2si", + "project_ideas_text": "" + } + }, + "2024_the-linux-foundation": { + "timestamp": "2025-10-12T16:20:12.577349", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-linux-foundation", + "project_ideas_text": "" + } + }, + "2024_grame": { + "timestamp": "2025-10-12T16:20:13.154691", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/grame", + "project_ideas_text": "" + } + }, + "2024_swift": { + "timestamp": "2025-10-12T16:20:13.730547", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/swift", + "project_ideas_text": "" + } + }, + "2024_checkstyle": { + "timestamp": "2025-10-12T16:20:14.309360", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/checkstyle", + "project_ideas_text": "" + } + }, + "2024_metabrainz-foundation-inc": { + "timestamp": "2025-10-12T16:20:14.891998", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metabrainz-foundation-inc", + "project_ideas_text": "" + } + }, + "2024_aboutcode": { + "timestamp": "2025-10-12T16:20:15.472889", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aboutcode", + "project_ideas_text": "" + } + }, + "2024_geomscale": { + "timestamp": "2025-10-12T16:20:16.055815", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/geomscale", + "project_ideas_text": "" + } + }, + "2024_open-chromosome-collective": { + "timestamp": "2025-10-12T16:20:16.636979", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chromosome-collective", + "project_ideas_text": "" + } + }, + "2024_eunomia-bpf": { + "timestamp": "2025-10-12T16:20:17.217300", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/eunomia-bpf", + "project_ideas_text": "" + } + }, + "2024_datenlord-6z": { + "timestamp": "2025-10-12T16:20:17.797392", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/datenlord-6z", + "project_ideas_text": "" + } + }, + "2024_api-dash": { + "timestamp": "2025-10-12T16:20:18.376920", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", + "project_ideas_text": "" + } + }, + "2024_oppia-foundation": { + "timestamp": "2025-10-12T16:20:18.958472", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/oppia-foundation", + "project_ideas_text": "" + } + }, + "2024_dbpedia": { + "timestamp": "2025-10-12T16:20:19.540617", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/dbpedia", + "project_ideas_text": "" + } + }, + "2024_criu": { + "timestamp": "2025-10-12T16:20:20.115940", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/criu", + "project_ideas_text": "" + } + }, + "2024_brl-cad": { + "timestamp": "2025-10-12T16:20:20.693763", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "project_ideas_text": "" + } + }, + "2024_ceph": { + "timestamp": "2025-10-12T16:20:21.270618", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ceph", + "project_ideas_text": "" + } + }, + "2024_openvino-toolkit": { + "timestamp": "2025-10-12T16:20:21.846986", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openvino-toolkit", + "project_ideas_text": "" + } + }, + "2024_department-of-biomedical-informatics-emory-university": { + "timestamp": "2025-10-12T16:20:22.428303", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/department-of-biomedical-informatics-emory-university", + "project_ideas_text": "" + } + }, + "2024_openmrs": { + "timestamp": "2025-10-12T16:20:23.006473", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openmrs", + "project_ideas_text": "" + } + }, + "2024_aossie": { + "timestamp": "2025-10-12T16:20:23.587545", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", + "project_ideas_text": "" + } + }, + "2024_open-healthcare-network": { + "timestamp": "2025-10-12T16:20:24.167488", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-healthcare-network", + "project_ideas_text": "" + } + }, + "2024_wikimedia-foundation-nd": { + "timestamp": "2025-10-12T16:20:24.750294", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/wikimedia-foundation-nd", + "project_ideas_text": "" + } + }, + "2024_zulip": { + "timestamp": "2025-10-12T16:20:25.331199", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/zulip", + "project_ideas_text": "" + } + }, + "2024_freecad": { + "timestamp": "2025-10-12T16:20:25.916712", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freecad", + "project_ideas_text": "" + } + }, + "2024_eclipse-foundation": { + "timestamp": "2025-10-12T16:20:26.494582", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/eclipse-foundation", + "project_ideas_text": "" + } + }, + "2024_open-chemistry": { + "timestamp": "2025-10-12T16:20:27.074969", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "project_ideas_text": "" + } + }, + "2024_chips-alliance": { + "timestamp": "2025-10-12T16:20:27.653179", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/chips-alliance", + "project_ideas_text": "" + } + }, + "2024_mautic": { + "timestamp": "2025-10-12T16:20:28.233203", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mautic", + "project_ideas_text": "" + } + }, + "2024_git": { + "timestamp": "2025-10-12T16:20:28.813075", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", + "project_ideas_text": "" + } + }, + "2024_the-mifos-initiative": { + "timestamp": "2025-10-12T16:20:29.393439", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-mifos-initiative", + "project_ideas_text": "" + } + }, + "2024_cloudcv": { + "timestamp": "2025-10-12T16:20:29.975261", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cloudcv", + "project_ideas_text": "" + } + }, + "2024_openwisp": { + "timestamp": "2025-10-12T16:20:30.559811", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openwisp", + "project_ideas_text": "" + } + }, + "2024_ffmpeg": { + "timestamp": "2025-10-12T16:20:31.135851", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ffmpeg", + "project_ideas_text": "" + } + }, + "2024_debian": { + "timestamp": "2025-10-12T16:20:31.716083", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/debian", + "project_ideas_text": "" + } + }, + "2024_camicroscope": { + "timestamp": "2025-10-12T16:20:32.311046", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "project_ideas_text": "" + } + }, + "2024_electron": { + "timestamp": "2025-10-12T16:20:32.890169", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", + "project_ideas_text": "" + } + }, + "2024_accord-project": { + "timestamp": "2025-10-12T16:20:33.466951", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/accord-project", + "project_ideas_text": "" + } + }, + "2024_chromium-lj": { + "timestamp": "2025-10-12T16:20:34.044783", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/chromium-lj", + "project_ideas_text": "" + } + }, + "2024_aflplusplus": { + "timestamp": "2025-10-12T16:20:34.624411", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aflplusplus", + "project_ideas_text": "" + } + }, + "2024_ankidroid": { + "timestamp": "2025-10-12T16:20:35.212291", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ankidroid", + "project_ideas_text": "" + } + }, + "2024_haiku": { + "timestamp": "2025-10-12T16:20:35.790383", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haiku", + "project_ideas_text": "" + } + }, + "2024_plone-foundation": { + "timestamp": "2025-10-12T16:20:36.377990", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", + "project_ideas_text": "" + } + }, + "2024_mariadb": { + "timestamp": "2025-10-12T16:20:36.954557", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mariadb", + "project_ideas_text": "" + } + }, + "2024_cgal-project": { + "timestamp": "2025-10-12T16:20:37.533967", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cgal-project", + "project_ideas_text": "" + } + }, + "2024_the-julia-language": { + "timestamp": "2025-10-12T16:20:38.115652", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-julia-language", + "project_ideas_text": "" + } + }, + "2024_webpack": { + "timestamp": "2025-10-12T16:20:38.693003", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "project_ideas_text": "" + } + }, + "2024_owasp-foundation": { + "timestamp": "2025-10-12T16:20:39.275330", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/owasp-foundation", + "project_ideas_text": "" + } + }, + "2024_liquid-galaxy-project": { + "timestamp": "2025-10-12T16:20:39.852680", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/liquid-galaxy-project", + "project_ideas_text": "" + } + }, + "2024_jenkins-wp": { + "timestamp": "2025-10-12T16:20:40.434129", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "project_ideas_text": "" + } + }, + "2024_cncf": { + "timestamp": "2025-10-12T16:20:41.016124", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cncf", + "project_ideas_text": "" + } + }, + "2024_polypheny": { + "timestamp": "2025-10-12T16:20:41.590409", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny", + "project_ideas_text": "" + } + }, + "2024_musescore": { + "timestamp": "2025-10-12T16:20:42.171351", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/musescore", + "project_ideas_text": "" + } + }, + "2024_postgresql": { + "timestamp": "2025-10-12T16:20:42.752714", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/postgresql", + "project_ideas_text": "" + } + }, + "2024_unicode-inc": { + "timestamp": "2025-10-12T16:20:43.335084", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/unicode-inc", + "project_ideas_text": "" + } + }, + "2024_kubevirt": { + "timestamp": "2025-10-12T16:20:43.913652", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kubevirt", + "project_ideas_text": "" + } + }, + "2024_wellcome-sanger-institute": { + "timestamp": "2025-10-12T16:20:44.495588", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/wellcome-sanger-institute", + "project_ideas_text": "" + } + }, + "2024_international-catrobat-association": { + "timestamp": "2025-10-12T16:20:45.077000", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/international-catrobat-association", + "project_ideas_text": "" + } + }, + "2024_apache-software-foundation": { + "timestamp": "2025-10-12T16:20:45.654929", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apache-software-foundation", + "project_ideas_text": "" + } + }, + "2024_open-science-initiative-for-perfusion-imaging": { + "timestamp": "2025-10-12T16:20:46.235297", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", + "project_ideas_text": "" + } + }, + "2024_openastronomy": { + "timestamp": "2025-10-12T16:20:46.811330", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", + "project_ideas_text": "" + } + }, + "2024_nightwatchjs": { + "timestamp": "2025-10-12T16:20:47.395296", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", + "project_ideas_text": "" + } + }, + "2024_waycrate": { + "timestamp": "2025-10-12T16:20:47.974229", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/waycrate", + "project_ideas_text": "" + } + }, + "2024_libreoffice": { + "timestamp": "2025-10-12T16:20:48.552928", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/libreoffice", + "project_ideas_text": "" + } + }, + "2024_ccextractor-development": { + "timestamp": "2025-10-12T16:20:49.138416", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/ccextractor-development", + "project_ideas_text": "" + } + }, + "2024_openstreetmap": { + "timestamp": "2025-10-12T16:20:49.716966", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openstreetmap", + "project_ideas_text": "" + } + }, + "2024_metacall": { + "timestamp": "2025-10-12T16:20:50.296389", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", + "project_ideas_text": "" + } + }, + "2024_lappis": { + "timestamp": "2025-10-12T16:20:50.875113", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/lappis", + "project_ideas_text": "" + } + }, + "2024_stear-group": { + "timestamp": "2025-10-12T16:20:51.457730", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stear-group", + "project_ideas_text": "" + } + }, + "2024_apertium": { + "timestamp": "2025-10-12T16:20:52.033812", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", + "project_ideas_text": "" + } + }, + "2024_kotlin-foundation": { + "timestamp": "2025-10-12T16:20:52.612719", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kotlin-foundation", + "project_ideas_text": "" + } + }, + "2024_librecube-initiative": { + "timestamp": "2025-10-12T16:20:53.189436", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/librecube-initiative", + "project_ideas_text": "" + } + }, + "2024_cvat": { + "timestamp": "2025-10-12T16:20:53.770692", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/cvat", + "project_ideas_text": "" + } + }, + "2024_r-project-for-statistical-computing": { + "timestamp": "2025-10-12T16:20:54.349353", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/r-project-for-statistical-computing", + "project_ideas_text": "" + } + }, + "2024_creative-commons": { + "timestamp": "2025-10-12T16:20:54.926719", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/creative-commons", + "project_ideas_text": "" + } + }, + "2024_free-and-open-source-silicon-foundation": { + "timestamp": "2025-10-12T16:20:55.508596", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/free-and-open-source-silicon-foundation", + "project_ideas_text": "" + } + }, + "2024_kiwix": { + "timestamp": "2025-10-12T16:20:56.088827", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/kiwix", + "project_ideas_text": "" + } + }, + "2024_gnu-radio": { + "timestamp": "2025-10-12T16:20:56.662556", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/gnu-radio", + "project_ideas_text": "" + } + }, + "2024_mdanalysis": { + "timestamp": "2025-10-12T16:20:57.246697", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/mdanalysis", + "project_ideas_text": "" + } + }, + "2024_freifunk": { + "timestamp": "2025-10-12T16:20:57.828841", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "project_ideas_text": "" + } + }, + "2023_mantis": { + "timestamp": "2025-10-12T16:20:58.562847", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mantis", + "project_ideas_text": "" + } + }, + "2023_keploy": { + "timestamp": "2025-10-12T16:20:59.160571", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/keploy", + "project_ideas_text": "" + } + }, + "2023_unikraft": { + "timestamp": "2025-10-12T16:20:59.743695", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/unikraft", + "project_ideas_text": "" + } + }, + "2023_mdanalysis": { + "timestamp": "2025-10-12T16:21:00.323302", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mdanalysis", + "project_ideas_text": "" + } + }, + "2023_checkstyle": { + "timestamp": "2025-10-12T16:21:00.901561", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/checkstyle", + "project_ideas_text": "" + } + }, + "2023_pharo-consortium": { + "timestamp": "2025-10-12T16:21:01.481628", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/pharo-consortium", + "project_ideas_text": "" + } + }, + "2023_geomscale": { + "timestamp": "2025-10-12T16:21:02.057978", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/geomscale", + "project_ideas_text": "" + } + }, + "2023_librehealth": { + "timestamp": "2025-10-12T16:21:02.639588", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/librehealth", + "project_ideas_text": "" + } + }, + "2023_micro-electronics-research-lab-uitu": { + "timestamp": "2025-10-12T16:21:03.221359", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/micro-electronics-research-lab-uitu", + "project_ideas_text": "" + } + }, + "2023_blender-foundation": { + "timestamp": "2025-10-12T16:21:03.800378", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/blender-foundation", + "project_ideas_text": "" + } + }, + "2023_kubevirt": { + "timestamp": "2025-10-12T16:21:04.381194", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/kubevirt", + "project_ideas_text": "" + } + }, + "2023_libcamera": { + "timestamp": "2025-10-12T16:21:04.959915", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/libcamera", + "project_ideas_text": "" + } + }, + "2023_freecad": { + "timestamp": "2025-10-12T16:21:05.540055", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freecad", + "project_ideas_text": "" + } + }, + "2023_mlpack": { + "timestamp": "2025-10-12T16:21:06.121095", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mlpack", + "project_ideas_text": "" + } + }, + "2023_mathesar": { + "timestamp": "2025-10-12T16:21:06.697990", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mathesar", + "project_ideas_text": "" + } + }, + "2023_chips-alliance": { + "timestamp": "2025-10-12T16:21:07.278705", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/chips-alliance", + "project_ideas_text": "" + } + }, + "2023_software-and-computational-systems-lab-at-lmu-munich": { + "timestamp": "2025-10-12T16:21:07.860438", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/software-and-computational-systems-lab-at-lmu-munich", + "project_ideas_text": "" + } + }, + "2023_libssh": { + "timestamp": "2025-10-12T16:21:08.442259", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/libssh", + "project_ideas_text": "" + } + }, + "2023_eclipse-foundation": { + "timestamp": "2025-10-12T16:21:09.024959", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/eclipse-foundation", + "project_ideas_text": "" + } + }, + "2023_global-alliance-for-genomics-and-health": { + "timestamp": "2025-10-12T16:21:09.610520", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/global-alliance-for-genomics-and-health", + "project_ideas_text": "" + } + }, + "2023_52north-spatial-information-research-gmbh": { + "timestamp": "2025-10-12T16:21:10.188974", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/52north-spatial-information-research-gmbh", + "project_ideas_text": "" + } + }, + "2023_pitivi": { + "timestamp": "2025-10-12T16:21:10.766816", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/pitivi", + "project_ideas_text": "" + } + }, + "2023_internet-archive": { + "timestamp": "2025-10-12T16:21:11.345215", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/internet-archive", + "project_ideas_text": "" + } + }, + "2023_rocketchat": { + "timestamp": "2025-10-12T16:21:11.920719", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "project_ideas_text": "" + } + }, + "2023_purr-data": { + "timestamp": "2025-10-12T16:21:12.503902", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "project_ideas_text": "" + } + }, + "2023_aossie": { + "timestamp": "2025-10-12T16:21:13.082472", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", + "project_ideas_text": "" + } + }, + "2023_the-honeynet-project": { + "timestamp": "2025-10-12T16:21:13.664341", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-honeynet-project", + "project_ideas_text": "" + } + }, + "2023_gnutls": { + "timestamp": "2025-10-12T16:21:14.240001", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnutls", + "project_ideas_text": "" + } + }, + "2023_red-hen-lab": { + "timestamp": "2025-10-12T16:21:14.818367", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/red-hen-lab", + "project_ideas_text": "" + } + }, + "2023_the-julia-language": { + "timestamp": "2025-10-12T16:21:15.397289", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-julia-language", + "project_ideas_text": "" + } + }, + "2023_gnu-project": { + "timestamp": "2025-10-12T16:21:15.975479", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnu-project", + "project_ideas_text": "" + } + }, + "2023_creative-commons": { + "timestamp": "2025-10-12T16:21:16.551444", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/creative-commons", + "project_ideas_text": "" + } + }, + "2023_liquid-galaxy-project": { + "timestamp": "2025-10-12T16:21:17.132277", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/liquid-galaxy-project", + "project_ideas_text": "" + } + }, + "2023_the-jpf-team": { + "timestamp": "2025-10-12T16:21:17.713399", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-jpf-team", + "project_ideas_text": "" + } + }, + "2023_spdx": { + "timestamp": "2025-10-12T16:21:18.291715", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/spdx", + "project_ideas_text": "" + } + }, + "2023_tardis-rt-collaboration": { + "timestamp": "2025-10-12T16:21:18.869768", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/tardis-rt-collaboration", + "project_ideas_text": "" + } + }, + "2023_rtems-project": { + "timestamp": "2025-10-12T16:21:19.450439", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rtems-project", + "project_ideas_text": "" + } + }, + "2023_wagtail": { + "timestamp": "2025-10-12T16:21:20.028618", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/wagtail", + "project_ideas_text": "" + } + }, + "2023_zulip": { + "timestamp": "2025-10-12T16:21:20.609088", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/zulip", + "project_ideas_text": "" + } + }, + "2023_stratosphere-laboratory-czech-technical-university-in-prague": { + "timestamp": "2025-10-12T16:21:21.193050", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/stratosphere-laboratory-czech-technical-university-in-prague", + "project_ideas_text": "" + } + }, + "2023_aboutcode": { + "timestamp": "2025-10-12T16:21:21.774087", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aboutcode", + "project_ideas_text": "" + } + }, + "2023_mariadb": { + "timestamp": "2025-10-12T16:21:22.350606", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mariadb", + "project_ideas_text": "" + } + }, + "2023_cncf": { + "timestamp": "2025-10-12T16:21:22.931985", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cncf", + "project_ideas_text": "" + } + }, + "2023_cbioportal-for-cancer-genomics": { + "timestamp": "2025-10-12T16:21:23.507630", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cbioportal-for-cancer-genomics", + "project_ideas_text": "" + } + }, + "2023_coreboot": { + "timestamp": "2025-10-12T16:21:24.088100", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/coreboot", + "project_ideas_text": "" + } + }, + "2023_metabrainz-foundation-inc": { + "timestamp": "2025-10-12T16:21:24.673089", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metabrainz-foundation-inc", + "project_ideas_text": "" + } + }, + "2023_postgresql": { + "timestamp": "2025-10-12T16:21:25.248617", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/postgresql", + "project_ideas_text": "" + } + }, + "2023_xorg-foundation": { + "timestamp": "2025-10-12T16:21:25.830010", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xorg-foundation", + "project_ideas_text": "" + } + }, + "2023_open-technologies-alliance-gfoss": { + "timestamp": "2025-10-12T16:21:26.410305", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-technologies-alliance-gfoss", + "project_ideas_text": "" + } + }, + "2023_sympy": { + "timestamp": "2025-10-12T16:21:26.989930", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/sympy", + "project_ideas_text": "" + } + }, + "2023_kotlin-foundation": { + "timestamp": "2025-10-12T16:21:27.569106", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/kotlin-foundation", + "project_ideas_text": "" + } + }, + "2023_carbon-language": { + "timestamp": "2025-10-12T16:21:28.181381", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/carbon-language", + "project_ideas_text": "" + } + }, + "2023_the-mifos-initiative": { + "timestamp": "2025-10-12T16:21:28.764711", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-mifos-initiative", + "project_ideas_text": "" + } + }, + "2023_openastronomy": { + "timestamp": "2025-10-12T16:21:29.350634", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy", + "project_ideas_text": "" + } + }, + "2023_xmpp-standards-foundation": { + "timestamp": "2025-10-12T16:21:29.931635", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xmpp-standards-foundation", + "project_ideas_text": "" + } + }, + "2023_dbpedia": { + "timestamp": "2025-10-12T16:21:30.511208", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/dbpedia", + "project_ideas_text": "" + } + }, + "2023_django-software-foundation-8o": { + "timestamp": "2025-10-12T16:21:31.088960", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", + "project_ideas_text": "" + } + }, + "2023_fossology": { + "timestamp": "2025-10-12T16:21:31.666607", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/fossology", + "project_ideas_text": "" + } + }, + "2023_criu": { + "timestamp": "2025-10-12T16:21:32.246260", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/criu", + "project_ideas_text": "" + } + }, + "2023_ruby": { + "timestamp": "2025-10-12T16:21:32.826135", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ruby", + "project_ideas_text": "" + } + }, + "2023_mayors-office-of-new-urban-mechanics": { + "timestamp": "2025-10-12T16:21:33.405300", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mayors-office-of-new-urban-mechanics", + "project_ideas_text": "" + } + }, + "2023_the-freebsd-project": { + "timestamp": "2025-10-12T16:21:33.987169", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-freebsd-project", + "project_ideas_text": "" + } + }, + "2023_internet-health-report": { + "timestamp": "2025-10-12T16:21:34.568362", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/internet-health-report", + "project_ideas_text": "" + } + }, + "2023_sagemath": { + "timestamp": "2025-10-12T16:21:35.153476", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/sagemath", + "project_ideas_text": "" + } + }, + "2023_gnome-foundation": { + "timestamp": "2025-10-12T16:21:35.733765", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnome-foundation", + "project_ideas_text": "" + } + }, + "2023_scalable-parallel-computing-laboratory": { + "timestamp": "2025-10-12T16:21:36.310932", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/scalable-parallel-computing-laboratory", + "project_ideas_text": "" + } + }, + "2023_grame": { + "timestamp": "2025-10-12T16:21:36.887271", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/grame", + "project_ideas_text": "" + } + }, + "2023_beagleboardorg": { + "timestamp": "2025-10-12T16:21:37.462522", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/beagleboardorg", + "project_ideas_text": "" + } + }, + "2023_gentoo-foundation": { + "timestamp": "2025-10-12T16:21:38.043436", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gentoo-foundation", + "project_ideas_text": "" + } + }, + "2023_flare": { + "timestamp": "2025-10-12T16:21:38.624602", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/flare", + "project_ideas_text": "" + } + }, + "2023_llvm-compiler-infrastructure": { + "timestamp": "2025-10-12T16:21:39.207739", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/llvm-compiler-infrastructure", + "project_ideas_text": "" + } + }, + "2023_mzmine-and-ms-dial": { + "timestamp": "2025-10-12T16:21:39.795406", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", + "project_ideas_text": "" + } + }, + "2023_python-software-foundation": { + "timestamp": "2025-10-12T16:21:40.377749", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "project_ideas_text": "" + } + }, + "2023_scala-center": { + "timestamp": "2025-10-12T16:21:40.955938", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/scala-center", + "project_ideas_text": "" + } + }, + "2023_fortran-lang": { + "timestamp": "2025-10-12T16:21:41.535405", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/fortran-lang", + "project_ideas_text": "" + } + }, + "2023_drupal-association": { + "timestamp": "2025-10-12T16:21:42.118106", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/drupal-association", + "project_ideas_text": "" + } + }, + "2023_wikimedia-foundation": { + "timestamp": "2025-10-12T16:21:42.696168", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/wikimedia-foundation", + "project_ideas_text": "" + } + }, + "2023_cloudcv": { + "timestamp": "2025-10-12T16:21:43.274568", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cloudcv", + "project_ideas_text": "" + } + }, + "2023_incf": { + "timestamp": "2025-10-12T16:21:43.857366", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/incf", + "project_ideas_text": "" + } + }, + "2023_ceph": { + "timestamp": "2025-10-12T16:21:44.439027", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ceph", + "project_ideas_text": "" + } + }, + "2023_invesalius": { + "timestamp": "2025-10-12T16:21:45.018943", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/invesalius", + "project_ideas_text": "" + } + }, + "2023_oppia-foundation": { + "timestamp": "2025-10-12T16:21:45.598338", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/oppia-foundation", + "project_ideas_text": "" + } + }, + "2023_camicroscope": { + "timestamp": "2025-10-12T16:21:46.180015", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "project_ideas_text": "" + } + }, + "2023_cern-hsf": { + "timestamp": "2025-10-12T16:21:46.759598", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cern-hsf", + "project_ideas_text": "" + } + }, + "2023_swift": { + "timestamp": "2025-10-12T16:21:47.345201", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/swift", + "project_ideas_text": "" + } + }, + "2023_machine-learning-for-science-ml4sci": { + "timestamp": "2025-10-12T16:21:47.926933", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/machine-learning-for-science-ml4sci", + "project_ideas_text": "" + } + }, + "2023_haiku": { + "timestamp": "2025-10-12T16:21:48.506271", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/haiku", + "project_ideas_text": "" + } + }, + "2023_jenkins-wp": { + "timestamp": "2025-10-12T16:21:49.089590", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "project_ideas_text": "" + } + }, + "2023_sugar-labs": { + "timestamp": "2025-10-12T16:21:49.671843", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/sugar-labs", + "project_ideas_text": "" + } + }, + "2023_organic-maps": { + "timestamp": "2025-10-12T16:21:50.277378", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/organic-maps", + "project_ideas_text": "" + } + }, + "2023_aflplusplus": { + "timestamp": "2025-10-12T16:21:50.858070", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aflplusplus", + "project_ideas_text": "" + } + }, + "2023_gprmax": { + "timestamp": "2025-10-12T16:21:51.433908", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gprmax", + "project_ideas_text": "" + } + }, + "2023_ardupilot": { + "timestamp": "2025-10-12T16:21:52.020543", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ardupilot", + "project_ideas_text": "" + } + }, + "2023_metacall": { + "timestamp": "2025-10-12T16:21:52.597119", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", + "project_ideas_text": "" + } + }, + "2023_qdrant": { + "timestamp": "2025-10-12T16:21:53.226602", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/qdrant", + "project_ideas_text": "" + } + }, + "2023_score-lab": { + "timestamp": "2025-10-12T16:21:53.805980", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/score-lab", + "project_ideas_text": "" + } + }, + "2023_the-enigma-team": { + "timestamp": "2025-10-12T16:21:54.402402", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", + "project_ideas_text": "" + } + }, + "2023_postman": { + "timestamp": "2025-10-12T16:21:54.981839", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/postman", + "project_ideas_text": "" + } + }, + "2023_brl-cad": { + "timestamp": "2025-10-12T16:21:55.560261", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", + "project_ideas_text": "" + } + }, + "2023_rizin": { + "timestamp": "2025-10-12T16:21:56.143710", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rizin", + "project_ideas_text": "" + } + }, + "2023_synfig": { + "timestamp": "2025-10-12T16:21:56.723269", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/synfig", + "project_ideas_text": "" + } + }, + "2023_society-for-arts-and-technology-sat": { + "timestamp": "2025-10-12T16:21:57.308299", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/society-for-arts-and-technology-sat", + "project_ideas_text": "" + } + }, + "2023_openmrs": { + "timestamp": "2025-10-12T16:21:57.887880", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openmrs", + "project_ideas_text": "" + } + }, + "2023_gitlab": { + "timestamp": "2025-10-12T16:21:58.467076", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gitlab", + "project_ideas_text": "" + } + }, + "2023_international-catrobat-association": { + "timestamp": "2025-10-12T16:21:59.044843", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/international-catrobat-association", + "project_ideas_text": "" + } + }, + "2023_learning-equality": { + "timestamp": "2025-10-12T16:21:59.629978", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/learning-equality", + "project_ideas_text": "" + } + }, + "2023_ccextractor-development": { + "timestamp": "2025-10-12T16:22:00.209759", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ccextractor-development", + "project_ideas_text": "" + } + }, + "2023_omegaup": { + "timestamp": "2025-10-12T16:22:00.789862", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/omegaup", + "project_ideas_text": "" + } + }, + "2023_open-genome-informatics": { + "timestamp": "2025-10-12T16:22:01.369677", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-genome-informatics", + "project_ideas_text": "" + } + }, + "2023_plone-foundation": { + "timestamp": "2025-10-12T16:22:01.945923", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", + "project_ideas_text": "" + } + }, + "2023_tensorflow-d1": { + "timestamp": "2025-10-12T16:22:02.525832", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/tensorflow-d1", + "project_ideas_text": "" + } + }, + "2023_kde-community": { + "timestamp": "2025-10-12T16:22:03.103981", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/kde-community", + "project_ideas_text": "" + } + }, + "2023_r-project-for-statistical-computing": { + "timestamp": "2025-10-12T16:22:03.683420", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/r-project-for-statistical-computing", + "project_ideas_text": "" + } + }, + "2023_kiwix": { + "timestamp": "2025-10-12T16:22:04.267139", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/kiwix", + "project_ideas_text": "" + } + }, + "2023_gnu-radio": { + "timestamp": "2025-10-12T16:22:04.845048", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnu-radio", + "project_ideas_text": "" + } + }, + "2023_dart": { + "timestamp": "2025-10-12T16:22:05.428724", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/dart", + "project_ideas_text": "" + } + }, + "2023_openstreetmap": { + "timestamp": "2025-10-12T16:22:06.006651", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openstreetmap", + "project_ideas_text": "" + } + }, + "2023_gcp-scanner": { + "timestamp": "2025-10-12T16:22:06.588728", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gcp-scanner", + "project_ideas_text": "" + } + }, + "2023_moveit": { + "timestamp": "2025-10-12T16:22:07.167713", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/moveit", + "project_ideas_text": "" + } + }, + "2023_the-tor-project": { + "timestamp": "2025-10-12T16:22:07.746690", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-tor-project", + "project_ideas_text": "" + } + }, + "2023_sqlancer": { + "timestamp": "2025-10-12T16:22:08.327583", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/sqlancer", + "project_ideas_text": "" + } + }, + "2023_openvino-toolkit": { + "timestamp": "2025-10-12T16:22:08.903396", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openvino-toolkit", + "project_ideas_text": "" + } + }, + "2023_freetype": { + "timestamp": "2025-10-12T16:22:09.485957", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freetype", + "project_ideas_text": "" + } + }, + "2023_cgal-project": { + "timestamp": "2025-10-12T16:22:10.065862", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cgal-project", + "project_ideas_text": "" + } + }, + "2023_open-robotics": { + "timestamp": "2025-10-12T16:22:10.646196", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-robotics", + "project_ideas_text": "" + } + }, + "2023_inkscape": { + "timestamp": "2025-10-12T16:22:11.226258", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/inkscape", + "project_ideas_text": "" + } + }, + "2023_apache-software-foundation": { + "timestamp": "2025-10-12T16:22:11.807268", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apache-software-foundation", + "project_ideas_text": "" + } + }, + "2023_cockpit-project": { + "timestamp": "2025-10-12T16:22:12.382308", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/cockpit-project", + "project_ideas_text": "" + } + }, + "2023_the-linux-foundation": { + "timestamp": "2025-10-12T16:22:12.961123", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-linux-foundation", + "project_ideas_text": "" + } + }, + "2023_submitty": { + "timestamp": "2025-10-12T16:22:13.540160", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/submitty", + "project_ideas_text": "" + } + }, + "2023_uc-ospo": { + "timestamp": "2025-10-12T16:22:14.122612", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/uc-ospo", + "project_ideas_text": "" + } + }, + "2023_ivy-lets-unifyai": { + "timestamp": "2025-10-12T16:22:14.701747", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ivy-lets-unifyai", + "project_ideas_text": "" + } + }, + "2023_opencv": { + "timestamp": "2025-10-12T16:22:15.280029", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/opencv", + "project_ideas_text": "" + } + }, + "2023_open-chemistry": { + "timestamp": "2025-10-12T16:22:15.859398", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", + "project_ideas_text": "" + } + }, + "2023_ffmpeg": { + "timestamp": "2025-10-12T16:22:16.438132", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ffmpeg", + "project_ideas_text": "" + } + }, + "2023_national-resource-for-network-biology-nrnb": { + "timestamp": "2025-10-12T16:22:17.016944", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "project_ideas_text": "" + } + }, + "2023_openwisp": { + "timestamp": "2025-10-12T16:22:17.639405", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openwisp", + "project_ideas_text": "" + } + }, + "2023_git": { + "timestamp": "2025-10-12T16:22:18.234535", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", + "project_ideas_text": "" + } + }, + "2023_free-and-open-source-silicon-foundation": { + "timestamp": "2025-10-12T16:22:18.816241", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/free-and-open-source-silicon-foundation", + "project_ideas_text": "" + } + }, + "2023_the-ns-3-network-simulator-project": { + "timestamp": "2025-10-12T16:22:19.396242", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-ns-3-network-simulator-project", + "project_ideas_text": "" + } + }, + "2023_numfocus": { + "timestamp": "2025-10-12T16:22:19.981781", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/numfocus", + "project_ideas_text": "" + } + }, + "2023_freifunk": { + "timestamp": "2025-10-12T16:22:20.568717", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", + "project_ideas_text": "" + } + }, + "2023_libreoffice": { + "timestamp": "2025-10-12T16:22:21.157752", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/libreoffice", + "project_ideas_text": "" + } + }, + "2023_circuitverseorg": { + "timestamp": "2025-10-12T16:22:21.738960", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/circuitverseorg", + "project_ideas_text": "" + } + }, + "2023_chromium-lj": { + "timestamp": "2025-10-12T16:22:22.320812", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/chromium-lj", + "project_ideas_text": "" + } + }, + "2023_genome-assembly-and-annotation": { + "timestamp": "2025-10-12T16:22:22.901740", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/genome-assembly-and-annotation", + "project_ideas_text": "" + } + }, + "2023_mit-app-inventor": { + "timestamp": "2025-10-12T16:22:23.482407", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mit-app-inventor", + "project_ideas_text": "" + } + }, + "2023_videolan": { + "timestamp": "2025-10-12T16:22:24.071270", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/videolan", + "project_ideas_text": "" + } + }, + "2023_opensuse-project": { + "timestamp": "2025-10-12T16:22:24.649463", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/opensuse-project", + "project_ideas_text": "" + } + }, + "2023_gnu-octave": { + "timestamp": "2025-10-12T16:22:25.228810", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnu-octave", + "project_ideas_text": "" + } + }, + "2023_the-palisadoes-foundation": { + "timestamp": "2025-10-12T16:22:25.816017", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-palisadoes-foundation", + "project_ideas_text": "" + } + }, + "2023_jina-ai-sb": { + "timestamp": "2025-10-12T16:22:26.396657", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jina-ai-sb", + "project_ideas_text": "" + } + }, + "2023_apertium": { + "timestamp": "2025-10-12T16:22:26.973834", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", + "project_ideas_text": "" + } + }, + "2023_jderobot": { + "timestamp": "2025-10-12T16:22:27.557786", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", + "project_ideas_text": "" + } + }, + "2023_department-of-biomedical-informatics-emory-university": { + "timestamp": "2025-10-12T16:22:28.140303", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/department-of-biomedical-informatics-emory-university", + "project_ideas_text": "" + } + }, + "2023_processing-foundation": { + "timestamp": "2025-10-12T16:22:28.720430", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", + "project_ideas_text": "" + } + }, + "2023_metasploit": { + "timestamp": "2025-10-12T16:22:29.296787", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metasploit", + "project_ideas_text": "" + } + }, + "2023_osgeo-open-source-geospatial-foundation": { + "timestamp": "2025-10-12T16:22:29.879532", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/osgeo-open-source-geospatial-foundation", + "project_ideas_text": "" + } + }, + "2023_gnu-image-manipulation-program": { + "timestamp": "2025-10-12T16:22:30.461908", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnu-image-manipulation-program", + "project_ideas_text": "" + } + }, + "2023_pecan-project": { + "timestamp": "2025-10-12T16:22:31.041356", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/pecan-project", + "project_ideas_text": "" + } + }, + "2023_scummvm": { + "timestamp": "2025-10-12T16:22:31.621915", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/scummvm", + "project_ideas_text": "" + } + }, + "2023_qemu": { + "timestamp": "2025-10-12T16:22:32.197965", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/qemu", + "project_ideas_text": "" + } + }, + "2023_xwiki": { + "timestamp": "2025-10-12T16:22:32.777827", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "project_ideas_text": "" + } + }, + "2023_musescore": { + "timestamp": "2025-10-12T16:22:33.359977", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/musescore", + "project_ideas_text": "" + } + }, + "2023_gnu-compiler-collection-gcc": { + "timestamp": "2025-10-12T16:22:33.942415", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/gnu-compiler-collection-gcc", + "project_ideas_text": "" + } + }, + "2023_owasp-foundation": { + "timestamp": "2025-10-12T16:22:34.522446", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/owasp-foundation", + "project_ideas_text": "" + } + }, + "2023_the-netbsd-foundation": { + "timestamp": "2025-10-12T16:22:35.103220", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-netbsd-foundation", + "project_ideas_text": "" + } + }, + "2023_stear-group": { + "timestamp": "2025-10-12T16:22:35.683358", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/stear-group", + "project_ideas_text": "" + } + }, + "2022_checkstyle": { + "timestamp": "2025-10-12T16:22:36.442644", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/checkstyle", + "project_ideas_text": "" + } + }, + "2022_gnu-compiler-collection-gcc": { + "timestamp": "2025-10-12T16:22:37.018446", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnu-compiler-collection-gcc", + "project_ideas_text": "" + } + }, + "2022_mayors-office-of-new-urban-mechanics": { + "timestamp": "2025-10-12T16:22:37.601250", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mayors-office-of-new-urban-mechanics", + "project_ideas_text": "" + } + }, + "2022_sugar-labs": { + "timestamp": "2025-10-12T16:22:38.184221", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/sugar-labs", + "project_ideas_text": "" + } + }, + "2022_spdx": { + "timestamp": "2025-10-12T16:22:38.763092", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/spdx", + "project_ideas_text": "" + } + }, + "2022_the-mifos-initiative": { + "timestamp": "2025-10-12T16:22:39.348137", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-mifos-initiative", + "project_ideas_text": "" + } + }, + "2022_dbpedia": { + "timestamp": "2025-10-12T16:22:39.932132", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/dbpedia", + "project_ideas_text": "" + } + }, + "2022_the-jpf-team": { + "timestamp": "2025-10-12T16:22:40.510094", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-jpf-team", + "project_ideas_text": "" + } + }, + "2022_xmpp-standards-foundation": { + "timestamp": "2025-10-12T16:22:41.091473", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xmpp-standards-foundation", + "project_ideas_text": "" + } + }, + "2022_librecube-initiative": { + "timestamp": "2025-10-12T16:22:41.670518", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/librecube-initiative", + "project_ideas_text": "" + } + }, + "2022_neutralinojs": { + "timestamp": "2025-10-12T16:22:42.278790", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", + "project_ideas_text": "" + } + }, + "2022_joomla": { + "timestamp": "2025-10-12T16:22:42.860672", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", + "project_ideas_text": "" + } + }, + "2022_wikimedia-foundation": { + "timestamp": "2025-10-12T16:22:43.442892", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/wikimedia-foundation", + "project_ideas_text": "" + } + }, + "2022_flashrom": { + "timestamp": "2025-10-12T16:22:44.018708", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/flashrom", + "project_ideas_text": "" + } + }, + "2022_weaviate": { + "timestamp": "2025-10-12T16:22:44.598367", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", + "project_ideas_text": "" + } + }, + "2022_librehealth": { + "timestamp": "2025-10-12T16:22:45.181013", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/librehealth", + "project_ideas_text": "" + } + }, + "2022_software-heritage": { + "timestamp": "2025-10-12T16:22:45.766695", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/software-heritage", + "project_ideas_text": "" + } + }, + "2022_seaql": { + "timestamp": "2025-10-12T16:22:46.345395", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", + "project_ideas_text": "" + } + }, + "2022_stear-group": { + "timestamp": "2025-10-12T16:22:46.928396", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/stear-group", + "project_ideas_text": "" + } + }, + "2022_powerdns": { + "timestamp": "2025-10-12T16:22:47.505540", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/powerdns", + "project_ideas_text": "" + } + }, + "2022_mbdyn": { + "timestamp": "2025-10-12T16:22:48.089863", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mbdyn", + "project_ideas_text": "" + } + }, + "2022_forschungszentrum-julich": { + "timestamp": "2025-10-12T16:22:48.670059", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", + "project_ideas_text": "" + } + }, + "2022_synfig": { + "timestamp": "2025-10-12T16:22:49.251964", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/synfig", + "project_ideas_text": "" + } + }, + "2022_the-julia-language": { + "timestamp": "2025-10-12T16:22:49.834443", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-julia-language", + "project_ideas_text": "" + } + }, + "2022_the-freebsd-project": { + "timestamp": "2025-10-12T16:22:50.413038", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-freebsd-project", + "project_ideas_text": "" + } + }, + "2022_videolan": { + "timestamp": "2025-10-12T16:22:50.994345", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/videolan", + "project_ideas_text": "" + } + }, + "2022_rtems-project": { + "timestamp": "2025-10-12T16:22:51.578482", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rtems-project", + "project_ideas_text": "" + } + }, + "2022_orcasound": { + "timestamp": "2025-10-12T16:22:52.159216", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/orcasound", + "project_ideas_text": "" + } + }, + "2022_jenkins-x": { + "timestamp": "2025-10-12T16:22:52.741423", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-x", + "project_ideas_text": "" + } + }, + "2022_internet-health-report": { + "timestamp": "2025-10-12T16:22:53.320135", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/internet-health-report", + "project_ideas_text": "" + } + }, + "2022_strace": { + "timestamp": "2025-10-12T16:22:53.900182", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/strace", + "project_ideas_text": "" + } + }, + "2022_gnome-foundation": { + "timestamp": "2025-10-12T16:22:54.482647", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnome-foundation", + "project_ideas_text": "" + } + }, + "2022_dart": { + "timestamp": "2025-10-12T16:22:55.064928", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/dart", + "project_ideas_text": "" + } + }, + "2022_numfocus": { + "timestamp": "2025-10-12T16:22:55.645992", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/numfocus", + "project_ideas_text": "" + } + }, + "2022_sympy": { + "timestamp": "2025-10-12T16:22:56.223092", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/sympy", + "project_ideas_text": "" + } + }, + "2022_rizin": { + "timestamp": "2025-10-12T16:22:56.802426", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rizin", + "project_ideas_text": "" + } + }, + "2022_jitsi": { + "timestamp": "2025-10-12T16:22:57.381578", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jitsi", + "project_ideas_text": "" + } + }, + "2022_unikraft": { + "timestamp": "2025-10-12T16:22:57.958914", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/unikraft", + "project_ideas_text": "" + } + }, + "2022_moja-global": { + "timestamp": "2025-10-12T16:22:58.537743", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/moja-global", + "project_ideas_text": "" + } + }, + "2022_openafs": { + "timestamp": "2025-10-12T16:22:59.116599", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openafs", + "project_ideas_text": "" + } + }, + "2022_open3d-team": { + "timestamp": "2025-10-12T16:22:59.696838", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open3d-team", + "project_ideas_text": "" + } + }, + "2022_haiku": { + "timestamp": "2025-10-12T16:23:00.278118", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haiku", + "project_ideas_text": "" + } + }, + "2022_ccextractor-development": { + "timestamp": "2025-10-12T16:23:00.862272", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ccextractor-development", + "project_ideas_text": "" + } + }, + "2022_mathesar": { + "timestamp": "2025-10-12T16:23:01.441181", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mathesar", + "project_ideas_text": "" + } + }, + "2022_open-chemistry": { + "timestamp": "2025-10-12T16:23:02.019357", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", + "project_ideas_text": "" + } + }, + "2022_electron": { + "timestamp": "2025-10-12T16:23:02.599336", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", + "project_ideas_text": "" + } + }, + "2022_gnss-sdr": { + "timestamp": "2025-10-12T16:23:03.181360", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnss-sdr", + "project_ideas_text": "" + } + }, + "2022_submitty": { + "timestamp": "2025-10-12T16:23:03.766760", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/submitty", + "project_ideas_text": "" + } + }, + "2022_libreoffice": { + "timestamp": "2025-10-12T16:23:04.346008", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/libreoffice", + "project_ideas_text": "" + } + }, + "2022_processing-foundation": { + "timestamp": "2025-10-12T16:23:04.925177", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", + "project_ideas_text": "" + } + }, + "2022_robolectric": { + "timestamp": "2025-10-12T16:23:05.505685", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/robolectric", + "project_ideas_text": "" + } + }, + "2022_beagleboardorg": { + "timestamp": "2025-10-12T16:23:06.081567", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/beagleboardorg", + "project_ideas_text": "" + } + }, + "2022_opencv": { + "timestamp": "2025-10-12T16:23:06.659576", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/opencv", + "project_ideas_text": "" + } + }, + "2022_department-of-biomedical-informatics-emory-university": { + "timestamp": "2025-10-12T16:23:07.238448", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/department-of-biomedical-informatics-emory-university", + "project_ideas_text": "" + } + }, + "2022_mixxx": { + "timestamp": "2025-10-12T16:23:07.819039", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mixxx", + "project_ideas_text": "" + } + }, + "2022_python-software-foundation": { + "timestamp": "2025-10-12T16:23:08.468034", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "project_ideas_text": "" + } + }, + "2022_swift": { + "timestamp": "2025-10-12T16:23:09.055722", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/swift", + "project_ideas_text": "" + } + }, + "2022_the-ns-3-network-simulator-project": { + "timestamp": "2025-10-12T16:23:09.635659", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-ns-3-network-simulator-project", + "project_ideas_text": "" + } + }, + "2022_public-lab": { + "timestamp": "2025-10-12T16:23:10.215061", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/public-lab", + "project_ideas_text": "" + } + }, + "2022_brl-cad": { + "timestamp": "2025-10-12T16:23:10.795508", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", + "project_ideas_text": "" + } + }, + "2022_gnu-octave": { + "timestamp": "2025-10-12T16:23:11.377035", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnu-octave", + "project_ideas_text": "" + } + }, + "2022_openvino-toolkit": { + "timestamp": "2025-10-12T16:23:11.954649", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openvino-toolkit", + "project_ideas_text": "" + } + }, + "2022_openmrs": { + "timestamp": "2025-10-12T16:23:12.535843", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openmrs", + "project_ideas_text": "" + } + }, + "2022_gitlab": { + "timestamp": "2025-10-12T16:23:13.112981", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gitlab", + "project_ideas_text": "" + } + }, + "2022_liquid-galaxy-project": { + "timestamp": "2025-10-12T16:23:13.691540", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/liquid-galaxy-project", + "project_ideas_text": "" + } + }, + "2022_wagtail": { + "timestamp": "2025-10-12T16:23:14.271320", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/wagtail", + "project_ideas_text": "" + } + }, + "2022_drupal-association": { + "timestamp": "2025-10-12T16:23:14.849455", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/drupal-association", + "project_ideas_text": "" + } + }, + "2022_matrixorg": { + "timestamp": "2025-10-12T16:23:15.426971", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", + "project_ideas_text": "" + } + }, + "2022_leap-encryption-access-project": { + "timestamp": "2025-10-12T16:23:16.008755", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/leap-encryption-access-project", + "project_ideas_text": "" + } + }, + "2022_django-software-foundation-8o": { + "timestamp": "2025-10-12T16:23:16.587721", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "project_ideas_text": "" + } + }, + "2022_the-honeynet-project": { + "timestamp": "2025-10-12T16:23:17.170568", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-honeynet-project", + "project_ideas_text": "" + } + }, + "2022_the-palisadoes-foundation": { + "timestamp": "2025-10-12T16:23:17.747391", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-palisadoes-foundation", + "project_ideas_text": "" + } + }, + "2022_cbioportal-for-cancer-genomics": { + "timestamp": "2025-10-12T16:23:18.333688", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/cbioportal-for-cancer-genomics", + "project_ideas_text": "" + } + }, + "2022_sktime": { + "timestamp": "2025-10-12T16:23:18.913101", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/sktime", + "project_ideas_text": "" + } + }, + "2022_micro-electronics-research-lab-uitu": { + "timestamp": "2025-10-12T16:23:19.499030", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/micro-electronics-research-lab-uitu", + "project_ideas_text": "" + } + }, + "2022_plone-foundation": { + "timestamp": "2025-10-12T16:23:20.077301", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "project_ideas_text": "" + } + }, + "2022_the-linux-foundation": { + "timestamp": "2025-10-12T16:23:20.689379", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-linux-foundation", + "project_ideas_text": "" + } + }, + "2022_zulip": { + "timestamp": "2025-10-12T16:23:21.265287", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/zulip", + "project_ideas_text": "" + } + }, + "2022_metacall": { + "timestamp": "2025-10-12T16:23:21.845711", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "project_ideas_text": "" + } + }, + "2022_tardis-rt-collaboration": { + "timestamp": "2025-10-12T16:23:22.428291", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/tardis-rt-collaboration", + "project_ideas_text": "" + } + }, + "2022_jenkins-wp": { + "timestamp": "2025-10-12T16:23:23.012777", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", + "project_ideas_text": "" + } + }, + "2022_tianocore": { + "timestamp": "2025-10-12T16:23:23.593510", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/tianocore", + "project_ideas_text": "" + } + }, + "2022_owasp-foundation": { + "timestamp": "2025-10-12T16:23:24.177935", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/owasp-foundation", + "project_ideas_text": "" + } + }, + "2022_mdanalysis": { + "timestamp": "2025-10-12T16:23:24.759358", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mdanalysis", + "project_ideas_text": "" + } + }, + "2022_mlpack": { + "timestamp": "2025-10-12T16:23:25.342354", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mlpack", + "project_ideas_text": "" + } + }, + "2022_gnu-image-manipulation-program": { + "timestamp": "2025-10-12T16:23:25.919942", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnu-image-manipulation-program", + "project_ideas_text": "" + } + }, + "2022_openwisp": { + "timestamp": "2025-10-12T16:23:26.499880", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openwisp", + "project_ideas_text": "" + } + }, + "2022_kart-project": { + "timestamp": "2025-10-12T16:23:27.078583", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/kart-project", + "project_ideas_text": "" + } + }, + "2022_uc-ospo": { + "timestamp": "2025-10-12T16:23:27.654710", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/uc-ospo", + "project_ideas_text": "" + } + }, + "2022_scummvm": { + "timestamp": "2025-10-12T16:23:28.264122", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/scummvm", + "project_ideas_text": "" + } + }, + "2022_oppia-foundation": { + "timestamp": "2025-10-12T16:23:28.851509", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/oppia-foundation", + "project_ideas_text": "" + } + }, + "2022_fortran-lang": { + "timestamp": "2025-10-12T16:23:29.428867", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/fortran-lang", + "project_ideas_text": "" + } + }, + "2022_audacity": { + "timestamp": "2025-10-12T16:23:30.009866", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/audacity", + "project_ideas_text": "" + } + }, + "2022_aflplusplus": { + "timestamp": "2025-10-12T16:23:30.590845", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aflplusplus", + "project_ideas_text": "" + } + }, + "2022_freifunk": { + "timestamp": "2025-10-12T16:23:31.171423", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "project_ideas_text": "" + } + }, + "2022_openastronomy": { + "timestamp": "2025-10-12T16:23:31.757119", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", + "project_ideas_text": "" + } + }, + "2022_open-genome-informatics": { + "timestamp": "2025-10-12T16:23:32.346552", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-genome-informatics", + "project_ideas_text": "" + } + }, + "2022_kodi": { + "timestamp": "2025-10-12T16:23:32.926347", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/kodi", + "project_ideas_text": "" + } + }, + "2022_gnu-radio": { + "timestamp": "2025-10-12T16:23:33.508284", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gnu-radio", + "project_ideas_text": "" + } + }, + "2022_mzmine": { + "timestamp": "2025-10-12T16:23:34.088817", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mzmine", + "project_ideas_text": "" + } + }, + "2022_free-and-open-source-silicon-foundation": { + "timestamp": "2025-10-12T16:23:34.668380", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/free-and-open-source-silicon-foundation", + "project_ideas_text": "" + } + }, + "2022_fossology": { + "timestamp": "2025-10-12T16:23:35.245847", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/fossology", + "project_ideas_text": "" + } + }, + "2022_apache-software-foundation": { + "timestamp": "2025-10-12T16:23:35.827802", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/apache-software-foundation", + "project_ideas_text": "" + } + }, + "2022_tensorflow": { + "timestamp": "2025-10-12T16:23:36.405722", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/tensorflow", + "project_ideas_text": "" + } + }, + "2022_open-food-facts": { + "timestamp": "2025-10-12T16:23:36.983080", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-food-facts", + "project_ideas_text": "" + } + }, + "2022_git": { + "timestamp": "2025-10-12T16:23:37.559327", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/git", + "project_ideas_text": "" + } + }, + "2022_xfce": { + "timestamp": "2025-10-12T16:23:38.136390", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xfce", + "project_ideas_text": "" + } + }, + "2022_debian": { + "timestamp": "2025-10-12T16:23:38.714084", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/debian", + "project_ideas_text": "" + } + }, + "2022_robocomp": { + "timestamp": "2025-10-12T16:23:39.295521", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/robocomp", + "project_ideas_text": "" + } + }, + "2022_international-catrobat-association": { + "timestamp": "2025-10-12T16:23:39.873556", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/international-catrobat-association", + "project_ideas_text": "" + } + }, + "2022_r-project-for-statistical-computing": { + "timestamp": "2025-10-12T16:23:40.459560", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/r-project-for-statistical-computing", + "project_ideas_text": "" + } + }, + "2022_the-tor-project": { + "timestamp": "2025-10-12T16:23:41.040726", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-tor-project", + "project_ideas_text": "" + } + }, + "2022_libssh": { + "timestamp": "2025-10-12T16:23:41.627459", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/libssh", + "project_ideas_text": "" + } + }, + "2022_scala-center": { + "timestamp": "2025-10-12T16:23:42.206821", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/scala-center", + "project_ideas_text": "" + } + }, + "2022_polypheny": { + "timestamp": "2025-10-12T16:23:42.784249", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "project_ideas_text": "" + } + }, + "2022_mit-app-inventor": { + "timestamp": "2025-10-12T16:23:43.363441", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mit-app-inventor", + "project_ideas_text": "" + } + }, + "2022_open-bioinformatics-foundation-obf": { + "timestamp": "2025-10-12T16:23:43.938639", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-bioinformatics-foundation-obf", + "project_ideas_text": "" + } + }, + "2022_homebrew": { + "timestamp": "2025-10-12T16:23:44.519007", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/homebrew", + "project_ideas_text": "" + } + }, + "2022_geomscale": { + "timestamp": "2025-10-12T16:23:45.096430", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/geomscale", + "project_ideas_text": "" + } + }, + "2022_cuneiform-digital-library-initiative-cdli": { + "timestamp": "2025-10-12T16:23:45.680854", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/cuneiform-digital-library-initiative-cdli", + "project_ideas_text": "" + } + }, + "2022_moveit": { + "timestamp": "2025-10-12T16:23:46.260284", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/moveit", + "project_ideas_text": "" + } + }, + "2022_libvirt": { + "timestamp": "2025-10-12T16:23:46.839812", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/libvirt", + "project_ideas_text": "" + } + }, + "2022_freetype": { + "timestamp": "2025-10-12T16:23:47.421140", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freetype", + "project_ideas_text": "" + } + }, + "2022_cncf": { + "timestamp": "2025-10-12T16:23:48.001753", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/cncf", + "project_ideas_text": "" + } + }, + "2022_omegaup": { + "timestamp": "2025-10-12T16:23:48.578746", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/omegaup", + "project_ideas_text": "" + } + }, + "2022_responsible-ai-and-human-centred-technology": { + "timestamp": "2025-10-12T16:23:49.169224", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/responsible-ai-and-human-centred-technology", + "project_ideas_text": "" + } + }, + "2022_chips-alliance": { + "timestamp": "2025-10-12T16:23:49.757221", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/chips-alliance", + "project_ideas_text": "" + } + }, + "2022_cern-hsf": { + "timestamp": "2025-10-12T16:23:50.336565", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/cern-hsf", + "project_ideas_text": "" + } + }, + "2022_qemu": { + "timestamp": "2025-10-12T16:23:50.916812", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/qemu", + "project_ideas_text": "" + } + }, + "2022_score-lab": { + "timestamp": "2025-10-12T16:23:51.497214", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/score-lab", + "project_ideas_text": "" + } + }, + "2022_aboutcode": { + "timestamp": "2025-10-12T16:23:52.075520", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aboutcode", + "project_ideas_text": "" + } + }, + "2022_national-resource-for-network-biology-nrnb": { + "timestamp": "2025-10-12T16:23:52.655569", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "project_ideas_text": "" + } + }, + "2022_chromium-lj": { + "timestamp": "2025-10-12T16:23:53.234160", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/chromium-lj", + "project_ideas_text": "" + } + }, + "2022_grame": { + "timestamp": "2025-10-12T16:23:53.812804", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/grame", + "project_ideas_text": "" + } + }, + "2022_aossie": { + "timestamp": "2025-10-12T16:23:54.394088", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "project_ideas_text": "" + } + }, + "2022_joplin": { + "timestamp": "2025-10-12T16:23:54.974790", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joplin", + "project_ideas_text": "" + } + }, + "2022_genome-assembly-and-annotation": { + "timestamp": "2025-10-12T16:23:55.553054", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/genome-assembly-and-annotation", + "project_ideas_text": "" + } + }, + "2022_osgeo-open-source-geospatial-foundation": { + "timestamp": "2025-10-12T16:23:56.159031", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/osgeo-open-source-geospatial-foundation", + "project_ideas_text": "" + } + }, + "2022_haskellorg": { + "timestamp": "2025-10-12T16:23:56.739566", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", + "project_ideas_text": "" + } + }, + "2022_chaoss": { + "timestamp": "2025-10-12T16:23:57.329633", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/chaoss", + "project_ideas_text": "" + } + }, + "2022_openstreetmap": { + "timestamp": "2025-10-12T16:23:57.913427", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openstreetmap", + "project_ideas_text": "" + } + }, + "2022_jderobot": { + "timestamp": "2025-10-12T16:23:58.495322", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", + "project_ideas_text": "" + } + }, + "2022_xwiki": { + "timestamp": "2025-10-12T16:23:59.081181", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", + "project_ideas_text": "" + } + }, + "2022_metasploit": { + "timestamp": "2025-10-12T16:23:59.660941", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metasploit", + "project_ideas_text": "" + } + }, + "2022_ffmpeg": { + "timestamp": "2025-10-12T16:24:00.243655", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ffmpeg", + "project_ideas_text": "" + } + }, + "2022_llvm-compiler-infrastructure": { + "timestamp": "2025-10-12T16:24:00.820046", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/llvm-compiler-infrastructure", + "project_ideas_text": "" + } + }, + "2022_52north-spatial-information-research-gmbh": { + "timestamp": "2025-10-12T16:24:01.398923", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/52north-spatial-information-research-gmbh", + "project_ideas_text": "" + } + }, + "2022_incf": { + "timestamp": "2025-10-12T16:24:01.977467", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/incf", + "project_ideas_text": "" + } + }, + "2022_machine-learning-for-science-ml4sci": { + "timestamp": "2025-10-12T16:24:02.556323", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/machine-learning-for-science-ml4sci", + "project_ideas_text": "" + } + }, + "2022_performance-co-pilot": { + "timestamp": "2025-10-12T16:24:03.134503", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/performance-co-pilot", + "project_ideas_text": "" + } + }, + "2022_reactos-foundation": { + "timestamp": "2025-10-12T16:24:03.715294", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/reactos-foundation", + "project_ideas_text": "" + } + }, + "2022_kde-community": { + "timestamp": "2025-10-12T16:24:04.293579", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/kde-community", + "project_ideas_text": "" + } + }, + "2022_our-world-in-data": { + "timestamp": "2025-10-12T16:24:04.876514", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/our-world-in-data", + "project_ideas_text": "" + } + }, + "2022_circuitverseorg": { + "timestamp": "2025-10-12T16:24:05.459295", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/circuitverseorg", + "project_ideas_text": "" + } + }, + "2022_libcamera": { + "timestamp": "2025-10-12T16:24:06.037466", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/libcamera", + "project_ideas_text": "" + } + }, + "2022_mariadb": { + "timestamp": "2025-10-12T16:24:06.614911", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/mariadb", + "project_ideas_text": "" + } + }, + "2022_godot-engine": { + "timestamp": "2025-10-12T16:24:07.193195", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "project_ideas_text": "" + } + }, + "2022_intel-video-and-audio-for-linux": { + "timestamp": "2025-10-12T16:24:07.775256", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/intel-video-and-audio-for-linux", + "project_ideas_text": "" + } + }, + "2022_rocketchat": { + "timestamp": "2025-10-12T16:24:08.355878", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", + "project_ideas_text": "" + } + }, + "2022_ankidroid": { + "timestamp": "2025-10-12T16:24:08.938537", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ankidroid", + "project_ideas_text": "" + } + }, + "2022_syslog-ng": { + "timestamp": "2025-10-12T16:24:09.522717", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", + "project_ideas_text": "" + } + }, + "2022_coreboot": { + "timestamp": "2025-10-12T16:24:10.103846", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/coreboot", + "project_ideas_text": "" + } + }, + "2022_metabrainz-foundation-inc": { + "timestamp": "2025-10-12T16:24:10.687304", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metabrainz-foundation-inc", + "project_ideas_text": "" + } + }, + "2022_frrouting": { + "timestamp": "2025-10-12T16:24:11.266605", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "project_ideas_text": "" + } + }, + "2022_casbin": { + "timestamp": "2025-10-12T16:24:11.850170", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "project_ideas_text": "" + } + }, + "2022_purr-data": { + "timestamp": "2025-10-12T16:24:12.431814", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "project_ideas_text": "" + } + }, + "2022_society-for-arts-and-technology-sat": { + "timestamp": "2025-10-12T16:24:13.011336", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/society-for-arts-and-technology-sat", + "project_ideas_text": "" + } + }, + "2022_open-technologies-alliance-gfoss": { + "timestamp": "2025-10-12T16:24:13.592209", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-technologies-alliance-gfoss", + "project_ideas_text": "" + } + }, + "2022_blender-foundation": { + "timestamp": "2025-10-12T16:24:14.171752", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/blender-foundation", + "project_ideas_text": "" + } + }, + "2022_ardupilot": { + "timestamp": "2025-10-12T16:24:14.751449", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ardupilot", + "project_ideas_text": "" + } + }, + "2022_open-robotics": { + "timestamp": "2025-10-12T16:24:15.332166", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-robotics", + "project_ideas_text": "" + } + }, + "2022_gentoo-foundation": { + "timestamp": "2025-10-12T16:24:15.908721", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/gentoo-foundation", + "project_ideas_text": "" + } + }, + "2022_red-hen-lab": { + "timestamp": "2025-10-12T16:24:16.489231", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/red-hen-lab", + "project_ideas_text": "" + } + }, + "2022_ioos": { + "timestamp": "2025-10-12T16:24:17.069451", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ioos", + "project_ideas_text": "" + } + }, + "2022_the-netbsd-foundation": { + "timestamp": "2025-10-12T16:24:17.647904", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-netbsd-foundation", + "project_ideas_text": "" + } + }, + "2022_organic-maps": { + "timestamp": "2025-10-12T16:24:18.226833", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/organic-maps", + "project_ideas_text": "" + } + }, + "2022_global-alliance-for-genomics-and-health": { + "timestamp": "2025-10-12T16:24:18.801849", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/global-alliance-for-genomics-and-health", + "project_ideas_text": "" + } + }, + "2022_keptn": { + "timestamp": "2025-10-12T16:24:19.377702", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/keptn", + "project_ideas_text": "" + } + }, + "2022_jabref-ev": { + "timestamp": "2025-10-12T16:24:19.958262", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jabref-ev", + "project_ideas_text": "" + } + }, + "2022_inkscape": { + "timestamp": "2025-10-12T16:24:20.539653", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/inkscape", + "project_ideas_text": "" + } + }, + "2022_cgal-project": { + "timestamp": "2025-10-12T16:24:21.119378", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/cgal-project", + "project_ideas_text": "" + } + }, + "2022_xorg-foundation": { + "timestamp": "2025-10-12T16:24:21.698455", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xorg-foundation", + "project_ideas_text": "" + } + }, + "2022_radar-base": { + "timestamp": "2025-10-12T16:24:22.300482", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/radar-base", + "project_ideas_text": "" + } + }, + "2022_center-for-translational-data-science": { + "timestamp": "2025-10-12T16:24:22.881579", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/center-for-translational-data-science", + "project_ideas_text": "" + } + }, + "2022_opensuse-project": { + "timestamp": "2025-10-12T16:24:23.480875", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/opensuse-project", + "project_ideas_text": "" + } + }, + "2022_criu": { + "timestamp": "2025-10-12T16:24:24.066802", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/criu", + "project_ideas_text": "" + } + }, + "2022_ceph": { + "timestamp": "2025-10-12T16:24:24.650559", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ceph", + "project_ideas_text": "" + } + }, + "2022_jboss-community": { + "timestamp": "2025-10-12T16:24:25.232095", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", + "project_ideas_text": "" + } + }, + "2022_sagemath": { + "timestamp": "2025-10-12T16:24:25.809965", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/sagemath", + "project_ideas_text": "" + } + }, + "2022_musescore": { + "timestamp": "2025-10-12T16:24:26.395806", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/musescore", + "project_ideas_text": "" + } + }, + "2022_pecan-project": { + "timestamp": "2025-10-12T16:24:26.992915", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/pecan-project", + "project_ideas_text": "" + } + }, + "2022_eclipse-foundation": { + "timestamp": "2025-10-12T16:24:27.572613", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/eclipse-foundation", + "project_ideas_text": "" + } + }, + "2022_postgresql": { + "timestamp": "2025-10-12T16:24:28.153100", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/postgresql", + "project_ideas_text": "" + } + }, + "2022_learning-equality": { + "timestamp": "2025-10-12T16:24:28.729775", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/learning-equality", + "project_ideas_text": "" + } + }, + "2022_ruby": { + "timestamp": "2025-10-12T16:24:29.311190", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/ruby", + "project_ideas_text": "" + } + }, + "2022_the-enigma-team": { + "timestamp": "2025-10-12T16:24:29.889122", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", + "project_ideas_text": "" + } + }, + "2022_wellcome-sanger-institute": { + "timestamp": "2025-10-12T16:24:30.471906", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/wellcome-sanger-institute", + "project_ideas_text": "" + } + }, + "2022_monado": { + "timestamp": "2025-10-12T16:24:31.049383", + "data": { + "technologies": [], + "description": "", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/monado", + "project_ideas_text": "" + } + } +} \ No newline at end of file From b2b0d78dc5c8081c008868f3f4526727c5e9026d Mon Sep 17 00:00:00 2001 From: Imranch4 Date: Mon, 13 Oct 2025 09:22:02 +0000 Subject: [PATCH 3/6] Auto-update GSoC organizations --- README.md | 980 +++++++++++++++---------------- gsoc_2022_web_organizations.json | 260 ++++---- gsoc_2023_web_organizations.json | 174 +++--- gsoc_2024_web_organizations.json | 262 ++++----- gsoc_2025_web_organizations.json | 188 +++--- 5 files changed, 932 insertions(+), 932 deletions(-) diff --git a/README.md b/README.md index 4aa08d1..1c88443 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ - **GSoC 2023**: 21 organizations with web projects - **GSoC 2022**: 32 organizations with web projects -> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-12 16:24:31 +> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-13 09:22:02 ## πŸš€ GSoC 2025 - Web Development Organizations @@ -25,29 +25,29 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Django Software Foundation](#2025-django-software-foundation) | Django | -| 2. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | -| 3. | [Haskell.org](#2025-haskellorg) | JavaScript | -| 4. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | -| 5. | [Python Software Foundation](#2025-python-software-foundation) | HTML | -| 6. | [stdlib](#2025-stdlib) | JavaScript, Node.js | -| 7. | [Processing Foundation](#2025-processing-foundation) | JavaScript | -| 8. | [Checker Framework](#2025-checker-framework) | HTML | -| 9. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | -| 10. | [Jenkins](#2025-jenkins) | JavaScript | -| 11. | [API Dash](#2025-api-dash) | GraphQL | -| 12. | [OpenAstronomy](#2025-openastronomy) | HTML | -| 13. | [Graphite](#2025-graphite) | Node.js | -| 14. | [freifunk](#2025-freifunk) | Babel | -| 15. | [Joomla!](#2025-joomla!) | HTML | -| 16. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | -| 17. | [Git](#2025-git) | Ruby on Rails | -| 18. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | -| 19. | [JdeRobot](#2025-jderobot) | JavaScript | +| 1. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | +| 2. | [OpenAstronomy](#2025-openastronomy) | HTML | +| 3. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 4. | [freifunk](#2025-freifunk) | Babel | +| 5. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 6. | [Processing Foundation](#2025-processing-foundation) | JavaScript | +| 7. | [JdeRobot](#2025-jderobot) | JavaScript | +| 8. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | +| 9. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | +| 10. | [Graphite](#2025-graphite) | Node.js | +| 11. | [Jenkins](#2025-jenkins) | JavaScript | +| 12. | [Plone Foundation](#2025-plone-foundation) | React | +| 13. | [stdlib](#2025-stdlib) | JavaScript, Node.js | +| 14. | [Checker Framework](#2025-checker-framework) | HTML | +| 15. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | +| 16. | [API Dash](#2025-api-dash) | GraphQL | +| 17. | [Alaska](#2025-alaska) | REST API | +| 18. | [Git](#2025-git) | Ruby on Rails | +| 19. | [Python Software Foundation](#2025-python-software-foundation) | HTML | | 20. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | -| 21. | [Plone Foundation](#2025-plone-foundation) | React | -| 22. | [BRL-CAD](#2025-brl-cad) | JavaScript | -| 23. | [Alaska](#2025-alaska) | REST API | +| 21. | [BRL-CAD](#2025-brl-cad) | JavaScript | +| 22. | [Joomla!](#2025-joomla!) | HTML | +| 23. | [Haskell.org](#2025-haskellorg) | JavaScript |
@@ -57,35 +57,35 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [stdlib](#2024-stdlib) | JavaScript, Node.js | -| 2. | [JdeRobot](#2024-jderobot) | JavaScript | -| 3. | [Graphite](#2024-graphite) | Node.js | -| 4. | [Alaska](#2024-alaska) | REST API | -| 5. | [Haskell.org](#2024-haskellorg) | JavaScript | -| 6. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | -| 7. | [Purr Data](#2024-purr-data) | HTML | -| 8. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | -| 9. | [Django Software Foundation](#2024-django-software-foundation) | Django | -| 10. | [Python Software Foundation](#2024-python-software-foundation) | HTML | -| 11. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | -| 12. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | -| 13. | [API Dash](#2024-api-dash) | GraphQL | -| 14. | [BRL-CAD](#2024-brl-cad) | JavaScript | -| 15. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | -| 16. | [Open Chemistry](#2024-open-chemistry) | Babel | -| 17. | [Git](#2024-git) | Ruby on Rails | -| 18. | [caMicroscope](#2024-camicroscope) | HTML | -| 19. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | -| 20. | [Plone Foundation](#2024-plone-foundation) | React | -| 21. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | -| 22. | [Jenkins](#2024-jenkins) | JavaScript | -| 23. | [Polypheny](#2024-polypheny) | REST API | -| 24. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | -| 25. | [OpenAstronomy](#2024-openastronomy) | HTML | -| 26. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | -| 27. | [MetaCall](#2024-metacall) | Node.js | -| 28. | [Apertium](#2024-apertium) | Less | -| 29. | [freifunk](#2024-freifunk) | Babel | +| 1. | [Git](#2024-git) | Ruby on Rails | +| 2. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | +| 3. | [Open Chemistry](#2024-open-chemistry) | Babel | +| 4. | [Django Software Foundation](#2024-django-software-foundation) | Django | +| 5. | [MetaCall](#2024-metacall) | Node.js | +| 6. | [Apertium](#2024-apertium) | Less | +| 7. | [BRL-CAD](#2024-brl-cad) | JavaScript | +| 8. | [Graphite](#2024-graphite) | Node.js | +| 9. | [Plone Foundation](#2024-plone-foundation) | React | +| 10. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | +| 11. | [Alaska](#2024-alaska) | REST API | +| 12. | [OpenAstronomy](#2024-openastronomy) | HTML | +| 13. | [caMicroscope](#2024-camicroscope) | HTML | +| 14. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 15. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 16. | [Python Software Foundation](#2024-python-software-foundation) | HTML | +| 17. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | +| 18. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | +| 19. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 20. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 21. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | +| 22. | [Purr Data](#2024-purr-data) | HTML | +| 23. | [freifunk](#2024-freifunk) | Babel | +| 24. | [JdeRobot](#2024-jderobot) | JavaScript | +| 25. | [API Dash](#2024-api-dash) | GraphQL | +| 26. | [Polypheny](#2024-polypheny) | REST API | +| 27. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | +| 28. | [Haskell.org](#2024-haskellorg) | JavaScript | +| 29. | [Jenkins](#2024-jenkins) | JavaScript |
@@ -95,27 +95,27 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | -| 2. | [Purr Data](#2023-purr-data) | HTML | -| 3. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | -| 4. | [OpenAstronomy](#2023-openastronomy) | HTML | -| 5. | [Django Software Foundation](#2023-django-software-foundation) | Django | -| 6. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | -| 7. | [Python Software Foundation](#2023-python-software-foundation) | HTML | -| 8. | [caMicroscope](#2023-camicroscope) | HTML | -| 9. | [Jenkins](#2023-jenkins) | JavaScript | -| 10. | [MetaCall](#2023-metacall) | Node.js | -| 11. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | -| 12. | [BRL-CAD](#2023-brl-cad) | JavaScript | -| 13. | [Plone Foundation](#2023-plone-foundation) | React | -| 14. | [Open Chemistry](#2023-open-chemistry) | Babel | -| 15. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | -| 16. | [Git](#2023-git) | Ruby on Rails | -| 17. | [freifunk](#2023-freifunk) | Babel | -| 18. | [Apertium](#2023-apertium) | Less | -| 19. | [JdeRobot](#2023-jderobot) | JavaScript | -| 20. | [Processing Foundation](#2023-processing-foundation) | JavaScript | -| 21. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | +| 1. | [caMicroscope](#2023-camicroscope) | HTML | +| 2. | [Python Software Foundation](#2023-python-software-foundation) | HTML | +| 3. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | +| 4. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 5. | [MetaCall](#2023-metacall) | Node.js | +| 6. | [BRL-CAD](#2023-brl-cad) | JavaScript | +| 7. | [Jenkins](#2023-jenkins) | JavaScript | +| 8. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | +| 9. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | +| 10. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | +| 11. | [Git](#2023-git) | Ruby on Rails | +| 12. | [freifunk](#2023-freifunk) | Babel | +| 13. | [JdeRobot](#2023-jderobot) | JavaScript | +| 14. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 15. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | +| 16. | [Open Chemistry](#2023-open-chemistry) | Babel | +| 17. | [Purr Data](#2023-purr-data) | HTML | +| 18. | [Django Software Foundation](#2023-django-software-foundation) | Django | +| 19. | [Plone Foundation](#2023-plone-foundation) | React | +| 20. | [Apertium](#2023-apertium) | Less | +| 21. | [OpenAstronomy](#2023-openastronomy) | HTML |
@@ -125,36 +125,36 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | -| 2. | [Joomla!](#2022-joomla!) | HTML | -| 3. | [Weaviate](#2022-weaviate) | GraphQL, REST API | -| 4. | [SeaQL](#2022-seaql) | GraphQL | -| 5. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | -| 6. | [Open Chemistry](#2022-open-chemistry) | Babel | -| 7. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | -| 8. | [Processing Foundation](#2022-processing-foundation) | JavaScript | -| 9. | [Python Software Foundation](#2022-python-software-foundation) | HTML | -| 10. | [BRL-CAD](#2022-brl-cad) | JavaScript | -| 11. | [Matrix.org](#2022-matrixorg) | WebRTC | -| 12. | [Django Software Foundation](#2022-django-software-foundation) | Django | -| 13. | [Plone Foundation](#2022-plone-foundation) | React | -| 14. | [MetaCall](#2022-metacall) | Node.js | -| 15. | [Jenkins](#2022-jenkins) | JavaScript | -| 16. | [freifunk](#2022-freifunk) | Babel | -| 17. | [OpenAstronomy](#2022-openastronomy) | HTML | -| 18. | [Git](#2022-git) | Ruby on Rails | -| 19. | [Polypheny](#2022-polypheny) | REST API | -| 20. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | -| 21. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | -| 22. | [Haskell.org](#2022-haskellorg) | JavaScript | -| 23. | [JdeRobot](#2022-jderobot) | JavaScript | -| 24. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | -| 25. | [Godot Engine](#2022-godot-engine) | HTML | -| 26. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | -| 27. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | -| 28. | [FRRouting](#2022-frrouting) | Babel | -| 29. | [Casbin](#2022-casbin) | JavaScript, Node.js | -| 30. | [Purr Data](#2022-purr-data) | HTML | +| 1. | [Weaviate](#2022-weaviate) | GraphQL, REST API | +| 2. | [Polypheny](#2022-polypheny) | REST API | +| 3. | [Processing Foundation](#2022-processing-foundation) | JavaScript | +| 4. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | +| 5. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | +| 6. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | +| 7. | [Godot Engine](#2022-godot-engine) | HTML | +| 8. | [JdeRobot](#2022-jderobot) | JavaScript | +| 9. | [Matrix.org](#2022-matrixorg) | WebRTC | +| 10. | [Plone Foundation](#2022-plone-foundation) | React | +| 11. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | +| 12. | [Purr Data](#2022-purr-data) | HTML | +| 13. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | +| 14. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 15. | [Open Chemistry](#2022-open-chemistry) | Babel | +| 16. | [Casbin](#2022-casbin) | JavaScript, Node.js | +| 17. | [SeaQL](#2022-seaql) | GraphQL | +| 18. | [FRRouting](#2022-frrouting) | Babel | +| 19. | [Python Software Foundation](#2022-python-software-foundation) | HTML | +| 20. | [Jenkins](#2022-jenkins) | JavaScript | +| 21. | [Git](#2022-git) | Ruby on Rails | +| 22. | [OpenAstronomy](#2022-openastronomy) | HTML | +| 23. | [freifunk](#2022-freifunk) | Babel | +| 24. | [Joomla!](#2022-joomla!) | HTML | +| 25. | [Haskell.org](#2022-haskellorg) | JavaScript | +| 26. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | +| 27. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | +| 28. | [Django Software Foundation](#2022-django-software-foundation) | Django | +| 29. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | +| 30. | [MetaCall](#2022-metacall) | Node.js | | 31. | [JBoss Community](#2022-jboss-community) | Node.js | | 32. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | @@ -162,79 +162,87 @@ ## πŸ“‹ GSoC 2025 - Organization Details -### 1. Django Software Foundation {#2025-django-software-foundation} +### 1. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 2. AOSSIE {#2025-aossie} +### 2. OpenAstronomy {#2025-openastronomy} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 3. Haskell.org {#2025-haskellorg} +### 3. Django Software Foundation {#2025-django-software-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 4. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} +### 4. freifunk {#2025-freifunk} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 5. Python Software Foundation {#2025-python-software-foundation} +### 5. rocket.chat {#2025-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 6. stdlib {#2025-stdlib} +### 6. Processing Foundation {#2025-processing-foundation} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 7. Processing Foundation {#2025-processing-foundation} +### 7. JdeRobot {#2025-jderobot} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 8. Checker Framework {#2025-checker-framework} +### 8. AOSSIE {#2025-aossie} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) -- **Website**: [Visit Website](https://checkerframework.org/) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 9. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} +### 9. Electron {#2025-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org) + +
+ +### 10. Graphite {#2025-graphite} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
-### 10. Jenkins {#2025-jenkins} +### 11. Jenkins {#2025-jenkins} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) @@ -242,55 +250,55 @@
-### 11. API Dash {#2025-api-dash} +### 12. Plone Foundation {#2025-plone-foundation} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 12. OpenAstronomy {#2025-openastronomy} +### 13. stdlib {#2025-stdlib} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 13. Graphite {#2025-graphite} +### 14. Checker Framework {#2025-checker-framework} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) +- **Website**: [Visit Website](https://checkerframework.org/)
-### 14. freifunk {#2025-freifunk} +### 15. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 15. Joomla! {#2025-joomla!} +### 16. API Dash {#2025-api-dash} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 16. Electron {#2025-electron} +### 17. Alaska {#2025-alaska} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 17. Git {#2025-git} +### 18. Git {#2025-git} - **Technologies**: Ruby on Rails - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/git) @@ -298,19 +306,11 @@
-### 18. rocket.chat {#2025-rocketchat} +### 19. Python Software Foundation {#2025-python-software-foundation} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) - -
- -### 19. JdeRobot {#2025-jderobot} - -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
@@ -322,15 +322,7 @@
-### 21. Plone Foundation {#2025-plone-foundation} - -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) - -
- -### 22. BRL-CAD {#2025-brl-cad} +### 21. BRL-CAD {#2025-brl-cad} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) @@ -338,81 +330,49 @@
-### 23. Alaska {#2025-alaska} - -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) - -
- -## πŸ“‹ GSoC 2024 - Organization Details - -### 1. stdlib {#2024-stdlib} - -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) - -
- -### 2. JdeRobot {#2024-jderobot} - -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) - -
+### 22. Joomla! {#2025-joomla!} -### 3. Graphite {#2024-graphite} - -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) - -
- -### 4. Alaska {#2024-alaska} - -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 5. Haskell.org {#2024-haskellorg} +### 23. Haskell.org {#2025-haskellorg} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) - **Website**: [Visit Website](https://haskell.org/)
-### 6. rocket.chat {#2024-rocketchat} +## πŸ“‹ GSoC 2024 - Organization Details -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +### 1. Git {#2024-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 7. Purr Data {#2024-purr-data} +### 2. AOSSIE {#2024-aossie} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 8. The ENIGMA Team {#2024-the-enigma-team} +### 3. Open Chemistry {#2024-open-chemistry} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 9. Django Software Foundation {#2024-django-software-foundation} +### 4. Django Software Foundation {#2024-django-software-foundation} - **Technologies**: Django - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) @@ -420,71 +380,71 @@
-### 10. Python Software Foundation {#2024-python-software-foundation} +### 5. MetaCall {#2024-metacall} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 11. Neutralinojs {#2024-neutralinojs} +### 6. Apertium {#2024-apertium} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 12. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} +### 7. BRL-CAD {#2024-brl-cad} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 13. API Dash {#2024-api-dash} +### 8. Graphite {#2024-graphite} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
-### 14. BRL-CAD {#2024-brl-cad} +### 9. Plone Foundation {#2024-plone-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 15. AOSSIE {#2024-aossie} +### 10. The ENIGMA Team {#2024-the-enigma-team} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 16. Open Chemistry {#2024-open-chemistry} +### 11. Alaska {#2024-alaska} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 17. Git {#2024-git} +### 12. OpenAstronomy {#2024-openastronomy} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 18. caMicroscope {#2024-camicroscope} +### 13. caMicroscope {#2024-camicroscope} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) @@ -492,63 +452,63 @@
-### 19. Electron {#2024-electron} +### 14. stdlib {#2024-stdlib} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 20. Plone Foundation {#2024-plone-foundation} +### 15. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 21. webpack {#2024-webpack} +### 16. Python Software Foundation {#2024-python-software-foundation} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 22. Jenkins {#2024-jenkins} +### 17. rocket.chat {#2024-rocketchat} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 23. Polypheny {#2024-polypheny} +### 18. Neutralinojs {#2024-neutralinojs} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 24. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} +### 19. webpack {#2024-webpack} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 25. OpenAstronomy {#2024-openastronomy} +### 20. Electron {#2024-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 26. Nightwatch.js {#2024-nightwatchjs} +### 21. Nightwatch.js {#2024-nightwatchjs} - **Technologies**: Angular, JavaScript, Node.js, React, Vue.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) @@ -556,23 +516,15 @@
-### 27. MetaCall {#2024-metacall} +### 22. Purr Data {#2024-purr-data} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) - -
- -### 28. Apertium {#2024-apertium} - -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 29. freifunk {#2024-freifunk} +### 23. freifunk {#2024-freifunk} - **Technologies**: Babel - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) @@ -580,57 +532,65 @@
-## πŸ“‹ GSoC 2023 - Organization Details +### 24. JdeRobot {#2024-jderobot} -### 1. rocket.chat {#2023-rocketchat} +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io) -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +
+ +### 25. API Dash {#2024-api-dash} + +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 2. Purr Data {#2023-purr-data} +### 26. Polypheny {#2024-polypheny} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 3. AOSSIE {#2023-aossie} +### 27. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 4. OpenAstronomy {#2023-openastronomy} +### 28. Haskell.org {#2024-haskellorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 5. Django Software Foundation {#2023-django-software-foundation} +### 29. Jenkins {#2024-jenkins} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 6. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} +## πŸ“‹ GSoC 2023 - Organization Details + +### 1. caMicroscope {#2023-camicroscope} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) -- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
-### 7. Python Software Foundation {#2023-python-software-foundation} +### 2. Python Software Foundation {#2023-python-software-foundation} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) @@ -638,23 +598,23 @@
-### 8. caMicroscope {#2023-camicroscope} +### 3. rocket.chat {#2023-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 9. Jenkins {#2023-jenkins} +### 4. Processing Foundation {#2023-processing-foundation} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 10. MetaCall {#2023-metacall} +### 5. MetaCall {#2023-metacall} - **Technologies**: Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) @@ -662,15 +622,7 @@
-### 11. The ENIGMA Team {#2023-the-enigma-team} - -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) - -
- -### 12. BRL-CAD {#2023-brl-cad} +### 6. BRL-CAD {#2023-brl-cad} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) @@ -678,23 +630,23 @@
-### 13. Plone Foundation {#2023-plone-foundation} +### 7. Jenkins {#2023-jenkins} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 14. Open Chemistry {#2023-open-chemistry} +### 8. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) +- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/)
-### 15. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} +### 9. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) @@ -702,7 +654,15 @@
-### 16. Git {#2023-git} +### 10. XWiki {#2023-xwiki} + +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/) + +
+ +### 11. Git {#2023-git} - **Technologies**: Ruby on Rails - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) @@ -710,7 +670,7 @@
-### 17. freifunk {#2023-freifunk} +### 12. freifunk {#2023-freifunk} - **Technologies**: Babel - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) @@ -718,57 +678,81 @@
-### 18. Apertium {#2023-apertium} +### 13. JdeRobot {#2023-jderobot} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 19. JdeRobot {#2023-jderobot} +### 14. The ENIGMA Team {#2023-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 20. Processing Foundation {#2023-processing-foundation} +### 15. AOSSIE {#2023-aossie} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 21. XWiki {#2023-xwiki} +### 16. Open Chemistry {#2023-open-chemistry} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-## πŸ“‹ GSoC 2022 - Organization Details +### 17. Purr Data {#2023-purr-data} -### 1. Neutralinojs {#2022-neutralinojs} +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/) -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +
+ +### 18. Django Software Foundation {#2023-django-software-foundation} + +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) + +
+ +### 19. Plone Foundation {#2023-plone-foundation} + +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) + +
+ +### 20. Apertium {#2023-apertium} + +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 2. Joomla! {#2022-joomla!} +### 21. OpenAstronomy {#2023-openastronomy} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 3. Weaviate {#2022-weaviate} +## πŸ“‹ GSoC 2022 - Organization Details + +### 1. Weaviate {#2022-weaviate} - **Technologies**: GraphQL, REST API - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) @@ -776,63 +760,63 @@
-### 4. SeaQL {#2022-seaql} +### 2. Polypheny {#2022-polypheny} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) -- **Website**: [Visit Website](https://www.sea-ql.org) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 5. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} +### 3. Processing Foundation {#2022-processing-foundation} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) -- **Website**: [Visit Website](https://fz-juelich.de/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 6. Open Chemistry {#2022-open-chemistry} +### 4. XWiki {#2022-xwiki} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 7. Electron {#2022-electron} +### 5. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 8. Processing Foundation {#2022-processing-foundation} +### 6. Electron {#2022-electron} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 9. Python Software Foundation {#2022-python-software-foundation} +### 7. Godot Engine {#2022-godot-engine} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) +- **Website**: [Visit Website](https://godotengine.org)
-### 10. BRL-CAD {#2022-brl-cad} +### 8. JdeRobot {#2022-jderobot} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 11. Matrix.org {#2022-matrixorg} +### 9. Matrix.org {#2022-matrixorg} - **Technologies**: WebRTC - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) @@ -840,15 +824,7 @@
-### 12. Django Software Foundation {#2022-django-software-foundation} - -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) - -
- -### 13. Plone Foundation {#2022-plone-foundation} +### 10. Plone Foundation {#2022-plone-foundation} - **Technologies**: React - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) @@ -856,139 +832,163 @@
-### 14. MetaCall {#2022-metacall} +### 11. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} - **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) +- **Website**: [Visit Website](https://fz-juelich.de/en) + +
+ +### 12. Purr Data {#2022-purr-data} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/) + +
+ +### 13. syslog-ng {#2022-syslog-ng} + +- **Technologies**: JavaScript, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) +- **Website**: [Visit Website](https://www.syslog-ng.com/)
-### 15. Jenkins {#2022-jenkins} +### 14. BRL-CAD {#2022-brl-cad} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 16. freifunk {#2022-freifunk} +### 15. Open Chemistry {#2022-open-chemistry} - **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 17. OpenAstronomy {#2022-openastronomy} +### 16. Casbin {#2022-casbin} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) +- **Website**: [Visit Website](https://casbin.org)
-### 18. Git {#2022-git} +### 17. SeaQL {#2022-seaql} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) +- **Website**: [Visit Website](https://www.sea-ql.org)
-### 19. Polypheny {#2022-polypheny} +### 18. FRRouting {#2022-frrouting} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) +- **Website**: [Visit Website](https://frrouting.org/)
-### 20. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} +### 19. Python Software Foundation {#2022-python-software-foundation} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 21. AOSSIE {#2022-aossie} +### 20. Jenkins {#2022-jenkins} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 22. Haskell.org {#2022-haskellorg} +### 21. Git {#2022-git} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 23. JdeRobot {#2022-jderobot} +### 22. OpenAstronomy {#2022-openastronomy} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 24. XWiki {#2022-xwiki} +### 23. freifunk {#2022-freifunk} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 25. Godot Engine {#2022-godot-engine} +### 24. Joomla! {#2022-joomla!} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) -- **Website**: [Visit Website](https://godotengine.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 26. rocket.chat {#2022-rocketchat} +### 25. Haskell.org {#2022-haskellorg} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 27. syslog-ng {#2022-syslog-ng} +### 26. AOSSIE {#2022-aossie} -- **Technologies**: JavaScript, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) -- **Website**: [Visit Website](https://www.syslog-ng.com/) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 28. FRRouting {#2022-frrouting} +### 27. rocket.chat {#2022-rocketchat} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) -- **Website**: [Visit Website](https://frrouting.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 29. Casbin {#2022-casbin} +### 28. Django Software Foundation {#2022-django-software-foundation} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) -- **Website**: [Visit Website](https://casbin.org) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 30. Purr Data {#2022-purr-data} +### 29. Neutralinojs {#2022-neutralinojs} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org) + +
+ +### 30. MetaCall {#2022-metacall} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
@@ -1021,7 +1021,7 @@ ## πŸ”§ Technical Details -- **Last Updated**: 2025-10-12 16:24:31 +- **Last Updated**: 2025-10-13 09:22:02 - **Data Source**: Google Summer of Code Official API - **Web Technologies Detected**: angular, asp.net, babel, bootstrap, css, d3.js, django, express, fastapi, flask, graphql, html, javascript, jest, jquery, laravel, less, mocha, node.js, phoenix, react, react native, rest api, ruby on rails, sass, scss, spring boot, stylus, tailwind, three.js, typescript, vue, webpack, webrtc, websocket - **Update Frequency**: Weekly automatic checks diff --git a/gsoc_2022_web_organizations.json b/gsoc_2022_web_organizations.json index 350869a..dc2d42a 100644 --- a/gsoc_2022_web_organizations.json +++ b/gsoc_2022_web_organizations.json @@ -1,20 +1,4 @@ [ - { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", - "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" - }, - { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", - "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" - }, { "name": "Weaviate", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", @@ -24,28 +8,36 @@ "slug": "weaviate" }, { - "name": "SeaQL", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", "description": "", - "technologies": "GraphQL", - "website_url": "https://www.sea-ql.org", - "slug": "seaql" + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" }, { - "name": "Forschungszentrum JΓΌlich", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", "description": "", - "technologies": "Node.js", - "website_url": "https://fz-juelich.de/en", - "slug": "forschungszentrum-julich" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" + }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { "name": "Electron", @@ -56,28 +48,20 @@ "slug": "electron" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", - "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" - }, - { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "name": "Godot Engine", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", "description": "", "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "website_url": "https://godotengine.org", + "slug": "godot-engine" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", "description": "", "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { "name": "Matrix.org", @@ -87,14 +71,6 @@ "website_url": "https://matrix.org", "slug": "matrixorg" }, - { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", - "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" - }, { "name": "Plone Foundation", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", @@ -104,36 +80,84 @@ "slug": "plone-foundation" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "name": "Forschungszentrum JΓΌlich", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", "description": "", "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "website_url": "https://fz-juelich.de/en", + "slug": "forschungszentrum-julich" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "description": "", + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" + }, + { + "name": "syslog-ng", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", + "description": "", + "technologies": "JavaScript, REST API", + "website_url": "https://www.syslog-ng.com/", + "slug": "syslog-ng" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", "description": "", "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", "description": "", "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", + "name": "Casbin", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://casbin.org", + "slug": "casbin" + }, + { + "name": "SeaQL", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", + "description": "", + "technologies": "GraphQL", + "website_url": "https://www.sea-ql.org", + "slug": "seaql" + }, + { + "name": "FRRouting", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "description": "", + "technologies": "Babel", + "website_url": "https://frrouting.org/", + "slug": "frrouting" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", "description": "", "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { "name": "Git", @@ -144,28 +168,28 @@ "slug": "git" }, { - "name": "Polypheny", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", "description": "", - "technologies": "REST API", - "website_url": "https://polypheny.org", - "slug": "polypheny" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" }, { "name": "Haskell.org", @@ -176,28 +200,12 @@ "slug": "haskellorg" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", - "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" - }, - { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", - "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" - }, - { - "name": "Godot Engine", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", "description": "", - "technologies": "HTML", - "website_url": "https://godotengine.org", - "slug": "godot-engine" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { "name": "rocket.chat", @@ -208,36 +216,28 @@ "slug": "rocketchat" }, { - "name": "syslog-ng", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", - "description": "", - "technologies": "JavaScript, REST API", - "website_url": "https://www.syslog-ng.com/", - "slug": "syslog-ng" - }, - { - "name": "FRRouting", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", "description": "", - "technologies": "Babel", - "website_url": "https://frrouting.org/", - "slug": "frrouting" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "Casbin", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://casbin.org", - "slug": "casbin" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { "name": "JBoss Community", diff --git a/gsoc_2023_web_organizations.json b/gsoc_2023_web_organizations.json index 4942abf..28ea6e0 100644 --- a/gsoc_2023_web_organizations.json +++ b/gsoc_2023_web_organizations.json @@ -1,4 +1,20 @@ [ + { + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "description": "", + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" + }, { "name": "rocket.chat", "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", @@ -8,36 +24,36 @@ "slug": "rocketchat" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { "name": "MZmine and MS-DIAL", @@ -48,60 +64,60 @@ "slug": "mzmine-and-ms-dial" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", "description": "", "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", "description": "", - "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", "description": "", "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", "description": "", "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { "name": "Open Chemistry", @@ -112,28 +128,28 @@ "slug": "open-chemistry" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", "description": "", "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { "name": "Apertium", @@ -144,27 +160,11 @@ "slug": "apertium" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", - "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" - }, - { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", - "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" - }, - { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" } ] \ No newline at end of file diff --git a/gsoc_2024_web_organizations.json b/gsoc_2024_web_organizations.json index bbab958..55b5867 100644 --- a/gsoc_2024_web_organizations.json +++ b/gsoc_2024_web_organizations.json @@ -1,59 +1,75 @@ [ { - "name": "stdlib", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://stdlib.io", - "slug": "stdlib" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "Graphite", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", "description": "", "technologies": "Node.js", - "website_url": "https://graphite.rs", - "slug": "graphite" + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", "description": "", "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { "name": "The ENIGMA Team", @@ -64,28 +80,36 @@ "slug": "the-enigma-team" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", "description": "", "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" + }, + { + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" }, { "name": "National Resource for Network Biology (NRNB)", @@ -96,52 +120,36 @@ "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", - "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" - }, - { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", - "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" - }, - { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", "description": "", - "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" }, { "name": "Electron", @@ -152,28 +160,44 @@ "slug": "electron" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", + "name": "Nightwatch.js", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "Angular, JavaScript, Node.js, React, Vue.js", + "website_url": "https://nightwatchjs.org", + "slug": "nightwatchjs" }, { - "name": "webpack", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", "description": "", - "technologies": "JavaScript, Node.js, REST API, Webpack", - "website_url": "https://webpack.js.org", - "slug": "webpack" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", "description": "", "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", + "description": "", + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" }, { "name": "Polypheny", @@ -192,43 +216,19 @@ "slug": "open-science-initiative-for-perfusion-imaging" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", - "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" - }, - { - "name": "Nightwatch.js", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", - "description": "", - "technologies": "Angular, JavaScript, Node.js, React, Vue.js", - "website_url": "https://nightwatchjs.org", - "slug": "nightwatchjs" - }, - { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", - "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" - }, - { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", "description": "", - "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" } ] \ No newline at end of file diff --git a/gsoc_2025_web_organizations.json b/gsoc_2025_web_organizations.json index 03387a4..727de7c 100644 --- a/gsoc_2025_web_organizations.json +++ b/gsoc_2025_web_organizations.json @@ -1,4 +1,20 @@ [ + { + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "description": "", + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" + }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, { "name": "Django Software Foundation", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", @@ -7,6 +23,38 @@ "website_url": "https://www.djangoproject.com", "slug": "django-software-foundation-8o" }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, { "name": "AOSSIE", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", @@ -16,28 +64,36 @@ "slug": "aossie" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" }, { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { "name": "stdlib", @@ -47,14 +103,6 @@ "website_url": "https://stdlib.io", "slug": "stdlib" }, - { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", - "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" - }, { "name": "Checker Framework", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", @@ -71,14 +119,6 @@ "website_url": "https://nrnb.org/gsoc.html", "slug": "national-resource-for-network-biology-nrnb" }, - { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", - "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" - }, { "name": "API Dash", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", @@ -88,44 +128,12 @@ "slug": "api-dash" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", - "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" - }, - { - "name": "Graphite", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", - "description": "", - "technologies": "Node.js", - "website_url": "https://graphite.rs", - "slug": "graphite" - }, - { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", - "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" - }, - { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", - "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" - }, - { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" }, { "name": "Git", @@ -136,20 +144,12 @@ "slug": "git" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", - "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" - }, - { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "webpack", @@ -159,14 +159,6 @@ "website_url": "https://webpack.js.org", "slug": "webpack" }, - { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", - "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" - }, { "name": "BRL-CAD", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", @@ -176,11 +168,19 @@ "slug": "brl-cad" }, { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "description": "", + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" } ] \ No newline at end of file From 61fdecd82cb4418fd4512ff939d320600f5aa06b Mon Sep 17 00:00:00 2001 From: Imranch4 Date: Mon, 20 Oct 2025 09:23:16 +0000 Subject: [PATCH 4/6] Auto-update GSoC organizations --- README.md | 968 +++++++++---------- gsoc_2022_web_organizations.json | 290 +++--- gsoc_2023_web_organizations.json | 174 ++-- gsoc_2024_web_organizations.json | 266 +++--- gsoc_2025_web_organizations.json | 182 ++-- gsoc_cache.json | 1490 +++++++++++++++--------------- 6 files changed, 1685 insertions(+), 1685 deletions(-) diff --git a/README.md b/README.md index 1c88443..3d4cf9e 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ - **GSoC 2023**: 21 organizations with web projects - **GSoC 2022**: 32 organizations with web projects -> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-13 09:22:02 +> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-20 09:23:16 ## πŸš€ GSoC 2025 - Web Development Organizations @@ -25,29 +25,29 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | -| 2. | [OpenAstronomy](#2025-openastronomy) | HTML | -| 3. | [Django Software Foundation](#2025-django-software-foundation) | Django | -| 4. | [freifunk](#2025-freifunk) | Babel | -| 5. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 1. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | +| 2. | [Plone Foundation](#2025-plone-foundation) | React | +| 3. | [Joomla!](#2025-joomla!) | HTML | +| 4. | [JdeRobot](#2025-jderobot) | JavaScript | +| 5. | [Graphite](#2025-graphite) | Node.js | | 6. | [Processing Foundation](#2025-processing-foundation) | JavaScript | -| 7. | [JdeRobot](#2025-jderobot) | JavaScript | +| 7. | [freifunk](#2025-freifunk) | Babel | | 8. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | -| 9. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | -| 10. | [Graphite](#2025-graphite) | Node.js | -| 11. | [Jenkins](#2025-jenkins) | JavaScript | -| 12. | [Plone Foundation](#2025-plone-foundation) | React | -| 13. | [stdlib](#2025-stdlib) | JavaScript, Node.js | -| 14. | [Checker Framework](#2025-checker-framework) | HTML | -| 15. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | -| 16. | [API Dash](#2025-api-dash) | GraphQL | -| 17. | [Alaska](#2025-alaska) | REST API | +| 9. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | +| 10. | [Checker Framework](#2025-checker-framework) | HTML | +| 11. | [API Dash](#2025-api-dash) | GraphQL | +| 12. | [Jenkins](#2025-jenkins) | JavaScript | +| 13. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 14. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | +| 15. | [Haskell.org](#2025-haskellorg) | JavaScript | +| 16. | [stdlib](#2025-stdlib) | JavaScript, Node.js | +| 17. | [Python Software Foundation](#2025-python-software-foundation) | HTML | | 18. | [Git](#2025-git) | Ruby on Rails | -| 19. | [Python Software Foundation](#2025-python-software-foundation) | HTML | -| 20. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | +| 19. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | +| 20. | [OpenAstronomy](#2025-openastronomy) | HTML | | 21. | [BRL-CAD](#2025-brl-cad) | JavaScript | -| 22. | [Joomla!](#2025-joomla!) | HTML | -| 23. | [Haskell.org](#2025-haskellorg) | JavaScript | +| 22. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 23. | [Alaska](#2025-alaska) | REST API |
@@ -57,35 +57,35 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Git](#2024-git) | Ruby on Rails | -| 2. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | -| 3. | [Open Chemistry](#2024-open-chemistry) | Babel | -| 4. | [Django Software Foundation](#2024-django-software-foundation) | Django | -| 5. | [MetaCall](#2024-metacall) | Node.js | -| 6. | [Apertium](#2024-apertium) | Less | -| 7. | [BRL-CAD](#2024-brl-cad) | JavaScript | -| 8. | [Graphite](#2024-graphite) | Node.js | -| 9. | [Plone Foundation](#2024-plone-foundation) | React | -| 10. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | -| 11. | [Alaska](#2024-alaska) | REST API | -| 12. | [OpenAstronomy](#2024-openastronomy) | HTML | -| 13. | [caMicroscope](#2024-camicroscope) | HTML | -| 14. | [stdlib](#2024-stdlib) | JavaScript, Node.js | -| 15. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 1. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | +| 2. | [BRL-CAD](#2024-brl-cad) | JavaScript | +| 3. | [Alaska](#2024-alaska) | REST API | +| 4. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | +| 5. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 6. | [Git](#2024-git) | Ruby on Rails | +| 7. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | +| 8. | [JdeRobot](#2024-jderobot) | JavaScript | +| 9. | [Jenkins](#2024-jenkins) | JavaScript | +| 10. | [Apertium](#2024-apertium) | Less | +| 11. | [freifunk](#2024-freifunk) | Babel | +| 12. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 13. | [Graphite](#2024-graphite) | Node.js | +| 14. | [caMicroscope](#2024-camicroscope) | HTML | +| 15. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | | 16. | [Python Software Foundation](#2024-python-software-foundation) | HTML | -| 17. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | -| 18. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | -| 19. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | -| 20. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | -| 21. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | -| 22. | [Purr Data](#2024-purr-data) | HTML | -| 23. | [freifunk](#2024-freifunk) | Babel | -| 24. | [JdeRobot](#2024-jderobot) | JavaScript | -| 25. | [API Dash](#2024-api-dash) | GraphQL | -| 26. | [Polypheny](#2024-polypheny) | REST API | -| 27. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | -| 28. | [Haskell.org](#2024-haskellorg) | JavaScript | -| 29. | [Jenkins](#2024-jenkins) | JavaScript | +| 17. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 18. | [API Dash](#2024-api-dash) | GraphQL | +| 19. | [Django Software Foundation](#2024-django-software-foundation) | Django | +| 20. | [Plone Foundation](#2024-plone-foundation) | React | +| 21. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | +| 22. | [MetaCall](#2024-metacall) | Node.js | +| 23. | [Haskell.org](#2024-haskellorg) | JavaScript | +| 24. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | +| 25. | [OpenAstronomy](#2024-openastronomy) | HTML | +| 26. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 27. | [Open Chemistry](#2024-open-chemistry) | Babel | +| 28. | [Purr Data](#2024-purr-data) | HTML | +| 29. | [Polypheny](#2024-polypheny) | REST API |
@@ -95,27 +95,27 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [caMicroscope](#2023-camicroscope) | HTML | -| 2. | [Python Software Foundation](#2023-python-software-foundation) | HTML | -| 3. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | -| 4. | [Processing Foundation](#2023-processing-foundation) | JavaScript | -| 5. | [MetaCall](#2023-metacall) | Node.js | -| 6. | [BRL-CAD](#2023-brl-cad) | JavaScript | -| 7. | [Jenkins](#2023-jenkins) | JavaScript | -| 8. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | -| 9. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | -| 10. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | -| 11. | [Git](#2023-git) | Ruby on Rails | -| 12. | [freifunk](#2023-freifunk) | Babel | -| 13. | [JdeRobot](#2023-jderobot) | JavaScript | -| 14. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | -| 15. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | -| 16. | [Open Chemistry](#2023-open-chemistry) | Babel | -| 17. | [Purr Data](#2023-purr-data) | HTML | -| 18. | [Django Software Foundation](#2023-django-software-foundation) | Django | -| 19. | [Plone Foundation](#2023-plone-foundation) | React | -| 20. | [Apertium](#2023-apertium) | Less | -| 21. | [OpenAstronomy](#2023-openastronomy) | HTML | +| 1. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | +| 2. | [BRL-CAD](#2023-brl-cad) | JavaScript | +| 3. | [Git](#2023-git) | Ruby on Rails | +| 4. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 5. | [Plone Foundation](#2023-plone-foundation) | React | +| 6. | [Python Software Foundation](#2023-python-software-foundation) | HTML | +| 7. | [Django Software Foundation](#2023-django-software-foundation) | Django | +| 8. | [JdeRobot](#2023-jderobot) | JavaScript | +| 9. | [caMicroscope](#2023-camicroscope) | HTML | +| 10. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 11. | [Apertium](#2023-apertium) | Less | +| 12. | [MetaCall](#2023-metacall) | Node.js | +| 13. | [freifunk](#2023-freifunk) | Babel | +| 14. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | +| 15. | [Purr Data](#2023-purr-data) | HTML | +| 16. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | +| 17. | [Open Chemistry](#2023-open-chemistry) | Babel | +| 18. | [Jenkins](#2023-jenkins) | JavaScript | +| 19. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | +| 20. | [OpenAstronomy](#2023-openastronomy) | HTML | +| 21. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript |
@@ -125,80 +125,80 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Weaviate](#2022-weaviate) | GraphQL, REST API | -| 2. | [Polypheny](#2022-polypheny) | REST API | -| 3. | [Processing Foundation](#2022-processing-foundation) | JavaScript | -| 4. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | -| 5. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | -| 6. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | -| 7. | [Godot Engine](#2022-godot-engine) | HTML | -| 8. | [JdeRobot](#2022-jderobot) | JavaScript | -| 9. | [Matrix.org](#2022-matrixorg) | WebRTC | -| 10. | [Plone Foundation](#2022-plone-foundation) | React | -| 11. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | -| 12. | [Purr Data](#2022-purr-data) | HTML | -| 13. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | -| 14. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 1. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 2. | [FRRouting](#2022-frrouting) | Babel | +| 3. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | +| 4. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | +| 5. | [Polypheny](#2022-polypheny) | REST API | +| 6. | [Plone Foundation](#2022-plone-foundation) | React | +| 7. | [Processing Foundation](#2022-processing-foundation) | JavaScript | +| 8. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | +| 9. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | +| 10. | [Jenkins](#2022-jenkins) | JavaScript | +| 11. | [Python Software Foundation](#2022-python-software-foundation) | HTML | +| 12. | [Haskell.org](#2022-haskellorg) | JavaScript | +| 13. | [OpenAstronomy](#2022-openastronomy) | HTML | +| 14. | [Godot Engine](#2022-godot-engine) | HTML | | 15. | [Open Chemistry](#2022-open-chemistry) | Babel | -| 16. | [Casbin](#2022-casbin) | JavaScript, Node.js | -| 17. | [SeaQL](#2022-seaql) | GraphQL | -| 18. | [FRRouting](#2022-frrouting) | Babel | -| 19. | [Python Software Foundation](#2022-python-software-foundation) | HTML | -| 20. | [Jenkins](#2022-jenkins) | JavaScript | -| 21. | [Git](#2022-git) | Ruby on Rails | -| 22. | [OpenAstronomy](#2022-openastronomy) | HTML | -| 23. | [freifunk](#2022-freifunk) | Babel | -| 24. | [Joomla!](#2022-joomla!) | HTML | -| 25. | [Haskell.org](#2022-haskellorg) | JavaScript | -| 26. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | -| 27. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | -| 28. | [Django Software Foundation](#2022-django-software-foundation) | Django | -| 29. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | -| 30. | [MetaCall](#2022-metacall) | Node.js | -| 31. | [JBoss Community](#2022-jboss-community) | Node.js | -| 32. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | +| 16. | [SeaQL](#2022-seaql) | GraphQL | +| 17. | [JdeRobot](#2022-jderobot) | JavaScript | +| 18. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | +| 19. | [Weaviate](#2022-weaviate) | GraphQL, REST API | +| 20. | [freifunk](#2022-freifunk) | Babel | +| 21. | [JBoss Community](#2022-jboss-community) | Node.js | +| 22. | [Git](#2022-git) | Ruby on Rails | +| 23. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | +| 24. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | +| 25. | [Joomla!](#2022-joomla!) | HTML | +| 26. | [MetaCall](#2022-metacall) | Node.js | +| 27. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | +| 28. | [Casbin](#2022-casbin) | JavaScript, Node.js | +| 29. | [Purr Data](#2022-purr-data) | HTML | +| 30. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | +| 31. | [Django Software Foundation](#2022-django-software-foundation) | Django | +| 32. | [Matrix.org](#2022-matrixorg) | WebRTC |
## πŸ“‹ GSoC 2025 - Organization Details -### 1. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} +### 1. Electron {#2025-electron} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 2. OpenAstronomy {#2025-openastronomy} +### 2. Plone Foundation {#2025-plone-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 3. Django Software Foundation {#2025-django-software-foundation} +### 3. Joomla! {#2025-joomla!} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 4. freifunk {#2025-freifunk} +### 4. JdeRobot {#2025-jderobot} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 5. rocket.chat {#2025-rocketchat} +### 5. Graphite {#2025-graphite} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
@@ -210,11 +210,11 @@
-### 7. JdeRobot {#2025-jderobot} +### 7. freifunk {#2025-freifunk} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
@@ -226,75 +226,75 @@
-### 9. Electron {#2025-electron} +### 9. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 10. Graphite {#2025-graphite} +### 10. Checker Framework {#2025-checker-framework} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) +- **Website**: [Visit Website](https://checkerframework.org/)
-### 11. Jenkins {#2025-jenkins} +### 11. API Dash {#2025-api-dash} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 12. Plone Foundation {#2025-plone-foundation} +### 12. Jenkins {#2025-jenkins} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 13. stdlib {#2025-stdlib} +### 13. rocket.chat {#2025-rocketchat} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 14. Checker Framework {#2025-checker-framework} +### 14. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) -- **Website**: [Visit Website](https://checkerframework.org/) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 15. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} +### 15. Haskell.org {#2025-haskellorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 16. API Dash {#2025-api-dash} +### 16. stdlib {#2025-stdlib} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 17. Alaska {#2025-alaska} +### 17. Python Software Foundation {#2025-python-software-foundation} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
@@ -306,19 +306,19 @@
-### 19. Python Software Foundation {#2025-python-software-foundation} +### 19. webpack {#2025-webpack} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 20. webpack {#2025-webpack} +### 20. OpenAstronomy {#2025-openastronomy} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
@@ -330,141 +330,141 @@
-### 22. Joomla! {#2025-joomla!} +### 22. Django Software Foundation {#2025-django-software-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 23. Haskell.org {#2025-haskellorg} +### 23. Alaska {#2025-alaska} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
## πŸ“‹ GSoC 2024 - Organization Details -### 1. Git {#2024-git} +### 1. rocket.chat {#2024-rocketchat} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 2. AOSSIE {#2024-aossie} +### 2. BRL-CAD {#2024-brl-cad} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 3. Open Chemistry {#2024-open-chemistry} +### 3. Alaska {#2024-alaska} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 4. Django Software Foundation {#2024-django-software-foundation} +### 4. AOSSIE {#2024-aossie} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 5. MetaCall {#2024-metacall} +### 5. webpack {#2024-webpack} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 6. Apertium {#2024-apertium} +### 6. Git {#2024-git} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 7. BRL-CAD {#2024-brl-cad} +### 7. The ENIGMA Team {#2024-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 8. Graphite {#2024-graphite} +### 8. JdeRobot {#2024-jderobot} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 9. Plone Foundation {#2024-plone-foundation} +### 9. Jenkins {#2024-jenkins} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 10. The ENIGMA Team {#2024-the-enigma-team} +### 10. Apertium {#2024-apertium} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 11. Alaska {#2024-alaska} +### 11. freifunk {#2024-freifunk} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 12. OpenAstronomy {#2024-openastronomy} +### 12. Electron {#2024-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 13. caMicroscope {#2024-camicroscope} +### 13. Graphite {#2024-graphite} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
-### 14. stdlib {#2024-stdlib} +### 14. caMicroscope {#2024-camicroscope} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
-### 15. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} +### 15. Nightwatch.js {#2024-nightwatchjs} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) +- **Website**: [Visit Website](https://nightwatchjs.org)
@@ -476,201 +476,209 @@
-### 17. rocket.chat {#2024-rocketchat} +### 17. stdlib {#2024-stdlib} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 18. Neutralinojs {#2024-neutralinojs} +### 18. API Dash {#2024-api-dash} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 19. webpack {#2024-webpack} +### 19. Django Software Foundation {#2024-django-software-foundation} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 20. Electron {#2024-electron} +### 20. Plone Foundation {#2024-plone-foundation} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 21. Nightwatch.js {#2024-nightwatchjs} +### 21. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} -- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) -- **Website**: [Visit Website](https://nightwatchjs.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 22. Purr Data {#2024-purr-data} +### 22. MetaCall {#2024-metacall} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 23. freifunk {#2024-freifunk} +### 23. Haskell.org {#2024-haskellorg} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 24. JdeRobot {#2024-jderobot} +### 24. Neutralinojs {#2024-neutralinojs} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 25. API Dash {#2024-api-dash} +### 25. OpenAstronomy {#2024-openastronomy} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 26. Polypheny {#2024-polypheny} +### 26. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 27. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} +### 27. Open Chemistry {#2024-open-chemistry} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 28. Haskell.org {#2024-haskellorg} +### 28. Purr Data {#2024-purr-data} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 29. Jenkins {#2024-jenkins} +### 29. Polypheny {#2024-polypheny} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
## πŸ“‹ GSoC 2023 - Organization Details -### 1. caMicroscope {#2023-camicroscope} +### 1. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) +- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/)
-### 2. Python Software Foundation {#2023-python-software-foundation} +### 2. BRL-CAD {#2023-brl-cad} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 3. rocket.chat {#2023-rocketchat} +### 3. Git {#2023-git} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 4. Processing Foundation {#2023-processing-foundation} +### 4. The ENIGMA Team {#2023-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 5. MetaCall {#2023-metacall} +### 5. Plone Foundation {#2023-plone-foundation} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 6. BRL-CAD {#2023-brl-cad} +### 6. Python Software Foundation {#2023-python-software-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 7. Jenkins {#2023-jenkins} +### 7. Django Software Foundation {#2023-django-software-foundation} + +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com) + +
+ +### 8. JdeRobot {#2023-jderobot} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 8. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} +### 9. caMicroscope {#2023-camicroscope} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) -- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
-### 9. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} +### 10. Processing Foundation {#2023-processing-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 10. XWiki {#2023-xwiki} +### 11. Apertium {#2023-apertium} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 11. Git {#2023-git} +### 12. MetaCall {#2023-metacall} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 12. freifunk {#2023-freifunk} +### 13. freifunk {#2023-freifunk} - **Technologies**: Babel - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) @@ -678,23 +686,23 @@
-### 13. JdeRobot {#2023-jderobot} +### 14. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 14. The ENIGMA Team {#2023-the-enigma-team} +### 15. Purr Data {#2023-purr-data} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 15. AOSSIE {#2023-aossie} +### 16. AOSSIE {#2023-aossie} - **Technologies**: CSS, HTML, JavaScript, Jest, React - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) @@ -702,7 +710,7 @@
-### 16. Open Chemistry {#2023-open-chemistry} +### 17. Open Chemistry {#2023-open-chemistry} - **Technologies**: Babel - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) @@ -710,157 +718,149 @@
-### 17. Purr Data {#2023-purr-data} - -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) - -
- -### 18. Django Software Foundation {#2023-django-software-foundation} +### 18. Jenkins {#2023-jenkins} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 19. Plone Foundation {#2023-plone-foundation} +### 19. rocket.chat {#2023-rocketchat} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 20. Apertium {#2023-apertium} +### 20. OpenAstronomy {#2023-openastronomy} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 21. OpenAstronomy {#2023-openastronomy} +### 21. XWiki {#2023-xwiki} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
## πŸ“‹ GSoC 2022 - Organization Details -### 1. Weaviate {#2022-weaviate} +### 1. BRL-CAD {#2022-brl-cad} -- **Technologies**: GraphQL, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) -- **Website**: [Visit Website](https://weaviate.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 2. Polypheny {#2022-polypheny} +### 2. FRRouting {#2022-frrouting} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) +- **Website**: [Visit Website](https://frrouting.org/)
-### 3. Processing Foundation {#2022-processing-foundation} +### 3. The ENIGMA Team {#2022-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 4. XWiki {#2022-xwiki} +### 4. AOSSIE {#2022-aossie} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 5. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} +### 5. Polypheny {#2022-polypheny} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 6. Electron {#2022-electron} +### 6. Plone Foundation {#2022-plone-foundation} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 7. Godot Engine {#2022-godot-engine} +### 7. Processing Foundation {#2022-processing-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) -- **Website**: [Visit Website](https://godotengine.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 8. JdeRobot {#2022-jderobot} +### 8. rocket.chat {#2022-rocketchat} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 9. Matrix.org {#2022-matrixorg} +### 9. Neutralinojs {#2022-neutralinojs} -- **Technologies**: WebRTC -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) -- **Website**: [Visit Website](https://matrix.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 10. Plone Foundation {#2022-plone-foundation} +### 10. Jenkins {#2022-jenkins} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 11. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} +### 11. Python Software Foundation {#2022-python-software-foundation} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) -- **Website**: [Visit Website](https://fz-juelich.de/en) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 12. Purr Data {#2022-purr-data} +### 12. Haskell.org {#2022-haskellorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 13. syslog-ng {#2022-syslog-ng} +### 13. OpenAstronomy {#2022-openastronomy} -- **Technologies**: JavaScript, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) -- **Website**: [Visit Website](https://www.syslog-ng.com/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 14. BRL-CAD {#2022-brl-cad} +### 14. Godot Engine {#2022-godot-engine} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) +- **Website**: [Visit Website](https://godotengine.org)
@@ -872,47 +872,55 @@
-### 16. Casbin {#2022-casbin} +### 16. SeaQL {#2022-seaql} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) -- **Website**: [Visit Website](https://casbin.org) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) +- **Website**: [Visit Website](https://www.sea-ql.org)
-### 17. SeaQL {#2022-seaql} +### 17. JdeRobot {#2022-jderobot} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) -- **Website**: [Visit Website](https://www.sea-ql.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 18. FRRouting {#2022-frrouting} +### 18. syslog-ng {#2022-syslog-ng} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) -- **Website**: [Visit Website](https://frrouting.org/) +- **Technologies**: JavaScript, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) +- **Website**: [Visit Website](https://www.syslog-ng.com/)
-### 19. Python Software Foundation {#2022-python-software-foundation} +### 19. Weaviate {#2022-weaviate} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: GraphQL, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) +- **Website**: [Visit Website](https://weaviate.io)
-### 20. Jenkins {#2022-jenkins} +### 20. freifunk {#2022-freifunk} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 21. Git {#2022-git} +### 21. JBoss Community {#2022-jboss-community} + +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) +- **Website**: [Visit Website](http://www.jboss.org/) + +
+ +### 22. Git {#2022-git} - **Technologies**: Ruby on Rails - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) @@ -920,23 +928,23 @@
-### 22. OpenAstronomy {#2022-openastronomy} +### 23. XWiki {#2022-xwiki} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 23. freifunk {#2022-freifunk} +### 24. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 24. Joomla! {#2022-joomla!} +### 25. Joomla! {#2022-joomla!} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) @@ -944,67 +952,59 @@
-### 25. Haskell.org {#2022-haskellorg} +### 26. MetaCall {#2022-metacall} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) - -
- -### 26. AOSSIE {#2022-aossie} - -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 27. rocket.chat {#2022-rocketchat} +### 27. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) +- **Website**: [Visit Website](https://fz-juelich.de/en)
-### 28. Django Software Foundation {#2022-django-software-foundation} +### 28. Casbin {#2022-casbin} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) +- **Website**: [Visit Website](https://casbin.org)
-### 29. Neutralinojs {#2022-neutralinojs} +### 29. Purr Data {#2022-purr-data} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 30. MetaCall {#2022-metacall} +### 30. Electron {#2022-electron} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 31. JBoss Community {#2022-jboss-community} +### 31. Django Software Foundation {#2022-django-software-foundation} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) -- **Website**: [Visit Website](http://www.jboss.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 32. The ENIGMA Team {#2022-the-enigma-team} +### 32. Matrix.org {#2022-matrixorg} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: WebRTC +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) +- **Website**: [Visit Website](https://matrix.org)
@@ -1021,7 +1021,7 @@ ## πŸ”§ Technical Details -- **Last Updated**: 2025-10-13 09:22:02 +- **Last Updated**: 2025-10-20 09:23:16 - **Data Source**: Google Summer of Code Official API - **Web Technologies Detected**: angular, asp.net, babel, bootstrap, css, d3.js, django, express, fastapi, flask, graphql, html, javascript, jest, jquery, laravel, less, mocha, node.js, phoenix, react, react native, rest api, ruby on rails, sass, scss, spring boot, stylus, tailwind, three.js, typescript, vue, webpack, webrtc, websocket - **Update Frequency**: Weekly automatic checks diff --git a/gsoc_2022_web_organizations.json b/gsoc_2022_web_organizations.json index dc2d42a..4d5861e 100644 --- a/gsoc_2022_web_organizations.json +++ b/gsoc_2022_web_organizations.json @@ -1,115 +1,115 @@ [ { - "name": "Weaviate", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", "description": "", - "technologies": "GraphQL, REST API", - "website_url": "https://weaviate.io", - "slug": "weaviate" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "Polypheny", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "name": "FRRouting", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", "description": "", - "technologies": "REST API", - "website_url": "https://polypheny.org", - "slug": "polypheny" + "technologies": "Babel", + "website_url": "https://frrouting.org/", + "slug": "frrouting" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", "description": "", "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" }, { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "Godot Engine", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://godotengine.org", - "slug": "godot-engine" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "Matrix.org", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", "description": "", - "technologies": "WebRTC", - "website_url": "https://matrix.org", - "slug": "matrixorg" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { - "name": "Forschungszentrum JΓΌlich", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", "description": "", - "technologies": "Node.js", - "website_url": "https://fz-juelich.de/en", - "slug": "forschungszentrum-julich" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "syslog-ng", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", "description": "", - "technologies": "JavaScript, REST API", - "website_url": "https://www.syslog-ng.com/", - "slug": "syslog-ng" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", + "name": "Godot Engine", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "HTML", + "website_url": "https://godotengine.org", + "slug": "godot-engine" }, { "name": "Open Chemistry", @@ -119,14 +119,6 @@ "website_url": "https://openchemistry.org/", "slug": "open-chemistry" }, - { - "name": "Casbin", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", - "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://casbin.org", - "slug": "casbin" - }, { "name": "SeaQL", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", @@ -136,28 +128,44 @@ "slug": "seaql" }, { - "name": "FRRouting", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", "description": "", - "technologies": "Babel", - "website_url": "https://frrouting.org/", - "slug": "frrouting" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "name": "syslog-ng", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "JavaScript, REST API", + "website_url": "https://www.syslog-ng.com/", + "slug": "syslog-ng" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", + "name": "Weaviate", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "technologies": "GraphQL, REST API", + "website_url": "https://weaviate.io", + "slug": "weaviate" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "JBoss Community", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", + "description": "", + "technologies": "Node.js", + "website_url": "http://www.jboss.org/", + "slug": "jboss-community" }, { "name": "Git", @@ -168,20 +176,20 @@ "slug": "git" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { "name": "Joomla!", @@ -192,67 +200,59 @@ "slug": "joomla" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", - "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" - }, - { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", + "name": "Forschungszentrum JΓΌlich", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "Node.js", + "website_url": "https://fz-juelich.de/en", + "slug": "forschungszentrum-julich" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "name": "Casbin", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "JavaScript, Node.js", + "website_url": "https://casbin.org", + "slug": "casbin" }, { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" }, { - "name": "JBoss Community", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", "description": "", - "technologies": "Node.js", - "website_url": "http://www.jboss.org/", - "slug": "jboss-community" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", + "name": "Matrix.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "technologies": "WebRTC", + "website_url": "https://matrix.org", + "slug": "matrixorg" } ] \ No newline at end of file diff --git a/gsoc_2023_web_organizations.json b/gsoc_2023_web_organizations.json index 28ea6e0..420d442 100644 --- a/gsoc_2023_web_organizations.json +++ b/gsoc_2023_web_organizations.json @@ -1,91 +1,99 @@ [ { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "name": "MZmine and MS-DIAL", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", "description": "", "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "website_url": "https://mzmine-ms-dial-gsoc.github.io/", + "slug": "mzmine-and-ms-dial" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", "description": "", "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", "description": "", "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "MZmine and MS-DIAL", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", "description": "", "technologies": "HTML", - "website_url": "https://mzmine-ms-dial-gsoc.github.io/", - "slug": "mzmine-and-ms-dial" + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" }, { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { "name": "freifunk", @@ -96,20 +104,20 @@ "slug": "freifunk" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { "name": "AOSSIE", @@ -128,36 +136,20 @@ "slug": "open-chemistry" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", - "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" - }, - { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o", - "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" - }, - { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", "description": "", - "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { "name": "OpenAstronomy", @@ -166,5 +158,13 @@ "technologies": "HTML", "website_url": "https://openastronomy.org/", "slug": "openastronomy" + }, + { + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" } ] \ No newline at end of file diff --git a/gsoc_2024_web_organizations.json b/gsoc_2024_web_organizations.json index 55b5867..1e6e9c4 100644 --- a/gsoc_2024_web_organizations.json +++ b/gsoc_2024_web_organizations.json @@ -1,11 +1,27 @@ [ { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "description": "", + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" }, { "name": "AOSSIE", @@ -16,28 +32,44 @@ "slug": "aossie" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/git", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" + }, + { + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "description": "", + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { "name": "Apertium", @@ -48,12 +80,20 @@ "slug": "apertium" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" }, { "name": "Graphite", @@ -64,44 +104,28 @@ "slug": "graphite" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", - "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" - }, - { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", - "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" - }, - { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", + "name": "Nightwatch.js", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "Angular, JavaScript, Node.js, React, Vue.js", + "website_url": "https://nightwatchjs.org", + "slug": "nightwatchjs" }, { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", "description": "", "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "stdlib", @@ -112,92 +136,92 @@ "slug": "stdlib" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { - "name": "webpack", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/metacall", "description": "", - "technologies": "JavaScript, Node.js, REST API, Webpack", - "website_url": "https://webpack.js.org", - "slug": "webpack" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "Nightwatch.js", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", "description": "", - "technologies": "Angular, JavaScript, Node.js, React, Vue.js", - "website_url": "https://nightwatchjs.org", - "slug": "nightwatchjs" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", "description": "", "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" }, { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { "name": "Polypheny", @@ -206,29 +230,5 @@ "technologies": "REST API", "website_url": "https://polypheny.org", "slug": "polypheny" - }, - { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", - "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" - }, - { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", - "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" - }, - { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", - "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" } ] \ No newline at end of file diff --git a/gsoc_2025_web_organizations.json b/gsoc_2025_web_organizations.json index 727de7c..3b9dc85 100644 --- a/gsoc_2025_web_organizations.json +++ b/gsoc_2025_web_organizations.json @@ -1,43 +1,43 @@ [ { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" }, { "name": "Processing Foundation", @@ -48,12 +48,12 @@ "slug": "processing-foundation" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { "name": "AOSSIE", @@ -64,20 +64,28 @@ "slug": "aossie" }, { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "Graphite", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", + "name": "Checker Framework", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", "description": "", - "technologies": "Node.js", - "website_url": "https://graphite.rs", - "slug": "graphite" + "technologies": "HTML", + "website_url": "https://checkerframework.org/", + "slug": "checker-framework" + }, + { + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "description": "", + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" }, { "name": "Jenkins", @@ -88,52 +96,44 @@ "slug": "jenkins-wp" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", - "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" - }, - { - "name": "stdlib", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://stdlib.io", - "slug": "stdlib" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "Checker Framework", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", "description": "", - "technologies": "HTML", - "website_url": "https://checkerframework.org/", - "slug": "checker-framework" + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" }, { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "Git", @@ -143,14 +143,6 @@ "website_url": "https://git-scm.com/", "slug": "git" }, - { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", - "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" - }, { "name": "webpack", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", @@ -159,6 +151,14 @@ "website_url": "https://webpack.js.org", "slug": "webpack" }, + { + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "description": "", + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" + }, { "name": "BRL-CAD", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", @@ -168,19 +168,19 @@ "slug": "brl-cad" }, { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" } ] \ No newline at end of file diff --git a/gsoc_cache.json b/gsoc_cache.json index 33a70cd..56ddc75 100644 --- a/gsoc_cache.json +++ b/gsoc_cache.json @@ -1,6 +1,6 @@ { "2025_eclipse-foundation": { - "timestamp": "2025-10-12T16:17:18.288705", + "timestamp": "2025-10-20T09:16:32.077502", "data": { "technologies": [], "description": "", @@ -9,7 +9,7 @@ } }, "2025_openwisp": { - "timestamp": "2025-10-12T16:17:18.870346", + "timestamp": "2025-10-20T09:16:44.036756", "data": { "technologies": [], "description": "", @@ -18,7 +18,7 @@ } }, "2025_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-12T16:17:19.449851", + "timestamp": "2025-10-20T09:17:04.124265", "data": { "technologies": [], "description": "", @@ -27,7 +27,7 @@ } }, "2025_oppia-foundation": { - "timestamp": "2025-10-12T16:17:20.029185", + "timestamp": "2025-10-20T09:15:30.500774", "data": { "technologies": [], "description": "", @@ -36,7 +36,7 @@ } }, "2025_aboutcode": { - "timestamp": "2025-10-12T16:17:20.609136", + "timestamp": "2025-10-20T09:16:21.387552", "data": { "technologies": [], "description": "", @@ -45,7 +45,7 @@ } }, "2025_center-for-translational-data-science": { - "timestamp": "2025-10-12T16:17:21.190746", + "timestamp": "2025-10-20T09:16:42.154581", "data": { "technologies": [], "description": "", @@ -54,7 +54,7 @@ } }, "2025_unicode-inc": { - "timestamp": "2025-10-12T16:17:21.764803", + "timestamp": "2025-10-20T09:16:32.704329", "data": { "technologies": [], "description": "", @@ -63,7 +63,7 @@ } }, "2025_rtems-project": { - "timestamp": "2025-10-12T16:17:22.342886", + "timestamp": "2025-10-20T09:17:12.307862", "data": { "technologies": [], "description": "", @@ -72,7 +72,7 @@ } }, "2025_videolan": { - "timestamp": "2025-10-12T16:17:22.923982", + "timestamp": "2025-10-20T09:15:57.510524", "data": { "technologies": [], "description": "", @@ -81,7 +81,7 @@ } }, "2025_international-catrobat-association": { - "timestamp": "2025-10-12T16:17:23.504319", + "timestamp": "2025-10-20T09:16:27.041592", "data": { "technologies": [], "description": "", @@ -90,7 +90,7 @@ } }, "2025_uc-ospo": { - "timestamp": "2025-10-12T16:17:24.084963", + "timestamp": "2025-10-20T09:16:50.337245", "data": { "technologies": [], "description": "", @@ -99,7 +99,7 @@ } }, "2025_fossology": { - "timestamp": "2025-10-12T16:17:24.666208", + "timestamp": "2025-10-20T09:15:51.235397", "data": { "technologies": [], "description": "", @@ -108,7 +108,7 @@ } }, "2025_inkscape": { - "timestamp": "2025-10-12T16:17:25.245246", + "timestamp": "2025-10-20T09:16:35.253461", "data": { "technologies": [], "description": "", @@ -117,7 +117,7 @@ } }, "2025_aflplusplus": { - "timestamp": "2025-10-12T16:17:25.823591", + "timestamp": "2025-10-20T09:16:37.759194", "data": { "technologies": [], "description": "", @@ -126,7 +126,7 @@ } }, "2025_mdanalysis": { - "timestamp": "2025-10-12T16:17:26.408613", + "timestamp": "2025-10-20T09:16:33.958030", "data": { "technologies": [], "description": "", @@ -135,7 +135,7 @@ } }, "2025_meshery": { - "timestamp": "2025-10-12T16:17:26.989761", + "timestamp": "2025-10-20T09:16:41.522892", "data": { "technologies": [], "description": "", @@ -144,7 +144,7 @@ } }, "2025_typelevel": { - "timestamp": "2025-10-12T16:17:27.564968", + "timestamp": "2025-10-20T09:16:58.490484", "data": { "technologies": [], "description": "", @@ -153,7 +153,7 @@ } }, "2025_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-12T16:17:28.145064", + "timestamp": "2025-10-20T09:16:18.235422", "data": { "technologies": [], "description": "", @@ -162,7 +162,7 @@ } }, "2025_libreoffice": { - "timestamp": "2025-10-12T16:17:28.724371", + "timestamp": "2025-10-20T09:15:41.799074", "data": { "technologies": [], "description": "", @@ -171,7 +171,7 @@ } }, "2025_swift": { - "timestamp": "2025-10-12T16:17:29.311859", + "timestamp": "2025-10-20T09:16:55.357917", "data": { "technologies": [], "description": "", @@ -180,7 +180,7 @@ } }, "2025_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-12T16:17:29.893738", + "timestamp": "2025-10-20T09:17:06.013707", "data": { "technologies": [], "description": "", @@ -189,7 +189,7 @@ } }, "2025_opencv": { - "timestamp": "2025-10-12T16:17:30.475391", + "timestamp": "2025-10-20T09:16:46.547200", "data": { "technologies": [], "description": "", @@ -198,7 +198,7 @@ } }, "2025_cloudcv": { - "timestamp": "2025-10-12T16:17:31.051246", + "timestamp": "2025-10-20T09:17:07.907943", "data": { "technologies": [], "description": "", @@ -207,7 +207,7 @@ } }, "2025_circuitverseorg": { - "timestamp": "2025-10-12T16:17:31.628203", + "timestamp": "2025-10-20T09:16:52.850626", "data": { "technologies": [], "description": "", @@ -216,7 +216,7 @@ } }, "2025_django-software-foundation-8o": { - "timestamp": "2025-10-12T16:17:32.207507", + "timestamp": "2025-10-20T09:17:11.053130", "data": { "technologies": [], "description": "", @@ -225,7 +225,7 @@ } }, "2025_open-food-facts": { - "timestamp": "2025-10-12T16:17:32.782154", + "timestamp": "2025-10-20T09:17:00.996683", "data": { "technologies": [], "description": "", @@ -234,7 +234,7 @@ } }, "2025_openstreetmap": { - "timestamp": "2025-10-12T16:17:33.361685", + "timestamp": "2025-10-20T09:17:17.329520", "data": { "technologies": [], "description": "", @@ -243,7 +243,7 @@ } }, "2025_jitsi": { - "timestamp": "2025-10-12T16:17:33.940343", + "timestamp": "2025-10-20T09:17:22.975733", "data": { "technologies": [], "description": "", @@ -252,7 +252,7 @@ } }, "2025_gnu-octave": { - "timestamp": "2025-10-12T16:17:34.517955", + "timestamp": "2025-10-20T09:16:00.011555", "data": { "technologies": [], "description": "", @@ -261,7 +261,7 @@ } }, "2025_geomscale": { - "timestamp": "2025-10-12T16:17:35.095846", + "timestamp": "2025-10-20T09:16:23.267964", "data": { "technologies": [], "description": "", @@ -270,7 +270,7 @@ } }, "2025_json-schema": { - "timestamp": "2025-10-12T16:17:35.678063", + "timestamp": "2025-10-20T09:17:02.250809", "data": { "technologies": [], "description": "", @@ -279,7 +279,7 @@ } }, "2025_blender-foundation": { - "timestamp": "2025-10-12T16:17:36.258388", + "timestamp": "2025-10-20T09:15:38.027772", "data": { "technologies": [], "description": "", @@ -288,7 +288,7 @@ } }, "2025_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-12T16:17:36.836107", + "timestamp": "2025-10-20T09:16:09.443649", "data": { "technologies": [], "description": "", @@ -297,7 +297,7 @@ } }, "2025_postgresql": { - "timestamp": "2025-10-12T16:17:37.413774", + "timestamp": "2025-10-20T09:17:17.955492", "data": { "technologies": [], "description": "", @@ -306,7 +306,7 @@ } }, "2025_scala-center": { - "timestamp": "2025-10-12T16:17:37.994167", + "timestamp": "2025-10-20T09:17:14.823583", "data": { "technologies": [], "description": "", @@ -315,7 +315,7 @@ } }, "2025_aossie": { - "timestamp": "2025-10-12T16:17:38.575543", + "timestamp": "2025-10-20T09:16:15.097321", "data": { "technologies": [], "description": "", @@ -324,7 +324,7 @@ } }, "2025_rspamd": { - "timestamp": "2025-10-12T16:17:39.158473", + "timestamp": "2025-10-20T09:16:18.864941", "data": { "technologies": [], "description": "", @@ -333,7 +333,7 @@ } }, "2025_ffmpeg": { - "timestamp": "2025-10-12T16:17:39.737381", + "timestamp": "2025-10-20T09:17:02.876083", "data": { "technologies": [], "description": "", @@ -342,7 +342,7 @@ } }, "2025_kubevirt": { - "timestamp": "2025-10-12T16:17:40.317624", + "timestamp": "2025-10-20T09:16:16.353412", "data": { "technologies": [], "description": "", @@ -351,7 +351,7 @@ } }, "2025_ankidroid": { - "timestamp": "2025-10-12T16:17:40.899843", + "timestamp": "2025-10-20T09:16:25.156559", "data": { "technologies": [], "description": "", @@ -360,7 +360,7 @@ } }, "2025_haskellorg": { - "timestamp": "2025-10-12T16:17:41.479269", + "timestamp": "2025-10-20T09:16:40.267932", "data": { "technologies": [], "description": "", @@ -369,7 +369,7 @@ } }, "2025_asyncapi": { - "timestamp": "2025-10-12T16:17:42.060317", + "timestamp": "2025-10-20T09:15:58.760156", "data": { "technologies": [], "description": "", @@ -378,7 +378,7 @@ } }, "2025_omegaup": { - "timestamp": "2025-10-12T16:17:42.636389", + "timestamp": "2025-10-20T09:17:20.463266", "data": { "technologies": [], "description": "", @@ -387,7 +387,7 @@ } }, "2025_open-science-initiative-for-perfusion-imaging": { - "timestamp": "2025-10-12T16:17:43.213542", + "timestamp": "2025-10-20T09:16:38.386661", "data": { "technologies": [], "description": "", @@ -396,7 +396,7 @@ } }, "2025_python-software-foundation": { - "timestamp": "2025-10-12T16:17:43.794434", + "timestamp": "2025-10-20T09:16:57.238821", "data": { "technologies": [], "description": "", @@ -405,7 +405,7 @@ } }, "2025_the-freebsd-project": { - "timestamp": "2025-10-12T16:17:44.373768", + "timestamp": "2025-10-20T09:16:19.489790", "data": { "technologies": [], "description": "", @@ -414,7 +414,7 @@ } }, "2025_open-science-labs": { - "timestamp": "2025-10-12T16:17:44.953587", + "timestamp": "2025-10-20T09:16:20.135057", "data": { "technologies": [], "description": "", @@ -423,7 +423,7 @@ } }, "2025_stdlib": { - "timestamp": "2025-10-12T16:17:45.533961", + "timestamp": "2025-10-20T09:16:54.730971", "data": { "technologies": [], "description": "", @@ -432,7 +432,7 @@ } }, "2025_apache-datafusion": { - "timestamp": "2025-10-12T16:17:46.113258", + "timestamp": "2025-10-20T09:16:23.898702", "data": { "technologies": [], "description": "", @@ -441,7 +441,7 @@ } }, "2025_neuroinformatics-unit": { - "timestamp": "2025-10-12T16:17:46.696185", + "timestamp": "2025-10-20T09:15:55.630482", "data": { "technologies": [], "description": "", @@ -450,7 +450,7 @@ } }, "2025_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-12T16:17:47.272302", + "timestamp": "2025-10-20T09:15:47.460891", "data": { "technologies": [], "description": "", @@ -459,7 +459,7 @@ } }, "2025_flare": { - "timestamp": "2025-10-12T16:17:47.854435", + "timestamp": "2025-10-20T09:16:49.712314", "data": { "technologies": [], "description": "", @@ -468,7 +468,7 @@ } }, "2025_processing-foundation": { - "timestamp": "2025-10-12T16:17:48.430494", + "timestamp": "2025-10-20T09:16:00.637342", "data": { "technologies": [], "description": "", @@ -477,7 +477,7 @@ } }, "2025_mit-app-inventor": { - "timestamp": "2025-10-12T16:17:49.008953", + "timestamp": "2025-10-20T09:15:29.868646", "data": { "technologies": [], "description": "", @@ -486,7 +486,7 @@ } }, "2025_st-jude-childrens-research-hospital-ai": { - "timestamp": "2025-10-12T16:17:49.592317", + "timestamp": "2025-10-20T09:16:49.085481", "data": { "technologies": [], "description": "", @@ -495,7 +495,7 @@ } }, "2025_checker-framework": { - "timestamp": "2025-10-12T16:17:50.171199", + "timestamp": "2025-10-20T09:16:22.011767", "data": { "technologies": [], "description": "", @@ -504,7 +504,7 @@ } }, "2025_ioos": { - "timestamp": "2025-10-12T16:17:50.749428", + "timestamp": "2025-10-20T09:17:06.638265", "data": { "technologies": [], "description": "", @@ -513,7 +513,7 @@ } }, "2025_openelis-global": { - "timestamp": "2025-10-12T16:17:51.330056", + "timestamp": "2025-10-20T09:16:33.328853", "data": { "technologies": [], "description": "", @@ -522,7 +522,7 @@ } }, "2025_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-12T16:17:51.906762", + "timestamp": "2025-10-20T09:15:42.427339", "data": { "technologies": [], "description": "", @@ -531,7 +531,7 @@ } }, "2025_owasp-foundation": { - "timestamp": "2025-10-12T16:17:52.488616", + "timestamp": "2025-10-20T09:17:21.719044", "data": { "technologies": [], "description": "", @@ -540,7 +540,7 @@ } }, "2025_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-12T16:17:53.071139", + "timestamp": "2025-10-20T09:16:20.762467", "data": { "technologies": [], "description": "", @@ -549,7 +549,7 @@ } }, "2025_debian": { - "timestamp": "2025-10-12T16:17:53.649938", + "timestamp": "2025-10-20T09:16:05.657687", "data": { "technologies": [], "description": "", @@ -558,7 +558,7 @@ } }, "2025_openms": { - "timestamp": "2025-10-12T16:17:54.231824", + "timestamp": "2025-10-20T09:16:43.410896", "data": { "technologies": [], "description": "", @@ -567,7 +567,7 @@ } }, "2025_cncf": { - "timestamp": "2025-10-12T16:17:54.808599", + "timestamp": "2025-10-20T09:15:58.135336", "data": { "technologies": [], "description": "", @@ -576,7 +576,7 @@ } }, "2025_the-julia-language": { - "timestamp": "2025-10-12T16:17:55.389455", + "timestamp": "2025-10-20T09:17:15.453661", "data": { "technologies": [], "description": "", @@ -585,7 +585,7 @@ } }, "2025_kotlin-foundation": { - "timestamp": "2025-10-12T16:17:55.968862", + "timestamp": "2025-10-20T09:15:43.058253", "data": { "technologies": [], "description": "", @@ -594,7 +594,7 @@ } }, "2025_tardis-rt-collaboration": { - "timestamp": "2025-10-12T16:17:56.549361", + "timestamp": "2025-10-20T09:16:45.284342", "data": { "technologies": [], "description": "", @@ -603,7 +603,7 @@ } }, "2025_zendalona": { - "timestamp": "2025-10-12T16:17:57.130842", + "timestamp": "2025-10-20T09:16:14.469402", "data": { "technologies": [], "description": "", @@ -612,7 +612,7 @@ } }, "2025_sagemath": { - "timestamp": "2025-10-12T16:17:57.708906", + "timestamp": "2025-10-20T09:16:11.332466", "data": { "technologies": [], "description": "", @@ -621,7 +621,7 @@ } }, "2025_fossasia-bg": { - "timestamp": "2025-10-12T16:17:58.287605", + "timestamp": "2025-10-20T09:16:56.610938", "data": { "technologies": [], "description": "", @@ -630,7 +630,7 @@ } }, "2025_wagtail": { - "timestamp": "2025-10-12T16:17:58.866882", + "timestamp": "2025-10-20T09:15:33.637861", "data": { "technologies": [], "description": "", @@ -639,7 +639,7 @@ } }, "2025_google-deepmind-sq": { - "timestamp": "2025-10-12T16:17:59.445172", + "timestamp": "2025-10-20T09:15:41.175506", "data": { "technologies": [], "description": "", @@ -648,7 +648,7 @@ } }, "2025_ccextractor-development": { - "timestamp": "2025-10-12T16:18:00.024125", + "timestamp": "2025-10-20T09:16:45.915111", "data": { "technologies": [], "description": "", @@ -657,7 +657,7 @@ } }, "2025_jenkins-wp": { - "timestamp": "2025-10-12T16:18:00.605667", + "timestamp": "2025-10-20T09:16:30.821962", "data": { "technologies": [], "description": "", @@ -666,7 +666,7 @@ } }, "2025_openafs": { - "timestamp": "2025-10-12T16:18:01.186198", + "timestamp": "2025-10-20T09:16:39.014201", "data": { "technologies": [], "description": "", @@ -675,7 +675,7 @@ } }, "2025_liquid-galaxy-project": { - "timestamp": "2025-10-12T16:18:01.763257", + "timestamp": "2025-10-20T09:15:32.384301", "data": { "technologies": [], "description": "", @@ -684,7 +684,7 @@ } }, "2025_api-dash": { - "timestamp": "2025-10-12T16:18:02.340444", + "timestamp": "2025-10-20T09:16:28.937012", "data": { "technologies": [], "description": "", @@ -693,7 +693,7 @@ } }, "2025_openastronomy": { - "timestamp": "2025-10-12T16:18:02.922113", + "timestamp": "2025-10-20T09:17:00.368660", "data": { "technologies": [], "description": "", @@ -702,7 +702,7 @@ } }, "2025_cgal-project": { - "timestamp": "2025-10-12T16:18:03.501276", + "timestamp": "2025-10-20T09:16:07.548123", "data": { "technologies": [], "description": "", @@ -711,7 +711,7 @@ } }, "2025_graphite": { - "timestamp": "2025-10-12T16:18:04.079077", + "timestamp": "2025-10-20T09:15:48.716298", "data": { "technologies": [], "description": "", @@ -720,7 +720,7 @@ } }, "2025_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-12T16:18:04.658789", + "timestamp": "2025-10-20T09:16:50.963995", "data": { "technologies": [], "description": "", @@ -729,7 +729,7 @@ } }, "2025_pal-robotics": { - "timestamp": "2025-10-12T16:18:05.239723", + "timestamp": "2025-10-20T09:16:12.584793", "data": { "technologies": [], "description": "", @@ -738,7 +738,7 @@ } }, "2025_dora-rs-tb": { - "timestamp": "2025-10-12T16:18:05.816487", + "timestamp": "2025-10-20T09:15:46.834807", "data": { "technologies": [], "description": "", @@ -747,7 +747,7 @@ } }, "2025_freifunk": { - "timestamp": "2025-10-12T16:18:06.393383", + "timestamp": "2025-10-20T09:16:10.072429", "data": { "technologies": [], "description": "", @@ -756,7 +756,7 @@ } }, "2025_pecan-project": { - "timestamp": "2025-10-12T16:18:06.972104", + "timestamp": "2025-10-20T09:15:49.976317", "data": { "technologies": [], "description": "", @@ -765,7 +765,7 @@ } }, "2025_humanai": { - "timestamp": "2025-10-12T16:18:07.552496", + "timestamp": "2025-10-20T09:15:43.684914", "data": { "technologies": [], "description": "", @@ -774,7 +774,7 @@ } }, "2025_gitlab": { - "timestamp": "2025-10-12T16:18:08.128831", + "timestamp": "2025-10-20T09:16:27.676767", "data": { "technologies": [], "description": "", @@ -783,7 +783,7 @@ } }, "2025_metabrainz-foundation-inc": { - "timestamp": "2025-10-12T16:18:08.708036", + "timestamp": "2025-10-20T09:16:34.582966", "data": { "technologies": [], "description": "", @@ -792,7 +792,7 @@ } }, "2025_sugar-labs": { - "timestamp": "2025-10-12T16:18:09.288206", + "timestamp": "2025-10-20T09:16:30.193873", "data": { "technologies": [], "description": "", @@ -801,7 +801,7 @@ } }, "2025_uramaki-lab": { - "timestamp": "2025-10-12T16:18:09.865214", + "timestamp": "2025-10-20T09:16:48.427912", "data": { "technologies": [], "description": "", @@ -810,7 +810,7 @@ } }, "2025_kde-community": { - "timestamp": "2025-10-12T16:18:10.442459", + "timestamp": "2025-10-20T09:16:44.658947", "data": { "technologies": [], "description": "", @@ -819,7 +819,7 @@ } }, "2025_pharo-consortium": { - "timestamp": "2025-10-12T16:18:11.020478", + "timestamp": "2025-10-20T09:16:03.778333", "data": { "technologies": [], "description": "", @@ -828,7 +828,7 @@ } }, "2025_fedora-project": { - "timestamp": "2025-10-12T16:18:11.598092", + "timestamp": "2025-10-20T09:17:12.934316", "data": { "technologies": [], "description": "", @@ -837,7 +837,7 @@ } }, "2025_criu": { - "timestamp": "2025-10-12T16:18:12.176698", + "timestamp": "2025-10-20T09:17:13.570091", "data": { "technologies": [], "description": "", @@ -846,7 +846,7 @@ } }, "2025_the-honeynet-project": { - "timestamp": "2025-10-12T16:18:12.756391", + "timestamp": "2025-10-20T09:17:21.091622", "data": { "technologies": [], "description": "", @@ -855,7 +855,7 @@ } }, "2025_kornia": { - "timestamp": "2025-10-12T16:18:13.336516", + "timestamp": "2025-10-20T09:17:22.344580", "data": { "technologies": [], "description": "", @@ -864,7 +864,7 @@ } }, "2025_gprmax": { - "timestamp": "2025-10-12T16:18:13.920687", + "timestamp": "2025-10-20T09:15:44.312490", "data": { "technologies": [], "description": "", @@ -873,7 +873,7 @@ } }, "2025_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-12T16:18:14.501786", + "timestamp": "2025-10-20T09:16:52.221057", "data": { "technologies": [], "description": "", @@ -882,7 +882,7 @@ } }, "2025_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-12T16:18:15.082600", + "timestamp": "2025-10-20T09:15:48.089099", "data": { "technologies": [], "description": "", @@ -891,7 +891,7 @@ } }, "2025_joomla": { - "timestamp": "2025-10-12T16:18:15.659564", + "timestamp": "2025-10-20T09:15:45.571215", "data": { "technologies": [], "description": "", @@ -900,7 +900,7 @@ } }, "2025_qc-devs": { - "timestamp": "2025-10-12T16:18:16.239993", + "timestamp": "2025-10-20T09:16:10.706799", "data": { "technologies": [], "description": "", @@ -909,7 +909,7 @@ } }, "2025_electron": { - "timestamp": "2025-10-12T16:18:16.824574", + "timestamp": "2025-10-20T09:15:27.990348", "data": { "technologies": [], "description": "", @@ -918,7 +918,7 @@ } }, "2025_sqlancer": { - "timestamp": "2025-10-12T16:18:17.404199", + "timestamp": "2025-10-20T09:17:19.204260", "data": { "technologies": [], "description": "", @@ -927,7 +927,7 @@ } }, "2025_the-netbsd-foundation": { - "timestamp": "2025-10-12T16:18:17.985455", + "timestamp": "2025-10-20T09:15:51.866951", "data": { "technologies": [], "description": "", @@ -936,7 +936,7 @@ } }, "2025_git": { - "timestamp": "2025-10-12T16:18:18.565028", + "timestamp": "2025-10-20T09:16:57.864522", "data": { "technologies": [], "description": "", @@ -945,7 +945,7 @@ } }, "2025_numfocus": { - "timestamp": "2025-10-12T16:18:19.142022", + "timestamp": "2025-10-20T09:16:28.310222", "data": { "technologies": [], "description": "", @@ -954,7 +954,7 @@ } }, "2025_open-robotics": { - "timestamp": "2025-10-12T16:18:19.717462", + "timestamp": "2025-10-20T09:16:47.799903", "data": { "technologies": [], "description": "", @@ -963,7 +963,7 @@ } }, "2025_the-p4-language-consortium": { - "timestamp": "2025-10-12T16:18:20.300567", + "timestamp": "2025-10-20T09:17:16.075258", "data": { "technologies": [], "description": "", @@ -972,7 +972,7 @@ } }, "2025_accord-project": { - "timestamp": "2025-10-12T16:18:20.879850", + "timestamp": "2025-10-20T09:17:16.702253", "data": { "technologies": [], "description": "", @@ -981,7 +981,7 @@ } }, "2025_the-linux-foundation": { - "timestamp": "2025-10-12T16:18:21.460663", + "timestamp": "2025-10-20T09:17:01.621555", "data": { "technologies": [], "description": "", @@ -990,7 +990,7 @@ } }, "2025_freecad": { - "timestamp": "2025-10-12T16:18:22.038898", + "timestamp": "2025-10-20T09:16:24.529504", "data": { "technologies": [], "description": "", @@ -999,7 +999,7 @@ } }, "2025_kro-kube-resource-orchestrator": { - "timestamp": "2025-10-12T16:18:22.622945", + "timestamp": "2025-10-20T09:15:52.493188", "data": { "technologies": [], "description": "", @@ -1008,7 +1008,7 @@ } }, "2025_rocketchat": { - "timestamp": "2025-10-12T16:18:23.200140", + "timestamp": "2025-10-20T09:16:36.508949", "data": { "technologies": [], "description": "", @@ -1017,7 +1017,7 @@ } }, "2025_jderobot": { - "timestamp": "2025-10-12T16:18:23.777751", + "timestamp": "2025-10-20T09:15:46.201330", "data": { "technologies": [], "description": "", @@ -1026,7 +1026,7 @@ } }, "2025_learning-equality": { - "timestamp": "2025-10-12T16:18:24.360312", + "timestamp": "2025-10-20T09:16:15.724587", "data": { "technologies": [], "description": "", @@ -1035,7 +1035,7 @@ } }, "2025_checkstyle": { - "timestamp": "2025-10-12T16:18:24.941571", + "timestamp": "2025-10-20T09:15:39.904742", "data": { "technologies": [], "description": "", @@ -1044,7 +1044,7 @@ } }, "2025_fortran-lang": { - "timestamp": "2025-10-12T16:18:25.518557", + "timestamp": "2025-10-20T09:15:39.279273", "data": { "technologies": [], "description": "", @@ -1053,7 +1053,7 @@ } }, "2025_chromium-lj": { - "timestamp": "2025-10-12T16:18:26.099511", + "timestamp": "2025-10-20T09:15:44.945014", "data": { "technologies": [], "description": "", @@ -1062,7 +1062,7 @@ } }, "2025_the-jpf-team-hg": { - "timestamp": "2025-10-12T16:18:26.679855", + "timestamp": "2025-10-20T09:16:06.919658", "data": { "technologies": [], "description": "", @@ -1071,7 +1071,7 @@ } }, "2025_wellcome-sanger-institute": { - "timestamp": "2025-10-12T16:18:27.264484", + "timestamp": "2025-10-20T09:16:01.266608", "data": { "technologies": [], "description": "", @@ -1080,7 +1080,7 @@ } }, "2025_gnome-foundation": { - "timestamp": "2025-10-12T16:18:27.843887", + "timestamp": "2025-10-20T09:15:37.402015", "data": { "technologies": [], "description": "", @@ -1089,7 +1089,7 @@ } }, "2025_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-12T16:18:28.426071", + "timestamp": "2025-10-20T09:16:31.449130", "data": { "technologies": [], "description": "", @@ -1098,7 +1098,7 @@ } }, "2025_invesalius": { - "timestamp": "2025-10-12T16:18:29.002477", + "timestamp": "2025-10-20T09:17:19.831014", "data": { "technologies": [], "description": "", @@ -1107,7 +1107,7 @@ } }, "2025_openvino-toolkit": { - "timestamp": "2025-10-12T16:18:29.585869", + "timestamp": "2025-10-20T09:16:47.176005", "data": { "technologies": [], "description": "", @@ -1116,7 +1116,7 @@ } }, "2025_opensuse-project": { - "timestamp": "2025-10-12T16:18:30.168314", + "timestamp": "2025-10-20T09:16:13.838370", "data": { "technologies": [], "description": "", @@ -1125,7 +1125,7 @@ } }, "2025_r-project-for-statistical-computing": { - "timestamp": "2025-10-12T16:18:30.748272", + "timestamp": "2025-10-20T09:16:42.779232", "data": { "technologies": [], "description": "", @@ -1134,7 +1134,7 @@ } }, "2025_gnu-image-manipulation-program": { - "timestamp": "2025-10-12T16:18:31.327580", + "timestamp": "2025-10-20T09:16:08.180015", "data": { "technologies": [], "description": "", @@ -1143,7 +1143,7 @@ } }, "2025_sympy": { - "timestamp": "2025-10-12T16:18:31.905172", + "timestamp": "2025-10-20T09:16:04.402221", "data": { "technologies": [], "description": "", @@ -1152,7 +1152,7 @@ } }, "2025_internet-archive": { - "timestamp": "2025-10-12T16:18:32.485387", + "timestamp": "2025-10-20T09:15:28.615185", "data": { "technologies": [], "description": "", @@ -1161,7 +1161,7 @@ } }, "2025_drupal-association": { - "timestamp": "2025-10-12T16:18:33.064100", + "timestamp": "2025-10-20T09:15:33.012708", "data": { "technologies": [], "description": "", @@ -1170,7 +1170,7 @@ } }, "2025_waycrate": { - "timestamp": "2025-10-12T16:18:33.648816", + "timestamp": "2025-10-20T09:16:59.115897", "data": { "technologies": [], "description": "", @@ -1179,7 +1179,7 @@ } }, "2025_prometheus-operator": { - "timestamp": "2025-10-12T16:18:34.232466", + "timestamp": "2025-10-20T09:16:06.291060", "data": { "technologies": [], "description": "", @@ -1188,7 +1188,7 @@ } }, "2025_stichting-su2": { - "timestamp": "2025-10-12T16:18:34.810857", + "timestamp": "2025-10-20T09:16:51.591802", "data": { "technologies": [], "description": "", @@ -1197,7 +1197,7 @@ } }, "2025_unikraft": { - "timestamp": "2025-10-12T16:18:35.389760", + "timestamp": "2025-10-20T09:17:09.783120", "data": { "technologies": [], "description": "", @@ -1206,7 +1206,7 @@ } }, "2025_dbpedia": { - "timestamp": "2025-10-12T16:18:35.986824", + "timestamp": "2025-10-20T09:15:59.385705", "data": { "technologies": [], "description": "", @@ -1215,7 +1215,7 @@ } }, "2025_webpack": { - "timestamp": "2025-10-12T16:18:36.566497", + "timestamp": "2025-10-20T09:16:59.740964", "data": { "technologies": [], "description": "", @@ -1224,7 +1224,7 @@ } }, "2025_openmrs": { - "timestamp": "2025-10-12T16:18:37.146610", + "timestamp": "2025-10-20T09:17:09.157633", "data": { "technologies": [], "description": "", @@ -1233,7 +1233,7 @@ } }, "2025_the-palisadoes-foundation": { - "timestamp": "2025-10-12T16:18:37.727436", + "timestamp": "2025-10-20T09:15:54.372783", "data": { "technologies": [], "description": "", @@ -1242,7 +1242,7 @@ } }, "2025_keploy": { - "timestamp": "2025-10-12T16:18:38.310658", + "timestamp": "2025-10-20T09:15:27.362323", "data": { "technologies": [], "description": "", @@ -1251,7 +1251,7 @@ } }, "2025_kiwix": { - "timestamp": "2025-10-12T16:18:38.887398", + "timestamp": "2025-10-20T09:16:54.104463", "data": { "technologies": [], "description": "", @@ -1260,7 +1260,7 @@ } }, "2025_libssh": { - "timestamp": "2025-10-12T16:18:39.467487", + "timestamp": "2025-10-20T09:15:49.346122", "data": { "technologies": [], "description": "", @@ -1269,7 +1269,7 @@ } }, "2025_mariadb": { - "timestamp": "2025-10-12T16:18:40.046667", + "timestamp": "2025-10-20T09:15:53.747912", "data": { "technologies": [], "description": "", @@ -1278,7 +1278,7 @@ } }, "2025_stear-group": { - "timestamp": "2025-10-12T16:18:40.627971", + "timestamp": "2025-10-20T09:16:01.892955", "data": { "technologies": [], "description": "", @@ -1287,7 +1287,7 @@ } }, "2025_sw360": { - "timestamp": "2025-10-12T16:18:41.210905", + "timestamp": "2025-10-20T09:16:11.958392", "data": { "technologies": [], "description": "", @@ -1296,7 +1296,7 @@ } }, "2025_open-transit-software-foundation": { - "timestamp": "2025-10-12T16:18:41.790805", + "timestamp": "2025-10-20T09:16:08.812065", "data": { "technologies": [], "description": "", @@ -1305,7 +1305,7 @@ } }, "2025_beagleboardorg": { - "timestamp": "2025-10-12T16:18:42.372746", + "timestamp": "2025-10-20T09:16:39.641710", "data": { "technologies": [], "description": "", @@ -1314,7 +1314,7 @@ } }, "2025_project-mesa": { - "timestamp": "2025-10-12T16:18:42.947357", + "timestamp": "2025-10-20T09:16:53.478253", "data": { "technologies": [], "description": "", @@ -1323,7 +1323,7 @@ } }, "2025_the-mifos-initiative": { - "timestamp": "2025-10-12T16:18:43.526477", + "timestamp": "2025-10-20T09:17:04.752166", "data": { "technologies": [], "description": "", @@ -1332,7 +1332,7 @@ } }, "2025_plone-foundation": { - "timestamp": "2025-10-12T16:18:44.107822", + "timestamp": "2025-10-20T09:15:29.241653", "data": { "technologies": [], "description": "", @@ -1341,7 +1341,7 @@ } }, "2025_ardupilot": { - "timestamp": "2025-10-12T16:18:44.686777", + "timestamp": "2025-10-20T09:16:03.152320", "data": { "technologies": [], "description": "", @@ -1350,7 +1350,7 @@ } }, "2025_lablua": { - "timestamp": "2025-10-12T16:18:45.270000", + "timestamp": "2025-10-20T09:16:35.880117", "data": { "technologies": [], "description": "", @@ -1359,7 +1359,7 @@ } }, "2025_chaoss": { - "timestamp": "2025-10-12T16:18:45.849067", + "timestamp": "2025-10-20T09:16:26.413303", "data": { "technologies": [], "description": "", @@ -1368,7 +1368,7 @@ } }, "2025_dart": { - "timestamp": "2025-10-12T16:18:46.426867", + "timestamp": "2025-10-20T09:16:37.135054", "data": { "technologies": [], "description": "", @@ -1377,7 +1377,7 @@ } }, "2025_the-rust-foundation": { - "timestamp": "2025-10-12T16:18:47.006407", + "timestamp": "2025-10-20T09:16:05.029267", "data": { "technologies": [], "description": "", @@ -1386,7 +1386,7 @@ } }, "2025_qemu": { - "timestamp": "2025-10-12T16:18:47.586047", + "timestamp": "2025-10-20T09:16:25.786157", "data": { "technologies": [], "description": "", @@ -1395,7 +1395,7 @@ } }, "2025_mbdyn": { - "timestamp": "2025-10-12T16:18:48.165811", + "timestamp": "2025-10-20T09:17:05.382671", "data": { "technologies": [], "description": "", @@ -1404,7 +1404,7 @@ } }, "2025_scummvm": { - "timestamp": "2025-10-12T16:18:48.745007", + "timestamp": "2025-10-20T09:15:34.891154", "data": { "technologies": [], "description": "", @@ -1413,7 +1413,7 @@ } }, "2025_brl-cad": { - "timestamp": "2025-10-12T16:18:49.320638", + "timestamp": "2025-10-20T09:17:08.532541", "data": { "technologies": [], "description": "", @@ -1422,7 +1422,7 @@ } }, "2025_incf": { - "timestamp": "2025-10-12T16:18:49.899103", + "timestamp": "2025-10-20T09:16:02.521085", "data": { "technologies": [], "description": "", @@ -1431,7 +1431,7 @@ } }, "2025_cern-hsf": { - "timestamp": "2025-10-12T16:18:50.481791", + "timestamp": "2025-10-20T09:15:50.604848", "data": { "technologies": [], "description": "", @@ -1440,7 +1440,7 @@ } }, "2025_open-climate-fix": { - "timestamp": "2025-10-12T16:18:51.075761", + "timestamp": "2025-10-20T09:16:29.567278", "data": { "technologies": [], "description": "", @@ -1449,7 +1449,7 @@ } }, "2025_jabref-ev": { - "timestamp": "2025-10-12T16:18:51.671781", + "timestamp": "2025-10-20T09:17:18.577766", "data": { "technologies": [], "description": "", @@ -1458,7 +1458,7 @@ } }, "2025_alaska": { - "timestamp": "2025-10-12T16:18:52.251331", + "timestamp": "2025-10-20T09:17:11.679823", "data": { "technologies": [], "description": "", @@ -1467,7 +1467,7 @@ } }, "2025_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-12T16:18:52.831302", + "timestamp": "2025-10-20T09:15:36.145998", "data": { "technologies": [], "description": "", @@ -1476,7 +1476,7 @@ } }, "2025_internet-health-report": { - "timestamp": "2025-10-12T16:18:53.411248", + "timestamp": "2025-10-20T09:15:56.885030", "data": { "technologies": [], "description": "", @@ -1485,7 +1485,7 @@ } }, "2025_apache-software-foundation": { - "timestamp": "2025-10-12T16:18:53.986406", + "timestamp": "2025-10-20T09:15:55.004559", "data": { "technologies": [], "description": "", @@ -1494,7 +1494,7 @@ } }, "2025_deepchem": { - "timestamp": "2025-10-12T16:18:54.562592", + "timestamp": "2025-10-20T09:15:31.129654", "data": { "technologies": [], "description": "", @@ -1503,7 +1503,7 @@ } }, "2025_the-tor-project": { - "timestamp": "2025-10-12T16:18:55.142110", + "timestamp": "2025-10-20T09:15:56.258948", "data": { "technologies": [], "description": "", @@ -1512,7 +1512,7 @@ } }, "2025_kubeflow": { - "timestamp": "2025-10-12T16:18:55.721279", + "timestamp": "2025-10-20T09:16:55.982623", "data": { "technologies": [], "description": "", @@ -1521,7 +1521,7 @@ } }, "2025_gnss-sdr": { - "timestamp": "2025-10-12T16:18:56.301914", + "timestamp": "2025-10-20T09:15:35.518396", "data": { "technologies": [], "description": "", @@ -1530,7 +1530,7 @@ } }, "2025_synfig": { - "timestamp": "2025-10-12T16:18:56.885351", + "timestamp": "2025-10-20T09:15:38.654018", "data": { "technologies": [], "description": "", @@ -1539,7 +1539,7 @@ } }, "2025_jax-and-keras": { - "timestamp": "2025-10-12T16:18:57.466592", + "timestamp": "2025-10-20T09:15:53.122399", "data": { "technologies": [], "description": "", @@ -1548,7 +1548,7 @@ } }, "2025_rizin": { - "timestamp": "2025-10-12T16:18:58.041548", + "timestamp": "2025-10-20T09:16:40.892741", "data": { "technologies": [], "description": "", @@ -1557,7 +1557,7 @@ } }, "2025_llvm-compiler-infrastructure": { - "timestamp": "2025-10-12T16:18:58.619511", + "timestamp": "2025-10-20T09:16:22.639050", "data": { "technologies": [], "description": "", @@ -1566,7 +1566,7 @@ } }, "2025_open-healthcare-network": { - "timestamp": "2025-10-12T16:18:59.199018", + "timestamp": "2025-10-20T09:16:16.982699", "data": { "technologies": [], "description": "", @@ -1575,7 +1575,7 @@ } }, "2025_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-12T16:18:59.832667", + "timestamp": "2025-10-20T09:17:14.199729", "data": { "technologies": [], "description": "", @@ -1584,7 +1584,7 @@ } }, "2025_ceph": { - "timestamp": "2025-10-12T16:19:00.407520", + "timestamp": "2025-10-20T09:17:03.498387", "data": { "technologies": [], "description": "", @@ -1593,7 +1593,7 @@ } }, "2025_neovim": { - "timestamp": "2025-10-12T16:19:00.985542", + "timestamp": "2025-10-20T09:16:17.611567", "data": { "technologies": [], "description": "", @@ -1602,7 +1602,7 @@ } }, "2025_zulip": { - "timestamp": "2025-10-12T16:19:01.563425", + "timestamp": "2025-10-20T09:15:40.543102", "data": { "technologies": [], "description": "", @@ -1611,7 +1611,7 @@ } }, "2025_gnu-radio": { - "timestamp": "2025-10-12T16:19:02.142118", + "timestamp": "2025-10-20T09:15:36.774507", "data": { "technologies": [], "description": "", @@ -1620,7 +1620,7 @@ } }, "2025_organic-maps": { - "timestamp": "2025-10-12T16:19:02.727098", + "timestamp": "2025-10-20T09:17:10.411944", "data": { "technologies": [], "description": "", @@ -1629,7 +1629,7 @@ } }, "2025_grame": { - "timestamp": "2025-10-12T16:19:03.307499", + "timestamp": "2025-10-20T09:17:07.284186", "data": { "technologies": [], "description": "", @@ -1638,7 +1638,7 @@ } }, "2025_mixxx": { - "timestamp": "2025-10-12T16:19:03.886948", + "timestamp": "2025-10-20T09:15:31.757200", "data": { "technologies": [], "description": "", @@ -1647,7 +1647,7 @@ } }, "2025_d-language-foundation": { - "timestamp": "2025-10-12T16:19:04.467221", + "timestamp": "2025-10-20T09:16:13.211834", "data": { "technologies": [], "description": "", @@ -1656,7 +1656,7 @@ } }, "2025_data-for-the-common-good": { - "timestamp": "2025-10-12T16:19:05.048583", + "timestamp": "2025-10-20T09:15:34.262966", "data": { "technologies": [], "description": "", @@ -1665,7 +1665,7 @@ } }, "2024_stdlib": { - "timestamp": "2025-10-12T16:19:05.795795", + "timestamp": "2025-10-20T09:18:20.348215", "data": { "technologies": [], "description": "", @@ -1674,7 +1674,7 @@ } }, "2024_fossasia-bg": { - "timestamp": "2025-10-12T16:19:06.378816", + "timestamp": "2025-10-20T09:17:27.640420", "data": { "technologies": [], "description": "", @@ -1683,7 +1683,7 @@ } }, "2024_prometheus-operator": { - "timestamp": "2025-10-12T16:19:06.956113", + "timestamp": "2025-10-20T09:17:57.129319", "data": { "technologies": [], "description": "", @@ -1692,7 +1692,7 @@ } }, "2024_mit-app-inventor": { - "timestamp": "2025-10-12T16:19:07.534018", + "timestamp": "2025-10-20T09:17:50.857816", "data": { "technologies": [], "description": "", @@ -1701,7 +1701,7 @@ } }, "2024_scummvm": { - "timestamp": "2025-10-12T16:19:08.112805", + "timestamp": "2025-10-20T09:17:49.603293", "data": { "technologies": [], "description": "", @@ -1710,7 +1710,7 @@ } }, "2024_fortran-lang": { - "timestamp": "2025-10-12T16:19:08.694826", + "timestamp": "2025-10-20T09:18:10.309429", "data": { "technologies": [], "description": "", @@ -1719,7 +1719,7 @@ } }, "2024_submitty": { - "timestamp": "2025-10-12T16:19:09.276215", + "timestamp": "2025-10-20T09:18:07.800795", "data": { "technologies": [], "description": "", @@ -1728,7 +1728,7 @@ } }, "2024_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-12T16:19:09.855073", + "timestamp": "2025-10-20T09:18:44.836104", "data": { "technologies": [], "description": "", @@ -1737,7 +1737,7 @@ } }, "2024_humanai": { - "timestamp": "2025-10-12T16:19:10.433384", + "timestamp": "2025-10-20T09:18:04.031884", "data": { "technologies": [], "description": "", @@ -1746,7 +1746,7 @@ } }, "2024_the-honeynet-project": { - "timestamp": "2025-10-12T16:19:11.011390", + "timestamp": "2025-10-20T09:18:31.658499", "data": { "technologies": [], "description": "", @@ -1755,7 +1755,7 @@ } }, "2024_jderobot": { - "timestamp": "2025-10-12T16:19:11.587367", + "timestamp": "2025-10-20T09:17:50.228803", "data": { "technologies": [], "description": "", @@ -1764,7 +1764,7 @@ } }, "2024_open-transit-software-foundation": { - "timestamp": "2025-10-12T16:19:12.168455", + "timestamp": "2025-10-20T09:18:27.871761", "data": { "technologies": [], "description": "", @@ -1773,7 +1773,7 @@ } }, "2024_synfig": { - "timestamp": "2025-10-12T16:19:12.747069", + "timestamp": "2025-10-20T09:19:03.060342", "data": { "technologies": [], "description": "", @@ -1782,7 +1782,7 @@ } }, "2024_fossology": { - "timestamp": "2025-10-12T16:19:13.329344", + "timestamp": "2025-10-20T09:18:27.245683", "data": { "technologies": [], "description": "", @@ -1791,7 +1791,7 @@ } }, "2024_opencv": { - "timestamp": "2025-10-12T16:19:13.907923", + "timestamp": "2025-10-20T09:17:31.397747", "data": { "technologies": [], "description": "", @@ -1800,7 +1800,7 @@ } }, "2024_asyncapi": { - "timestamp": "2025-10-12T16:19:14.485932", + "timestamp": "2025-10-20T09:18:05.288591", "data": { "technologies": [], "description": "", @@ -1809,7 +1809,7 @@ } }, "2024_open-climate-fix": { - "timestamp": "2025-10-12T16:19:15.067941", + "timestamp": "2025-10-20T09:18:57.401860", "data": { "technologies": [], "description": "", @@ -1818,7 +1818,7 @@ } }, "2024_nixos-foundation": { - "timestamp": "2025-10-12T16:19:15.647505", + "timestamp": "2025-10-20T09:17:48.977675", "data": { "technologies": [], "description": "", @@ -1827,7 +1827,7 @@ } }, "2024_organic-maps": { - "timestamp": "2025-10-12T16:19:16.228334", + "timestamp": "2025-10-20T09:18:09.678709", "data": { "technologies": [], "description": "", @@ -1836,7 +1836,7 @@ } }, "2024_gprmax": { - "timestamp": "2025-10-12T16:19:16.805394", + "timestamp": "2025-10-20T09:18:20.974663", "data": { "technologies": [], "description": "", @@ -1845,7 +1845,7 @@ } }, "2024_graphite": { - "timestamp": "2025-10-12T16:19:17.385775", + "timestamp": "2025-10-20T09:18:05.911385", "data": { "technologies": [], "description": "", @@ -1854,7 +1854,7 @@ } }, "2024_alaska": { - "timestamp": "2025-10-12T16:19:17.963726", + "timestamp": "2025-10-20T09:17:33.908130", "data": { "technologies": [], "description": "", @@ -1863,7 +1863,7 @@ } }, "2024_pecan-project": { - "timestamp": "2025-10-12T16:19:18.540753", + "timestamp": "2025-10-20T09:17:23.871393", "data": { "technologies": [], "description": "", @@ -1872,7 +1872,7 @@ } }, "2024_internet-archive": { - "timestamp": "2025-10-12T16:19:19.124705", + "timestamp": "2025-10-20T09:19:08.083752", "data": { "technologies": [], "description": "", @@ -1881,7 +1881,7 @@ } }, "2024_the-rust-foundation": { - "timestamp": "2025-10-12T16:19:19.702808", + "timestamp": "2025-10-20T09:17:44.585537", "data": { "technologies": [], "description": "", @@ -1890,7 +1890,7 @@ } }, "2024_mlpack": { - "timestamp": "2025-10-12T16:19:20.284345", + "timestamp": "2025-10-20T09:18:59.283926", "data": { "technologies": [], "description": "", @@ -1899,7 +1899,7 @@ } }, "2024_haskellorg": { - "timestamp": "2025-10-12T16:19:20.862423", + "timestamp": "2025-10-20T09:18:51.122232", "data": { "technologies": [], "description": "", @@ -1908,7 +1908,7 @@ } }, "2024_red-hen-lab": { - "timestamp": "2025-10-12T16:19:21.442630", + "timestamp": "2025-10-20T09:19:00.541384", "data": { "technologies": [], "description": "", @@ -1917,7 +1917,7 @@ } }, "2024_internet-health-report": { - "timestamp": "2025-10-12T16:19:22.021938", + "timestamp": "2025-10-20T09:18:35.434544", "data": { "technologies": [], "description": "", @@ -1926,7 +1926,7 @@ } }, "2024_robolectric": { - "timestamp": "2025-10-12T16:19:22.603118", + "timestamp": "2025-10-20T09:19:02.430413", "data": { "technologies": [], "description": "", @@ -1935,7 +1935,7 @@ } }, "2024_qc-devs": { - "timestamp": "2025-10-12T16:19:23.181069", + "timestamp": "2025-10-20T09:18:03.405694", "data": { "technologies": [], "description": "", @@ -1944,7 +1944,7 @@ } }, "2024_xmpp-standards-foundation": { - "timestamp": "2025-10-12T16:19:23.758248", + "timestamp": "2025-10-20T09:18:17.839892", "data": { "technologies": [], "description": "", @@ -1953,7 +1953,7 @@ } }, "2024_mbdyn": { - "timestamp": "2025-10-12T16:19:24.337485", + "timestamp": "2025-10-20T09:19:07.455773", "data": { "technologies": [], "description": "", @@ -1962,7 +1962,7 @@ } }, "2024_rizin": { - "timestamp": "2025-10-12T16:19:24.921320", + "timestamp": "2025-10-20T09:18:08.428533", "data": { "technologies": [], "description": "", @@ -1971,7 +1971,7 @@ } }, "2024_gnss-sdr": { - "timestamp": "2025-10-12T16:19:25.499642", + "timestamp": "2025-10-20T09:17:55.876707", "data": { "technologies": [], "description": "", @@ -1980,7 +1980,7 @@ } }, "2024_the-palisadoes-foundation": { - "timestamp": "2025-10-12T16:19:26.077817", + "timestamp": "2025-10-20T09:19:11.233691", "data": { "technologies": [], "description": "", @@ -1989,7 +1989,7 @@ } }, "2024_scala-center": { - "timestamp": "2025-10-12T16:19:26.657933", + "timestamp": "2025-10-20T09:19:25.093878", "data": { "technologies": [], "description": "", @@ -1998,7 +1998,7 @@ } }, "2024_rocketchat": { - "timestamp": "2025-10-12T16:19:27.239197", + "timestamp": "2025-10-20T09:17:25.756224", "data": { "technologies": [], "description": "", @@ -2007,7 +2007,7 @@ } }, "2024_numfocus": { - "timestamp": "2025-10-12T16:19:27.818702", + "timestamp": "2025-10-20T09:19:05.575955", "data": { "technologies": [], "description": "", @@ -2016,7 +2016,7 @@ } }, "2024_unikraft": { - "timestamp": "2025-10-12T16:19:28.396828", + "timestamp": "2025-10-20T09:18:39.199763", "data": { "technologies": [], "description": "", @@ -2025,7 +2025,7 @@ } }, "2024_circuitverseorg": { - "timestamp": "2025-10-12T16:19:28.976192", + "timestamp": "2025-10-20T09:19:13.111588", "data": { "technologies": [], "description": "", @@ -2034,7 +2034,7 @@ } }, "2024_sympy": { - "timestamp": "2025-10-12T16:19:29.556730", + "timestamp": "2025-10-20T09:18:38.570064", "data": { "technologies": [], "description": "", @@ -2043,7 +2043,7 @@ } }, "2024_blender-foundation": { - "timestamp": "2025-10-12T16:19:30.139665", + "timestamp": "2025-10-20T09:17:46.466486", "data": { "technologies": [], "description": "", @@ -2052,7 +2052,7 @@ } }, "2024_wagtail": { - "timestamp": "2025-10-12T16:19:30.716409", + "timestamp": "2025-10-20T09:17:38.921102", "data": { "technologies": [], "description": "", @@ -2061,7 +2061,7 @@ } }, "2024_sugar-labs": { - "timestamp": "2025-10-12T16:19:31.294447", + "timestamp": "2025-10-20T09:18:11.561596", "data": { "technologies": [], "description": "", @@ -2070,7 +2070,7 @@ } }, "2024_llvm-compiler-infrastructure": { - "timestamp": "2025-10-12T16:19:31.870660", + "timestamp": "2025-10-20T09:17:48.348634", "data": { "technologies": [], "description": "", @@ -2079,7 +2079,7 @@ } }, "2024_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-12T16:19:32.453816", + "timestamp": "2025-10-20T09:19:18.825792", "data": { "technologies": [], "description": "", @@ -2088,7 +2088,7 @@ } }, "2024_sagemath": { - "timestamp": "2025-10-12T16:19:33.030580", + "timestamp": "2025-10-20T09:18:36.058269", "data": { "technologies": [], "description": "", @@ -2097,7 +2097,7 @@ } }, "2024_purr-data": { - "timestamp": "2025-10-12T16:19:33.609120", + "timestamp": "2025-10-20T09:19:22.582257", "data": { "technologies": [], "description": "", @@ -2106,7 +2106,7 @@ } }, "2024_kubeflow": { - "timestamp": "2025-10-12T16:19:34.191924", + "timestamp": "2025-10-20T09:18:32.915560", "data": { "technologies": [], "description": "", @@ -2115,7 +2115,7 @@ } }, "2024_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-12T16:19:34.771837", + "timestamp": "2025-10-20T09:19:16.948399", "data": { "technologies": [], "description": "", @@ -2124,7 +2124,7 @@ } }, "2024_incf": { - "timestamp": "2025-10-12T16:19:35.347934", + "timestamp": "2025-10-20T09:19:08.713688", "data": { "technologies": [], "description": "", @@ -2133,7 +2133,7 @@ } }, "2024_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-12T16:19:35.927402", + "timestamp": "2025-10-20T09:18:34.178101", "data": { "technologies": [], "description": "", @@ -2142,7 +2142,7 @@ } }, "2024_tardis-rt-collaboration": { - "timestamp": "2025-10-12T16:19:36.509556", + "timestamp": "2025-10-20T09:17:32.651255", "data": { "technologies": [], "description": "", @@ -2151,7 +2151,7 @@ } }, "2024_the-p4-language-consortium": { - "timestamp": "2025-10-12T16:19:37.089555", + "timestamp": "2025-10-20T09:18:18.465241", "data": { "technologies": [], "description": "", @@ -2160,7 +2160,7 @@ } }, "2024_stratosphere-laboratory-czech-technical-university-in-prague": { - "timestamp": "2025-10-12T16:19:37.675596", + "timestamp": "2025-10-20T09:18:58.658642", "data": { "technologies": [], "description": "", @@ -2169,7 +2169,7 @@ } }, "2024_freetype": { - "timestamp": "2025-10-12T16:19:38.254599", + "timestamp": "2025-10-20T09:19:12.489679", "data": { "technologies": [], "description": "", @@ -2178,7 +2178,7 @@ } }, "2024_the-enigma-team": { - "timestamp": "2025-10-12T16:19:38.827951", + "timestamp": "2025-10-20T09:17:40.798615", "data": { "technologies": [], "description": "", @@ -2187,7 +2187,7 @@ } }, "2024_joplin": { - "timestamp": "2025-10-12T16:19:39.407574", + "timestamp": "2025-10-20T09:18:22.858378", "data": { "technologies": [], "description": "", @@ -2196,7 +2196,7 @@ } }, "2024_django-software-foundation-8o": { - "timestamp": "2025-10-12T16:19:39.989199", + "timestamp": "2025-10-20T09:18:33.550131", "data": { "technologies": [], "description": "", @@ -2205,7 +2205,7 @@ } }, "2024_open-robotics": { - "timestamp": "2025-10-12T16:19:40.567157", + "timestamp": "2025-10-20T09:17:55.250119", "data": { "technologies": [], "description": "", @@ -2214,7 +2214,7 @@ } }, "2024_the-jpf-team-hg": { - "timestamp": "2025-10-12T16:19:41.143571", + "timestamp": "2025-10-20T09:19:13.737520", "data": { "technologies": [], "description": "", @@ -2223,7 +2223,7 @@ } }, "2024_gnu-octave": { - "timestamp": "2025-10-12T16:19:41.735100", + "timestamp": "2025-10-20T09:18:53.001176", "data": { "technologies": [], "description": "", @@ -2232,7 +2232,7 @@ } }, "2024_the-freebsd-project": { - "timestamp": "2025-10-12T16:19:42.333801", + "timestamp": "2025-10-20T09:18:14.074533", "data": { "technologies": [], "description": "", @@ -2241,7 +2241,7 @@ } }, "2024_dart": { - "timestamp": "2025-10-12T16:19:42.913849", + "timestamp": "2025-10-20T09:18:39.826654", "data": { "technologies": [], "description": "", @@ -2250,7 +2250,7 @@ } }, "2024_deepchem": { - "timestamp": "2025-10-12T16:19:43.496537", + "timestamp": "2025-10-20T09:17:28.263809", "data": { "technologies": [], "description": "", @@ -2259,7 +2259,7 @@ } }, "2024_jabref-ev": { - "timestamp": "2025-10-12T16:19:44.081513", + "timestamp": "2025-10-20T09:18:19.093925", "data": { "technologies": [], "description": "", @@ -2268,7 +2268,7 @@ } }, "2024_beagleboardorg": { - "timestamp": "2025-10-12T16:19:44.657183", + "timestamp": "2025-10-20T09:18:15.956670", "data": { "technologies": [], "description": "", @@ -2277,7 +2277,7 @@ } }, "2024_python-software-foundation": { - "timestamp": "2025-10-12T16:19:45.233027", + "timestamp": "2025-10-20T09:18:19.721437", "data": { "technologies": [], "description": "", @@ -2286,7 +2286,7 @@ } }, "2024_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-12T16:19:45.813527", + "timestamp": "2025-10-20T09:19:01.172230", "data": { "technologies": [], "description": "", @@ -2295,7 +2295,7 @@ } }, "2024_sktime": { - "timestamp": "2025-10-12T16:19:46.398855", + "timestamp": "2025-10-20T09:18:02.144004", "data": { "technologies": [], "description": "", @@ -2304,7 +2304,7 @@ } }, "2024_ardupilot": { - "timestamp": "2025-10-12T16:19:46.974977", + "timestamp": "2025-10-20T09:19:03.689728", "data": { "technologies": [], "description": "", @@ -2313,7 +2313,7 @@ } }, "2024_neutralinojs": { - "timestamp": "2025-10-12T16:19:47.555302", + "timestamp": "2025-10-20T09:18:54.888547", "data": { "technologies": [], "description": "", @@ -2322,7 +2322,7 @@ } }, "2024_lablua": { - "timestamp": "2025-10-12T16:19:48.133933", + "timestamp": "2025-10-20T09:18:31.002469", "data": { "technologies": [], "description": "", @@ -2331,7 +2331,7 @@ } }, "2024_scalable-parallel-computing-laboratory": { - "timestamp": "2025-10-12T16:19:48.716173", + "timestamp": "2025-10-20T09:17:24.499561", "data": { "technologies": [], "description": "", @@ -2340,7 +2340,7 @@ } }, "2024_openrefine-j0": { - "timestamp": "2025-10-12T16:19:49.295215", + "timestamp": "2025-10-20T09:18:54.262506", "data": { "technologies": [], "description": "", @@ -2349,7 +2349,7 @@ } }, "2024_gnome-foundation": { - "timestamp": "2025-10-12T16:19:49.878321", + "timestamp": "2025-10-20T09:18:25.364267", "data": { "technologies": [], "description": "", @@ -2358,7 +2358,7 @@ } }, "2024_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-12T16:19:50.457136", + "timestamp": "2025-10-20T09:18:30.378482", "data": { "technologies": [], "description": "", @@ -2367,7 +2367,7 @@ } }, "2024_ioos": { - "timestamp": "2025-10-12T16:19:51.033607", + "timestamp": "2025-10-20T09:17:43.949128", "data": { "technologies": [], "description": "", @@ -2376,7 +2376,7 @@ } }, "2024_rtems-project": { - "timestamp": "2025-10-12T16:19:51.612798", + "timestamp": "2025-10-20T09:18:21.599891", "data": { "technologies": [], "description": "", @@ -2385,7 +2385,7 @@ } }, "2024_uramaki-lab": { - "timestamp": "2025-10-12T16:19:52.191873", + "timestamp": "2025-10-20T09:17:27.013457", "data": { "technologies": [], "description": "", @@ -2394,7 +2394,7 @@ } }, "2024_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-12T16:19:52.772409", + "timestamp": "2025-10-20T09:18:49.863356", "data": { "technologies": [], "description": "", @@ -2403,7 +2403,7 @@ } }, "2024_gnu-project": { - "timestamp": "2025-10-12T16:19:53.352958", + "timestamp": "2025-10-20T09:17:41.436678", "data": { "technologies": [], "description": "", @@ -2412,7 +2412,7 @@ } }, "2024_libssh": { - "timestamp": "2025-10-12T16:19:53.932295", + "timestamp": "2025-10-20T09:19:09.341224", "data": { "technologies": [], "description": "", @@ -2421,7 +2421,7 @@ } }, "2024_the-netbsd-foundation": { - "timestamp": "2025-10-12T16:19:54.509571", + "timestamp": "2025-10-20T09:18:26.616835", "data": { "technologies": [], "description": "", @@ -2430,7 +2430,7 @@ } }, "2024_data-for-the-common-good": { - "timestamp": "2025-10-12T16:19:55.086746", + "timestamp": "2025-10-20T09:18:00.257838", "data": { "technologies": [], "description": "", @@ -2439,7 +2439,7 @@ } }, "2024_mixxx": { - "timestamp": "2025-10-12T16:19:55.666481", + "timestamp": "2025-10-20T09:18:15.329956", "data": { "technologies": [], "description": "", @@ -2448,7 +2448,7 @@ } }, "2024_jitsi": { - "timestamp": "2025-10-12T16:19:56.243191", + "timestamp": "2025-10-20T09:17:54.622975", "data": { "technologies": [], "description": "", @@ -2457,7 +2457,7 @@ } }, "2024_videolan": { - "timestamp": "2025-10-12T16:19:56.819718", + "timestamp": "2025-10-20T09:18:29.752877", "data": { "technologies": [], "description": "", @@ -2466,7 +2466,7 @@ } }, "2024_kolibrios-project-team": { - "timestamp": "2025-10-12T16:19:57.406690", + "timestamp": "2025-10-20T09:19:20.703882", "data": { "technologies": [], "description": "", @@ -2475,7 +2475,7 @@ } }, "2024_keploy": { - "timestamp": "2025-10-12T16:19:57.985120", + "timestamp": "2025-10-20T09:17:56.504603", "data": { "technologies": [], "description": "", @@ -2484,7 +2484,7 @@ } }, "2024_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-12T16:19:58.566922", + "timestamp": "2025-10-20T09:17:37.666488", "data": { "technologies": [], "description": "", @@ -2493,7 +2493,7 @@ } }, "2024_zendalona": { - "timestamp": "2025-10-12T16:19:59.151177", + "timestamp": "2025-10-20T09:18:32.285468", "data": { "technologies": [], "description": "", @@ -2502,7 +2502,7 @@ } }, "2024_libvirt": { - "timestamp": "2025-10-12T16:19:59.736799", + "timestamp": "2025-10-20T09:18:43.582087", "data": { "technologies": [], "description": "", @@ -2511,7 +2511,7 @@ } }, "2024_learning-equality": { - "timestamp": "2025-10-12T16:20:00.316212", + "timestamp": "2025-10-20T09:17:30.772385", "data": { "technologies": [], "description": "", @@ -2520,7 +2520,7 @@ } }, "2024_city-of-boston": { - "timestamp": "2025-10-12T16:20:00.898870", + "timestamp": "2025-10-20T09:18:52.377254", "data": { "technologies": [], "description": "", @@ -2529,7 +2529,7 @@ } }, "2024_cern-hsf": { - "timestamp": "2025-10-12T16:20:01.479775", + "timestamp": "2025-10-20T09:18:48.609558", "data": { "technologies": [], "description": "", @@ -2538,7 +2538,7 @@ } }, "2024_inkscape": { - "timestamp": "2025-10-12T16:20:02.061115", + "timestamp": "2025-10-20T09:19:18.197618", "data": { "technologies": [], "description": "", @@ -2547,7 +2547,7 @@ } }, "2024_opensuse-project": { - "timestamp": "2025-10-12T16:20:02.639069", + "timestamp": "2025-10-20T09:19:01.801257", "data": { "technologies": [], "description": "", @@ -2556,7 +2556,7 @@ } }, "2024_kde-community": { - "timestamp": "2025-10-12T16:20:03.220026", + "timestamp": "2025-10-20T09:19:04.324176", "data": { "technologies": [], "description": "", @@ -2565,7 +2565,7 @@ } }, "2024_json-schema": { - "timestamp": "2025-10-12T16:20:03.795911", + "timestamp": "2025-10-20T09:18:06.542900", "data": { "technologies": [], "description": "", @@ -2574,7 +2574,7 @@ } }, "2024_gnu-image-manipulation-program": { - "timestamp": "2025-10-12T16:20:04.372335", + "timestamp": "2025-10-20T09:17:52.112468", "data": { "technologies": [], "description": "", @@ -2583,7 +2583,7 @@ } }, "2024_project-mesa": { - "timestamp": "2025-10-12T16:20:04.956658", + "timestamp": "2025-10-20T09:19:10.606255", "data": { "technologies": [], "description": "", @@ -2592,7 +2592,7 @@ } }, "2024_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-12T16:20:05.542670", + "timestamp": "2025-10-20T09:18:44.208156", "data": { "technologies": [], "description": "", @@ -2601,7 +2601,7 @@ } }, "2024_omegaup": { - "timestamp": "2025-10-12T16:20:06.124001", + "timestamp": "2025-10-20T09:18:02.769425", "data": { "technologies": [], "description": "", @@ -2610,7 +2610,7 @@ } }, "2024_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-12T16:20:06.784387", + "timestamp": "2025-10-20T09:19:15.687546", "data": { "technologies": [], "description": "", @@ -2619,7 +2619,7 @@ } }, "2024_openelis-global": { - "timestamp": "2025-10-12T16:20:07.363031", + "timestamp": "2025-10-20T09:19:04.949493", "data": { "technologies": [], "description": "", @@ -2628,7 +2628,7 @@ } }, "2024_uc-ospo": { - "timestamp": "2025-10-12T16:20:07.942379", + "timestamp": "2025-10-20T09:18:46.718088", "data": { "technologies": [], "description": "", @@ -2637,7 +2637,7 @@ } }, "2024_stichting-su2": { - "timestamp": "2025-10-12T16:20:08.519464", + "timestamp": "2025-10-20T09:18:01.515846", "data": { "technologies": [], "description": "", @@ -2646,7 +2646,7 @@ } }, "2024_invesalius": { - "timestamp": "2025-10-12T16:20:09.101732", + "timestamp": "2025-10-20T09:18:25.989592", "data": { "technologies": [], "description": "", @@ -2655,7 +2655,7 @@ } }, "2024_moveit": { - "timestamp": "2025-10-12T16:20:09.679299", + "timestamp": "2025-10-20T09:17:47.722289", "data": { "technologies": [], "description": "", @@ -2664,7 +2664,7 @@ } }, "2024_flare": { - "timestamp": "2025-10-12T16:20:10.257493", + "timestamp": "2025-10-20T09:18:37.316535", "data": { "technologies": [], "description": "", @@ -2673,7 +2673,7 @@ } }, "2024_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-12T16:20:10.837440", + "timestamp": "2025-10-20T09:18:50.492129", "data": { "technologies": [], "description": "", @@ -2682,7 +2682,7 @@ } }, "2024_drupal-association": { - "timestamp": "2025-10-12T16:20:11.421404", + "timestamp": "2025-10-20T09:18:09.054864", "data": { "technologies": [], "description": "", @@ -2691,7 +2691,7 @@ } }, "2024_c2si": { - "timestamp": "2025-10-12T16:20:12.000809", + "timestamp": "2025-10-20T09:17:32.023761", "data": { "technologies": [], "description": "", @@ -2700,7 +2700,7 @@ } }, "2024_the-linux-foundation": { - "timestamp": "2025-10-12T16:20:12.577349", + "timestamp": "2025-10-20T09:18:42.957735", "data": { "technologies": [], "description": "", @@ -2709,7 +2709,7 @@ } }, "2024_grame": { - "timestamp": "2025-10-12T16:20:13.154691", + "timestamp": "2025-10-20T09:19:11.861273", "data": { "technologies": [], "description": "", @@ -2718,7 +2718,7 @@ } }, "2024_swift": { - "timestamp": "2025-10-12T16:20:13.730547", + "timestamp": "2025-10-20T09:19:21.958349", "data": { "technologies": [], "description": "", @@ -2727,7 +2727,7 @@ } }, "2024_checkstyle": { - "timestamp": "2025-10-12T16:20:14.309360", + "timestamp": "2025-10-20T09:17:28.888107", "data": { "technologies": [], "description": "", @@ -2736,7 +2736,7 @@ } }, "2024_metabrainz-foundation-inc": { - "timestamp": "2025-10-12T16:20:14.891998", + "timestamp": "2025-10-20T09:18:40.452131", "data": { "technologies": [], "description": "", @@ -2745,7 +2745,7 @@ } }, "2024_aboutcode": { - "timestamp": "2025-10-12T16:20:15.472889", + "timestamp": "2025-10-20T09:18:49.240259", "data": { "technologies": [], "description": "", @@ -2754,7 +2754,7 @@ } }, "2024_geomscale": { - "timestamp": "2025-10-12T16:20:16.055815", + "timestamp": "2025-10-20T09:17:30.142307", "data": { "technologies": [], "description": "", @@ -2763,7 +2763,7 @@ } }, "2024_open-chromosome-collective": { - "timestamp": "2025-10-12T16:20:16.636979", + "timestamp": "2025-10-20T09:17:52.740205", "data": { "technologies": [], "description": "", @@ -2772,7 +2772,7 @@ } }, "2024_eunomia-bpf": { - "timestamp": "2025-10-12T16:20:17.217300", + "timestamp": "2025-10-20T09:18:58.030144", "data": { "technologies": [], "description": "", @@ -2781,7 +2781,7 @@ } }, "2024_datenlord-6z": { - "timestamp": "2025-10-12T16:20:17.797392", + "timestamp": "2025-10-20T09:17:35.785742", "data": { "technologies": [], "description": "", @@ -2790,7 +2790,7 @@ } }, "2024_api-dash": { - "timestamp": "2025-10-12T16:20:18.376920", + "timestamp": "2025-10-20T09:18:24.110201", "data": { "technologies": [], "description": "", @@ -2799,7 +2799,7 @@ } }, "2024_oppia-foundation": { - "timestamp": "2025-10-12T16:20:18.958472", + "timestamp": "2025-10-20T09:17:29.513035", "data": { "technologies": [], "description": "", @@ -2808,7 +2808,7 @@ } }, "2024_dbpedia": { - "timestamp": "2025-10-12T16:20:19.540617", + "timestamp": "2025-10-20T09:18:42.330182", "data": { "technologies": [], "description": "", @@ -2817,7 +2817,7 @@ } }, "2024_criu": { - "timestamp": "2025-10-12T16:20:20.115940", + "timestamp": "2025-10-20T09:18:45.464795", "data": { "technologies": [], "description": "", @@ -2826,7 +2826,7 @@ } }, "2024_brl-cad": { - "timestamp": "2025-10-12T16:20:20.693763", + "timestamp": "2025-10-20T09:17:33.281010", "data": { "technologies": [], "description": "", @@ -2835,7 +2835,7 @@ } }, "2024_ceph": { - "timestamp": "2025-10-12T16:20:21.270618", + "timestamp": "2025-10-20T09:17:34.533767", "data": { "technologies": [], "description": "", @@ -2844,7 +2844,7 @@ } }, "2024_openvino-toolkit": { - "timestamp": "2025-10-12T16:20:21.846986", + "timestamp": "2025-10-20T09:17:42.062878", "data": { "technologies": [], "description": "", @@ -2853,7 +2853,7 @@ } }, "2024_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-12T16:20:22.428303", + "timestamp": "2025-10-20T09:19:16.317941", "data": { "technologies": [], "description": "", @@ -2862,7 +2862,7 @@ } }, "2024_openmrs": { - "timestamp": "2025-10-12T16:20:23.006473", + "timestamp": "2025-10-20T09:19:06.203525", "data": { "technologies": [], "description": "", @@ -2871,7 +2871,7 @@ } }, "2024_aossie": { - "timestamp": "2025-10-12T16:20:23.587545", + "timestamp": "2025-10-20T09:17:36.412528", "data": { "technologies": [], "description": "", @@ -2880,7 +2880,7 @@ } }, "2024_open-healthcare-network": { - "timestamp": "2025-10-12T16:20:24.167488", + "timestamp": "2025-10-20T09:17:25.125812", "data": { "technologies": [], "description": "", @@ -2889,7 +2889,7 @@ } }, "2024_wikimedia-foundation-nd": { - "timestamp": "2025-10-12T16:20:24.750294", + "timestamp": "2025-10-20T09:17:40.173131", "data": { "technologies": [], "description": "", @@ -2898,7 +2898,7 @@ } }, "2024_zulip": { - "timestamp": "2025-10-12T16:20:25.331199", + "timestamp": "2025-10-20T09:19:14.366762", "data": { "technologies": [], "description": "", @@ -2907,7 +2907,7 @@ } }, "2024_freecad": { - "timestamp": "2025-10-12T16:20:25.916712", + "timestamp": "2025-10-20T09:18:59.912573", "data": { "technologies": [], "description": "", @@ -2916,7 +2916,7 @@ } }, "2024_eclipse-foundation": { - "timestamp": "2025-10-12T16:20:26.494582", + "timestamp": "2025-10-20T09:19:23.836951", "data": { "technologies": [], "description": "", @@ -2925,7 +2925,7 @@ } }, "2024_open-chemistry": { - "timestamp": "2025-10-12T16:20:27.074969", + "timestamp": "2025-10-20T09:19:21.332191", "data": { "technologies": [], "description": "", @@ -2934,7 +2934,7 @@ } }, "2024_chips-alliance": { - "timestamp": "2025-10-12T16:20:27.653179", + "timestamp": "2025-10-20T09:17:47.094650", "data": { "technologies": [], "description": "", @@ -2943,7 +2943,7 @@ } }, "2024_mautic": { - "timestamp": "2025-10-12T16:20:28.233203", + "timestamp": "2025-10-20T09:18:12.817536", "data": { "technologies": [], "description": "", @@ -2952,7 +2952,7 @@ } }, "2024_git": { - "timestamp": "2025-10-12T16:20:28.813075", + "timestamp": "2025-10-20T09:17:39.547960", "data": { "technologies": [], "description": "", @@ -2961,7 +2961,7 @@ } }, "2024_the-mifos-initiative": { - "timestamp": "2025-10-12T16:20:29.393439", + "timestamp": "2025-10-20T09:18:55.517798", "data": { "technologies": [], "description": "", @@ -2970,7 +2970,7 @@ } }, "2024_cloudcv": { - "timestamp": "2025-10-12T16:20:29.975261", + "timestamp": "2025-10-20T09:17:26.385973", "data": { "technologies": [], "description": "", @@ -2979,7 +2979,7 @@ } }, "2024_openwisp": { - "timestamp": "2025-10-12T16:20:30.559811", + "timestamp": "2025-10-20T09:17:38.293884", "data": { "technologies": [], "description": "", @@ -2988,7 +2988,7 @@ } }, "2024_ffmpeg": { - "timestamp": "2025-10-12T16:20:31.135851", + "timestamp": "2025-10-20T09:19:19.449328", "data": { "technologies": [], "description": "", @@ -2997,7 +2997,7 @@ } }, "2024_debian": { - "timestamp": "2025-10-12T16:20:31.716083", + "timestamp": "2025-10-20T09:17:45.214438", "data": { "technologies": [], "description": "", @@ -3006,7 +3006,7 @@ } }, "2024_camicroscope": { - "timestamp": "2025-10-12T16:20:32.311046", + "timestamp": "2025-10-20T09:18:14.704818", "data": { "technologies": [], "description": "", @@ -3015,7 +3015,7 @@ } }, "2024_electron": { - "timestamp": "2025-10-12T16:20:32.890169", + "timestamp": "2025-10-20T09:17:59.006558", "data": { "technologies": [], "description": "", @@ -3024,7 +3024,7 @@ } }, "2024_accord-project": { - "timestamp": "2025-10-12T16:20:33.466951", + "timestamp": "2025-10-20T09:17:53.995112", "data": { "technologies": [], "description": "", @@ -3033,7 +3033,7 @@ } }, "2024_chromium-lj": { - "timestamp": "2025-10-12T16:20:34.044783", + "timestamp": "2025-10-20T09:19:24.463535", "data": { "technologies": [], "description": "", @@ -3042,7 +3042,7 @@ } }, "2024_aflplusplus": { - "timestamp": "2025-10-12T16:20:34.624411", + "timestamp": "2025-10-20T09:18:37.945564", "data": { "technologies": [], "description": "", @@ -3051,7 +3051,7 @@ } }, "2024_ankidroid": { - "timestamp": "2025-10-12T16:20:35.212291", + "timestamp": "2025-10-20T09:19:14.989644", "data": { "technologies": [], "description": "", @@ -3060,7 +3060,7 @@ } }, "2024_haiku": { - "timestamp": "2025-10-12T16:20:35.790383", + "timestamp": "2025-10-20T09:18:16.583100", "data": { "technologies": [], "description": "", @@ -3069,7 +3069,7 @@ } }, "2024_plone-foundation": { - "timestamp": "2025-10-12T16:20:36.377990", + "timestamp": "2025-10-20T09:18:34.807179", "data": { "technologies": [], "description": "", @@ -3078,7 +3078,7 @@ } }, "2024_mariadb": { - "timestamp": "2025-10-12T16:20:36.954557", + "timestamp": "2025-10-20T09:18:24.737399", "data": { "technologies": [], "description": "", @@ -3087,7 +3087,7 @@ } }, "2024_cgal-project": { - "timestamp": "2025-10-12T16:20:37.533967", + "timestamp": "2025-10-20T09:19:06.828862", "data": { "technologies": [], "description": "", @@ -3096,7 +3096,7 @@ } }, "2024_the-julia-language": { - "timestamp": "2025-10-12T16:20:38.115652", + "timestamp": "2025-10-20T09:18:56.772671", "data": { "technologies": [], "description": "", @@ -3105,7 +3105,7 @@ } }, "2024_webpack": { - "timestamp": "2025-10-12T16:20:38.693003", + "timestamp": "2025-10-20T09:17:37.038931", "data": { "technologies": [], "description": "", @@ -3114,7 +3114,7 @@ } }, "2024_owasp-foundation": { - "timestamp": "2025-10-12T16:20:39.275330", + "timestamp": "2025-10-20T09:18:00.890070", "data": { "technologies": [], "description": "", @@ -3123,7 +3123,7 @@ } }, "2024_liquid-galaxy-project": { - "timestamp": "2025-10-12T16:20:39.852680", + "timestamp": "2025-10-20T09:18:47.980430", "data": { "technologies": [], "description": "", @@ -3132,7 +3132,7 @@ } }, "2024_jenkins-wp": { - "timestamp": "2025-10-12T16:20:40.434129", + "timestamp": "2025-10-20T09:17:51.483042", "data": { "technologies": [], "description": "", @@ -3141,7 +3141,7 @@ } }, "2024_cncf": { - "timestamp": "2025-10-12T16:20:41.016124", + "timestamp": "2025-10-20T09:18:12.189035", "data": { "technologies": [], "description": "", @@ -3150,7 +3150,7 @@ } }, "2024_polypheny": { - "timestamp": "2025-10-12T16:20:41.590409", + "timestamp": "2025-10-20T09:19:23.210307", "data": { "technologies": [], "description": "", @@ -3159,7 +3159,7 @@ } }, "2024_musescore": { - "timestamp": "2025-10-12T16:20:42.171351", + "timestamp": "2025-10-20T09:18:36.688322", "data": { "technologies": [], "description": "", @@ -3168,7 +3168,7 @@ } }, "2024_postgresql": { - "timestamp": "2025-10-12T16:20:42.752714", + "timestamp": "2025-10-20T09:17:59.631600", "data": { "technologies": [], "description": "", @@ -3177,7 +3177,7 @@ } }, "2024_unicode-inc": { - "timestamp": "2025-10-12T16:20:43.335084", + "timestamp": "2025-10-20T09:18:22.227561", "data": { "technologies": [], "description": "", @@ -3186,7 +3186,7 @@ } }, "2024_kubevirt": { - "timestamp": "2025-10-12T16:20:43.913652", + "timestamp": "2025-10-20T09:18:28.499987", "data": { "technologies": [], "description": "", @@ -3195,7 +3195,7 @@ } }, "2024_wellcome-sanger-institute": { - "timestamp": "2025-10-12T16:20:44.495588", + "timestamp": "2025-10-20T09:18:53.631091", "data": { "technologies": [], "description": "", @@ -3204,7 +3204,7 @@ } }, "2024_international-catrobat-association": { - "timestamp": "2025-10-12T16:20:45.077000", + "timestamp": "2025-10-20T09:17:43.318930", "data": { "technologies": [], "description": "", @@ -3213,7 +3213,7 @@ } }, "2024_apache-software-foundation": { - "timestamp": "2025-10-12T16:20:45.654929", + "timestamp": "2025-10-20T09:18:46.095673", "data": { "technologies": [], "description": "", @@ -3222,7 +3222,7 @@ } }, "2024_open-science-initiative-for-perfusion-imaging": { - "timestamp": "2025-10-12T16:20:46.235297", + "timestamp": "2025-10-20T09:18:41.704215", "data": { "technologies": [], "description": "", @@ -3231,7 +3231,7 @@ } }, "2024_openastronomy": { - "timestamp": "2025-10-12T16:20:46.811330", + "timestamp": "2025-10-20T09:19:09.977226", "data": { "technologies": [], "description": "", @@ -3240,7 +3240,7 @@ } }, "2024_nightwatchjs": { - "timestamp": "2025-10-12T16:20:47.395296", + "timestamp": "2025-10-20T09:18:17.213371", "data": { "technologies": [], "description": "", @@ -3249,7 +3249,7 @@ } }, "2024_waycrate": { - "timestamp": "2025-10-12T16:20:47.974229", + "timestamp": "2025-10-20T09:18:51.749521", "data": { "technologies": [], "description": "", @@ -3258,7 +3258,7 @@ } }, "2024_libreoffice": { - "timestamp": "2025-10-12T16:20:48.552928", + "timestamp": "2025-10-20T09:18:56.145078", "data": { "technologies": [], "description": "", @@ -3267,7 +3267,7 @@ } }, "2024_ccextractor-development": { - "timestamp": "2025-10-12T16:20:49.138416", + "timestamp": "2025-10-20T09:18:04.658558", "data": { "technologies": [], "description": "", @@ -3276,7 +3276,7 @@ } }, "2024_openstreetmap": { - "timestamp": "2025-10-12T16:20:49.716966", + "timestamp": "2025-10-20T09:19:20.076622", "data": { "technologies": [], "description": "", @@ -3285,7 +3285,7 @@ } }, "2024_metacall": { - "timestamp": "2025-10-12T16:20:50.296389", + "timestamp": "2025-10-20T09:18:47.349125", "data": { "technologies": [], "description": "", @@ -3294,7 +3294,7 @@ } }, "2024_lappis": { - "timestamp": "2025-10-12T16:20:50.875113", + "timestamp": "2025-10-20T09:17:42.689753", "data": { "technologies": [], "description": "", @@ -3303,7 +3303,7 @@ } }, "2024_stear-group": { - "timestamp": "2025-10-12T16:20:51.457730", + "timestamp": "2025-10-20T09:18:07.172960", "data": { "technologies": [], "description": "", @@ -3312,7 +3312,7 @@ } }, "2024_apertium": { - "timestamp": "2025-10-12T16:20:52.033812", + "timestamp": "2025-10-20T09:17:57.755164", "data": { "technologies": [], "description": "", @@ -3321,7 +3321,7 @@ } }, "2024_kotlin-foundation": { - "timestamp": "2025-10-12T16:20:52.612719", + "timestamp": "2025-10-20T09:18:29.126417", "data": { "technologies": [], "description": "", @@ -3330,7 +3330,7 @@ } }, "2024_librecube-initiative": { - "timestamp": "2025-10-12T16:20:53.189436", + "timestamp": "2025-10-20T09:18:41.078045", "data": { "technologies": [], "description": "", @@ -3339,7 +3339,7 @@ } }, "2024_cvat": { - "timestamp": "2025-10-12T16:20:53.770692", + "timestamp": "2025-10-20T09:18:10.935512", "data": { "technologies": [], "description": "", @@ -3348,7 +3348,7 @@ } }, "2024_r-project-for-statistical-computing": { - "timestamp": "2025-10-12T16:20:54.349353", + "timestamp": "2025-10-20T09:17:35.157902", "data": { "technologies": [], "description": "", @@ -3357,7 +3357,7 @@ } }, "2024_creative-commons": { - "timestamp": "2025-10-12T16:20:54.926719", + "timestamp": "2025-10-20T09:19:17.572621", "data": { "technologies": [], "description": "", @@ -3366,7 +3366,7 @@ } }, "2024_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-12T16:20:55.508596", + "timestamp": "2025-10-20T09:17:53.363563", "data": { "technologies": [], "description": "", @@ -3375,7 +3375,7 @@ } }, "2024_kiwix": { - "timestamp": "2025-10-12T16:20:56.088827", + "timestamp": "2025-10-20T09:17:45.840558", "data": { "technologies": [], "description": "", @@ -3384,7 +3384,7 @@ } }, "2024_gnu-radio": { - "timestamp": "2025-10-12T16:20:56.662556", + "timestamp": "2025-10-20T09:18:13.446893", "data": { "technologies": [], "description": "", @@ -3393,7 +3393,7 @@ } }, "2024_mdanalysis": { - "timestamp": "2025-10-12T16:20:57.246697", + "timestamp": "2025-10-20T09:18:23.484773", "data": { "technologies": [], "description": "", @@ -3402,7 +3402,7 @@ } }, "2024_freifunk": { - "timestamp": "2025-10-12T16:20:57.828841", + "timestamp": "2025-10-20T09:17:58.380486", "data": { "technologies": [], "description": "", @@ -3411,7 +3411,7 @@ } }, "2023_mantis": { - "timestamp": "2025-10-12T16:20:58.562847", + "timestamp": "2025-10-20T09:21:05.270066", "data": { "technologies": [], "description": "", @@ -3420,7 +3420,7 @@ } }, "2023_keploy": { - "timestamp": "2025-10-12T16:20:59.160571", + "timestamp": "2025-10-20T09:20:48.299923", "data": { "technologies": [], "description": "", @@ -3429,7 +3429,7 @@ } }, "2023_unikraft": { - "timestamp": "2025-10-12T16:20:59.743695", + "timestamp": "2025-10-20T09:20:23.141898", "data": { "technologies": [], "description": "", @@ -3438,7 +3438,7 @@ } }, "2023_mdanalysis": { - "timestamp": "2025-10-12T16:21:00.323302", + "timestamp": "2025-10-20T09:19:27.215438", "data": { "technologies": [], "description": "", @@ -3447,7 +3447,7 @@ } }, "2023_checkstyle": { - "timestamp": "2025-10-12T16:21:00.901561", + "timestamp": "2025-10-20T09:19:43.543539", "data": { "technologies": [], "description": "", @@ -3456,7 +3456,7 @@ } }, "2023_pharo-consortium": { - "timestamp": "2025-10-12T16:21:01.481628", + "timestamp": "2025-10-20T09:20:10.591138", "data": { "technologies": [], "description": "", @@ -3465,7 +3465,7 @@ } }, "2023_geomscale": { - "timestamp": "2025-10-12T16:21:02.057978", + "timestamp": "2025-10-20T09:19:42.285817", "data": { "technologies": [], "description": "", @@ -3474,7 +3474,7 @@ } }, "2023_librehealth": { - "timestamp": "2025-10-12T16:21:02.639588", + "timestamp": "2025-10-20T09:20:19.997718", "data": { "technologies": [], "description": "", @@ -3483,7 +3483,7 @@ } }, "2023_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-12T16:21:03.221359", + "timestamp": "2025-10-20T09:19:40.402674", "data": { "technologies": [], "description": "", @@ -3492,7 +3492,7 @@ } }, "2023_blender-foundation": { - "timestamp": "2025-10-12T16:21:03.800378", + "timestamp": "2025-10-20T09:19:30.990156", "data": { "technologies": [], "description": "", @@ -3501,7 +3501,7 @@ } }, "2023_kubevirt": { - "timestamp": "2025-10-12T16:21:04.381194", + "timestamp": "2025-10-20T09:19:55.527503", "data": { "technologies": [], "description": "", @@ -3510,7 +3510,7 @@ } }, "2023_libcamera": { - "timestamp": "2025-10-12T16:21:04.959915", + "timestamp": "2025-10-20T09:19:32.238146", "data": { "technologies": [], "description": "", @@ -3519,7 +3519,7 @@ } }, "2023_freecad": { - "timestamp": "2025-10-12T16:21:05.540055", + "timestamp": "2025-10-20T09:20:57.699659", "data": { "technologies": [], "description": "", @@ -3528,7 +3528,7 @@ } }, "2023_mlpack": { - "timestamp": "2025-10-12T16:21:06.121095", + "timestamp": "2025-10-20T09:21:00.837893", "data": { "technologies": [], "description": "", @@ -3537,7 +3537,7 @@ } }, "2023_mathesar": { - "timestamp": "2025-10-12T16:21:06.697990", + "timestamp": "2025-10-20T09:19:54.898998", "data": { "technologies": [], "description": "", @@ -3546,7 +3546,7 @@ } }, "2023_chips-alliance": { - "timestamp": "2025-10-12T16:21:07.278705", + "timestamp": "2025-10-20T09:21:08.410818", "data": { "technologies": [], "description": "", @@ -3555,7 +3555,7 @@ } }, "2023_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-12T16:21:07.860438", + "timestamp": "2025-10-20T09:21:03.353158", "data": { "technologies": [], "description": "", @@ -3564,7 +3564,7 @@ } }, "2023_libssh": { - "timestamp": "2025-10-12T16:21:08.442259", + "timestamp": "2025-10-20T09:21:07.784197", "data": { "technologies": [], "description": "", @@ -3573,7 +3573,7 @@ } }, "2023_eclipse-foundation": { - "timestamp": "2025-10-12T16:21:09.024959", + "timestamp": "2025-10-20T09:21:02.093404", "data": { "technologies": [], "description": "", @@ -3582,7 +3582,7 @@ } }, "2023_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-12T16:21:09.610520", + "timestamp": "2025-10-20T09:21:01.467092", "data": { "technologies": [], "description": "", @@ -3591,7 +3591,7 @@ } }, "2023_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-12T16:21:10.188974", + "timestamp": "2025-10-20T09:19:27.844373", "data": { "technologies": [], "description": "", @@ -3600,7 +3600,7 @@ } }, "2023_pitivi": { - "timestamp": "2025-10-12T16:21:10.766816", + "timestamp": "2025-10-20T09:20:03.050165", "data": { "technologies": [], "description": "", @@ -3609,7 +3609,7 @@ } }, "2023_internet-archive": { - "timestamp": "2025-10-12T16:21:11.345215", + "timestamp": "2025-10-20T09:20:50.808471", "data": { "technologies": [], "description": "", @@ -3618,7 +3618,7 @@ } }, "2023_rocketchat": { - "timestamp": "2025-10-12T16:21:11.920719", + "timestamp": "2025-10-20T09:20:57.072022", "data": { "technologies": [], "description": "", @@ -3627,7 +3627,7 @@ } }, "2023_purr-data": { - "timestamp": "2025-10-12T16:21:12.503902", + "timestamp": "2025-10-20T09:20:40.135755", "data": { "technologies": [], "description": "", @@ -3636,7 +3636,7 @@ } }, "2023_aossie": { - "timestamp": "2025-10-12T16:21:13.082472", + "timestamp": "2025-10-20T09:20:42.015527", "data": { "technologies": [], "description": "", @@ -3645,7 +3645,7 @@ } }, "2023_the-honeynet-project": { - "timestamp": "2025-10-12T16:21:13.664341", + "timestamp": "2025-10-20T09:20:16.236404", "data": { "technologies": [], "description": "", @@ -3654,7 +3654,7 @@ } }, "2023_gnutls": { - "timestamp": "2025-10-12T16:21:14.240001", + "timestamp": "2025-10-20T09:19:34.122255", "data": { "technologies": [], "description": "", @@ -3663,7 +3663,7 @@ } }, "2023_red-hen-lab": { - "timestamp": "2025-10-12T16:21:14.818367", + "timestamp": "2025-10-20T09:19:44.194945", "data": { "technologies": [], "description": "", @@ -3672,7 +3672,7 @@ } }, "2023_the-julia-language": { - "timestamp": "2025-10-12T16:21:15.397289", + "timestamp": "2025-10-20T09:19:57.406791", "data": { "technologies": [], "description": "", @@ -3681,7 +3681,7 @@ } }, "2023_gnu-project": { - "timestamp": "2025-10-12T16:21:15.975479", + "timestamp": "2025-10-20T09:19:59.292143", "data": { "technologies": [], "description": "", @@ -3690,7 +3690,7 @@ } }, "2023_creative-commons": { - "timestamp": "2025-10-12T16:21:16.551444", + "timestamp": "2025-10-20T09:20:53.313595", "data": { "technologies": [], "description": "", @@ -3699,7 +3699,7 @@ } }, "2023_liquid-galaxy-project": { - "timestamp": "2025-10-12T16:21:17.132277", + "timestamp": "2025-10-20T09:19:46.725970", "data": { "technologies": [], "description": "", @@ -3708,7 +3708,7 @@ } }, "2023_the-jpf-team": { - "timestamp": "2025-10-12T16:21:17.713399", + "timestamp": "2025-10-20T09:20:22.511866", "data": { "technologies": [], "description": "", @@ -3717,7 +3717,7 @@ } }, "2023_spdx": { - "timestamp": "2025-10-12T16:21:18.291715", + "timestamp": "2025-10-20T09:20:40.760477", "data": { "technologies": [], "description": "", @@ -3726,7 +3726,7 @@ } }, "2023_tardis-rt-collaboration": { - "timestamp": "2025-10-12T16:21:18.869768", + "timestamp": "2025-10-20T09:20:08.074393", "data": { "technologies": [], "description": "", @@ -3735,7 +3735,7 @@ } }, "2023_rtems-project": { - "timestamp": "2025-10-12T16:21:19.450439", + "timestamp": "2025-10-20T09:20:50.183021", "data": { "technologies": [], "description": "", @@ -3744,7 +3744,7 @@ } }, "2023_wagtail": { - "timestamp": "2025-10-12T16:21:20.028618", + "timestamp": "2025-10-20T09:20:47.042634", "data": { "technologies": [], "description": "", @@ -3753,7 +3753,7 @@ } }, "2023_zulip": { - "timestamp": "2025-10-12T16:21:20.609088", + "timestamp": "2025-10-20T09:20:59.584042", "data": { "technologies": [], "description": "", @@ -3762,7 +3762,7 @@ } }, "2023_stratosphere-laboratory-czech-technical-university-in-prague": { - "timestamp": "2025-10-12T16:21:21.193050", + "timestamp": "2025-10-20T09:20:20.626648", "data": { "technologies": [], "description": "", @@ -3771,7 +3771,7 @@ } }, "2023_aboutcode": { - "timestamp": "2025-10-12T16:21:21.774087", + "timestamp": "2025-10-20T09:19:51.765020", "data": { "technologies": [], "description": "", @@ -3780,7 +3780,7 @@ } }, "2023_mariadb": { - "timestamp": "2025-10-12T16:21:22.350606", + "timestamp": "2025-10-20T09:20:18.742807", "data": { "technologies": [], "description": "", @@ -3789,7 +3789,7 @@ } }, "2023_cncf": { - "timestamp": "2025-10-12T16:21:22.931985", + "timestamp": "2025-10-20T09:20:53.942246", "data": { "technologies": [], "description": "", @@ -3798,7 +3798,7 @@ } }, "2023_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-12T16:21:23.507630", + "timestamp": "2025-10-20T09:20:51.433346", "data": { "technologies": [], "description": "", @@ -3807,7 +3807,7 @@ } }, "2023_coreboot": { - "timestamp": "2025-10-12T16:21:24.088100", + "timestamp": "2025-10-20T09:19:58.661963", "data": { "technologies": [], "description": "", @@ -3816,7 +3816,7 @@ } }, "2023_metabrainz-foundation-inc": { - "timestamp": "2025-10-12T16:21:24.673089", + "timestamp": "2025-10-20T09:19:56.782185", "data": { "technologies": [], "description": "", @@ -3825,7 +3825,7 @@ } }, "2023_postgresql": { - "timestamp": "2025-10-12T16:21:25.248617", + "timestamp": "2025-10-20T09:19:48.615271", "data": { "technologies": [], "description": "", @@ -3834,7 +3834,7 @@ } }, "2023_xorg-foundation": { - "timestamp": "2025-10-12T16:21:25.830010", + "timestamp": "2025-10-20T09:20:42.642658", "data": { "technologies": [], "description": "", @@ -3843,7 +3843,7 @@ } }, "2023_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-12T16:21:26.410305", + "timestamp": "2025-10-20T09:19:39.772634", "data": { "technologies": [], "description": "", @@ -3852,7 +3852,7 @@ } }, "2023_sympy": { - "timestamp": "2025-10-12T16:21:26.989930", + "timestamp": "2025-10-20T09:20:00.543264", "data": { "technologies": [], "description": "", @@ -3861,7 +3861,7 @@ } }, "2023_kotlin-foundation": { - "timestamp": "2025-10-12T16:21:27.569106", + "timestamp": "2025-10-20T09:19:50.504559", "data": { "technologies": [], "description": "", @@ -3870,7 +3870,7 @@ } }, "2023_carbon-language": { - "timestamp": "2025-10-12T16:21:28.181381", + "timestamp": "2025-10-20T09:20:17.488200", "data": { "technologies": [], "description": "", @@ -3879,7 +3879,7 @@ } }, "2023_the-mifos-initiative": { - "timestamp": "2025-10-12T16:21:28.764711", + "timestamp": "2025-10-20T09:19:49.878598", "data": { "technologies": [], "description": "", @@ -3888,7 +3888,7 @@ } }, "2023_openastronomy": { - "timestamp": "2025-10-12T16:21:29.350634", + "timestamp": "2025-10-20T09:21:02.718967", "data": { "technologies": [], "description": "", @@ -3897,7 +3897,7 @@ } }, "2023_xmpp-standards-foundation": { - "timestamp": "2025-10-12T16:21:29.931635", + "timestamp": "2025-10-20T09:20:52.684765", "data": { "technologies": [], "description": "", @@ -3906,7 +3906,7 @@ } }, "2023_dbpedia": { - "timestamp": "2025-10-12T16:21:30.511208", + "timestamp": "2025-10-20T09:19:41.035273", "data": { "technologies": [], "description": "", @@ -3915,7 +3915,7 @@ } }, "2023_django-software-foundation-8o": { - "timestamp": "2025-10-12T16:21:31.088960", + "timestamp": "2025-10-20T09:20:04.301606", "data": { "technologies": [], "description": "", @@ -3924,7 +3924,7 @@ } }, "2023_fossology": { - "timestamp": "2025-10-12T16:21:31.666607", + "timestamp": "2025-10-20T09:19:25.958293", "data": { "technologies": [], "description": "", @@ -3933,7 +3933,7 @@ } }, "2023_criu": { - "timestamp": "2025-10-12T16:21:32.246260", + "timestamp": "2025-10-20T09:20:29.464258", "data": { "technologies": [], "description": "", @@ -3942,7 +3942,7 @@ } }, "2023_ruby": { - "timestamp": "2025-10-12T16:21:32.826135", + "timestamp": "2025-10-20T09:21:05.899878", "data": { "technologies": [], "description": "", @@ -3951,7 +3951,7 @@ } }, "2023_mayors-office-of-new-urban-mechanics": { - "timestamp": "2025-10-12T16:21:33.405300", + "timestamp": "2025-10-20T09:19:28.478753", "data": { "technologies": [], "description": "", @@ -3960,7 +3960,7 @@ } }, "2023_the-freebsd-project": { - "timestamp": "2025-10-12T16:21:33.987169", + "timestamp": "2025-10-20T09:20:13.098701", "data": { "technologies": [], "description": "", @@ -3969,7 +3969,7 @@ } }, "2023_internet-health-report": { - "timestamp": "2025-10-12T16:21:34.568362", + "timestamp": "2025-10-20T09:20:06.190206", "data": { "technologies": [], "description": "", @@ -3978,7 +3978,7 @@ } }, "2023_sagemath": { - "timestamp": "2025-10-12T16:21:35.153476", + "timestamp": "2025-10-20T09:20:32.604766", "data": { "technologies": [], "description": "", @@ -3987,7 +3987,7 @@ } }, "2023_gnome-foundation": { - "timestamp": "2025-10-12T16:21:35.733765", + "timestamp": "2025-10-20T09:20:31.977001", "data": { "technologies": [], "description": "", @@ -3996,7 +3996,7 @@ } }, "2023_scalable-parallel-computing-laboratory": { - "timestamp": "2025-10-12T16:21:36.310932", + "timestamp": "2025-10-20T09:20:07.445857", "data": { "technologies": [], "description": "", @@ -4005,7 +4005,7 @@ } }, "2023_grame": { - "timestamp": "2025-10-12T16:21:36.887271", + "timestamp": "2025-10-20T09:19:35.382526", "data": { "technologies": [], "description": "", @@ -4014,7 +4014,7 @@ } }, "2023_beagleboardorg": { - "timestamp": "2025-10-12T16:21:37.462522", + "timestamp": "2025-10-20T09:19:56.152983", "data": { "technologies": [], "description": "", @@ -4023,7 +4023,7 @@ } }, "2023_gentoo-foundation": { - "timestamp": "2025-10-12T16:21:38.043436", + "timestamp": "2025-10-20T09:19:29.102991", "data": { "technologies": [], "description": "", @@ -4032,7 +4032,7 @@ } }, "2023_flare": { - "timestamp": "2025-10-12T16:21:38.624602", + "timestamp": "2025-10-20T09:19:49.244037", "data": { "technologies": [], "description": "", @@ -4041,7 +4041,7 @@ } }, "2023_llvm-compiler-infrastructure": { - "timestamp": "2025-10-12T16:21:39.207739", + "timestamp": "2025-10-20T09:19:34.749105", "data": { "technologies": [], "description": "", @@ -4050,7 +4050,7 @@ } }, "2023_mzmine-and-ms-dial": { - "timestamp": "2025-10-12T16:21:39.795406", + "timestamp": "2025-10-20T09:19:32.864518", "data": { "technologies": [], "description": "", @@ -4059,7 +4059,7 @@ } }, "2023_python-software-foundation": { - "timestamp": "2025-10-12T16:21:40.377749", + "timestamp": "2025-10-20T09:20:03.673512", "data": { "technologies": [], "description": "", @@ -4068,7 +4068,7 @@ } }, "2023_scala-center": { - "timestamp": "2025-10-12T16:21:40.955938", + "timestamp": "2025-10-20T09:20:41.385173", "data": { "technologies": [], "description": "", @@ -4077,7 +4077,7 @@ } }, "2023_fortran-lang": { - "timestamp": "2025-10-12T16:21:41.535405", + "timestamp": "2025-10-20T09:20:33.234500", "data": { "technologies": [], "description": "", @@ -4086,7 +4086,7 @@ } }, "2023_drupal-association": { - "timestamp": "2025-10-12T16:21:42.118106", + "timestamp": "2025-10-20T09:20:26.947123", "data": { "technologies": [], "description": "", @@ -4095,7 +4095,7 @@ } }, "2023_wikimedia-foundation": { - "timestamp": "2025-10-12T16:21:42.696168", + "timestamp": "2025-10-20T09:20:58.329109", "data": { "technologies": [], "description": "", @@ -4104,7 +4104,7 @@ } }, "2023_cloudcv": { - "timestamp": "2025-10-12T16:21:43.274568", + "timestamp": "2025-10-20T09:19:45.470102", "data": { "technologies": [], "description": "", @@ -4113,7 +4113,7 @@ } }, "2023_incf": { - "timestamp": "2025-10-12T16:21:43.857366", + "timestamp": "2025-10-20T09:20:02.425695", "data": { "technologies": [], "description": "", @@ -4122,7 +4122,7 @@ } }, "2023_ceph": { - "timestamp": "2025-10-12T16:21:44.439027", + "timestamp": "2025-10-20T09:20:26.320956", "data": { "technologies": [], "description": "", @@ -4131,7 +4131,7 @@ } }, "2023_invesalius": { - "timestamp": "2025-10-12T16:21:45.018943", + "timestamp": "2025-10-20T09:20:43.269851", "data": { "technologies": [], "description": "", @@ -4140,7 +4140,7 @@ } }, "2023_oppia-foundation": { - "timestamp": "2025-10-12T16:21:45.598338", + "timestamp": "2025-10-20T09:19:26.586351", "data": { "technologies": [], "description": "", @@ -4149,7 +4149,7 @@ } }, "2023_camicroscope": { - "timestamp": "2025-10-12T16:21:46.180015", + "timestamp": "2025-10-20T09:20:12.472004", "data": { "technologies": [], "description": "", @@ -4158,7 +4158,7 @@ } }, "2023_cern-hsf": { - "timestamp": "2025-10-12T16:21:46.759598", + "timestamp": "2025-10-20T09:19:54.273016", "data": { "technologies": [], "description": "", @@ -4167,7 +4167,7 @@ } }, "2023_swift": { - "timestamp": "2025-10-12T16:21:47.345201", + "timestamp": "2025-10-20T09:21:10.301757", "data": { "technologies": [], "description": "", @@ -4176,7 +4176,7 @@ } }, "2023_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-12T16:21:47.926933", + "timestamp": "2025-10-20T09:20:46.410849", "data": { "technologies": [], "description": "", @@ -4185,7 +4185,7 @@ } }, "2023_haiku": { - "timestamp": "2025-10-12T16:21:48.506271", + "timestamp": "2025-10-20T09:20:13.723406", "data": { "technologies": [], "description": "", @@ -4194,7 +4194,7 @@ } }, "2023_jenkins-wp": { - "timestamp": "2025-10-12T16:21:49.089590", + "timestamp": "2025-10-20T09:20:49.554866", "data": { "technologies": [], "description": "", @@ -4203,7 +4203,7 @@ } }, "2023_sugar-labs": { - "timestamp": "2025-10-12T16:21:49.671843", + "timestamp": "2025-10-20T09:20:11.216024", "data": { "technologies": [], "description": "", @@ -4212,7 +4212,7 @@ } }, "2023_organic-maps": { - "timestamp": "2025-10-12T16:21:50.277378", + "timestamp": "2025-10-20T09:20:39.509605", "data": { "technologies": [], "description": "", @@ -4221,7 +4221,7 @@ } }, "2023_aflplusplus": { - "timestamp": "2025-10-12T16:21:50.858070", + "timestamp": "2025-10-20T09:19:47.354784", "data": { "technologies": [], "description": "", @@ -4230,7 +4230,7 @@ } }, "2023_gprmax": { - "timestamp": "2025-10-12T16:21:51.433908", + "timestamp": "2025-10-20T09:19:30.362083", "data": { "technologies": [], "description": "", @@ -4239,7 +4239,7 @@ } }, "2023_ardupilot": { - "timestamp": "2025-10-12T16:21:52.020543", + "timestamp": "2025-10-20T09:21:07.159764", "data": { "technologies": [], "description": "", @@ -4248,7 +4248,7 @@ } }, "2023_metacall": { - "timestamp": "2025-10-12T16:21:52.597119", + "timestamp": "2025-10-20T09:20:25.691184", "data": { "technologies": [], "description": "", @@ -4257,7 +4257,7 @@ } }, "2023_qdrant": { - "timestamp": "2025-10-12T16:21:53.226602", + "timestamp": "2025-10-20T09:20:35.742492", "data": { "technologies": [], "description": "", @@ -4266,7 +4266,7 @@ } }, "2023_score-lab": { - "timestamp": "2025-10-12T16:21:53.805980", + "timestamp": "2025-10-20T09:20:58.954573", "data": { "technologies": [], "description": "", @@ -4275,7 +4275,7 @@ } }, "2023_the-enigma-team": { - "timestamp": "2025-10-12T16:21:54.402402", + "timestamp": "2025-10-20T09:19:37.257220", "data": { "technologies": [], "description": "", @@ -4284,7 +4284,7 @@ } }, "2023_postman": { - "timestamp": "2025-10-12T16:21:54.981839", + "timestamp": "2025-10-20T09:20:37.000419", "data": { "technologies": [], "description": "", @@ -4293,7 +4293,7 @@ } }, "2023_brl-cad": { - "timestamp": "2025-10-12T16:21:55.560261", + "timestamp": "2025-10-20T09:19:33.491881", "data": { "technologies": [], "description": "", @@ -4302,7 +4302,7 @@ } }, "2023_rizin": { - "timestamp": "2025-10-12T16:21:56.143710", + "timestamp": "2025-10-20T09:19:53.018050", "data": { "technologies": [], "description": "", @@ -4311,7 +4311,7 @@ } }, "2023_synfig": { - "timestamp": "2025-10-12T16:21:56.723269", + "timestamp": "2025-10-20T09:20:21.254965", "data": { "technologies": [], "description": "", @@ -4320,7 +4320,7 @@ } }, "2023_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-12T16:21:57.308299", + "timestamp": "2025-10-20T09:20:37.625837", "data": { "technologies": [], "description": "", @@ -4329,7 +4329,7 @@ } }, "2023_openmrs": { - "timestamp": "2025-10-12T16:21:57.887880", + "timestamp": "2025-10-20T09:19:41.661005", "data": { "technologies": [], "description": "", @@ -4338,7 +4338,7 @@ } }, "2023_gitlab": { - "timestamp": "2025-10-12T16:21:58.467076", + "timestamp": "2025-10-20T09:20:47.669610", "data": { "technologies": [], "description": "", @@ -4347,7 +4347,7 @@ } }, "2023_international-catrobat-association": { - "timestamp": "2025-10-12T16:21:59.044843", + "timestamp": "2025-10-20T09:19:39.144525", "data": { "technologies": [], "description": "", @@ -4356,7 +4356,7 @@ } }, "2023_learning-equality": { - "timestamp": "2025-10-12T16:21:59.629978", + "timestamp": "2025-10-20T09:19:38.513114", "data": { "technologies": [], "description": "", @@ -4365,7 +4365,7 @@ } }, "2023_ccextractor-development": { - "timestamp": "2025-10-12T16:22:00.209759", + "timestamp": "2025-10-20T09:20:21.879530", "data": { "technologies": [], "description": "", @@ -4374,7 +4374,7 @@ } }, "2023_omegaup": { - "timestamp": "2025-10-12T16:22:00.789862", + "timestamp": "2025-10-20T09:20:56.443122", "data": { "technologies": [], "description": "", @@ -4383,7 +4383,7 @@ } }, "2023_open-genome-informatics": { - "timestamp": "2025-10-12T16:22:01.369677", + "timestamp": "2025-10-20T09:19:36.006110", "data": { "technologies": [], "description": "", @@ -4392,7 +4392,7 @@ } }, "2023_plone-foundation": { - "timestamp": "2025-10-12T16:22:01.945923", + "timestamp": "2025-10-20T09:19:46.095661", "data": { "technologies": [], "description": "", @@ -4401,7 +4401,7 @@ } }, "2023_tensorflow-d1": { - "timestamp": "2025-10-12T16:22:02.525832", + "timestamp": "2025-10-20T09:19:47.987861", "data": { "technologies": [], "description": "", @@ -4410,7 +4410,7 @@ } }, "2023_kde-community": { - "timestamp": "2025-10-12T16:22:03.103981", + "timestamp": "2025-10-20T09:20:15.609125", "data": { "technologies": [], "description": "", @@ -4419,7 +4419,7 @@ } }, "2023_r-project-for-statistical-computing": { - "timestamp": "2025-10-12T16:22:03.683420", + "timestamp": "2025-10-20T09:20:44.525208", "data": { "technologies": [], "description": "", @@ -4428,7 +4428,7 @@ } }, "2023_kiwix": { - "timestamp": "2025-10-12T16:22:04.267139", + "timestamp": "2025-10-20T09:21:06.527395", "data": { "technologies": [], "description": "", @@ -4437,7 +4437,7 @@ } }, "2023_gnu-radio": { - "timestamp": "2025-10-12T16:22:04.845048", + "timestamp": "2025-10-20T09:19:53.642565", "data": { "technologies": [], "description": "", @@ -4446,7 +4446,7 @@ } }, "2023_dart": { - "timestamp": "2025-10-12T16:22:05.428724", + "timestamp": "2025-10-20T09:19:37.884642", "data": { "technologies": [], "description": "", @@ -4455,7 +4455,7 @@ } }, "2023_openstreetmap": { - "timestamp": "2025-10-12T16:22:06.006651", + "timestamp": "2025-10-20T09:21:09.665450", "data": { "technologies": [], "description": "", @@ -4464,7 +4464,7 @@ } }, "2023_gcp-scanner": { - "timestamp": "2025-10-12T16:22:06.588728", + "timestamp": "2025-10-20T09:20:55.192924", "data": { "technologies": [], "description": "", @@ -4473,7 +4473,7 @@ } }, "2023_moveit": { - "timestamp": "2025-10-12T16:22:07.167713", + "timestamp": "2025-10-20T09:20:14.354246", "data": { "technologies": [], "description": "", @@ -4482,7 +4482,7 @@ } }, "2023_the-tor-project": { - "timestamp": "2025-10-12T16:22:07.746690", + "timestamp": "2025-10-20T09:20:23.770605", "data": { "technologies": [], "description": "", @@ -4491,7 +4491,7 @@ } }, "2023_sqlancer": { - "timestamp": "2025-10-12T16:22:08.327583", + "timestamp": "2025-10-20T09:20:11.842742", "data": { "technologies": [], "description": "", @@ -4500,7 +4500,7 @@ } }, "2023_openvino-toolkit": { - "timestamp": "2025-10-12T16:22:08.903396", + "timestamp": "2025-10-20T09:20:14.980183", "data": { "technologies": [], "description": "", @@ -4509,7 +4509,7 @@ } }, "2023_freetype": { - "timestamp": "2025-10-12T16:22:09.485957", + "timestamp": "2025-10-20T09:20:35.116842", "data": { "technologies": [], "description": "", @@ -4518,7 +4518,7 @@ } }, "2023_cgal-project": { - "timestamp": "2025-10-12T16:22:10.065862", + "timestamp": "2025-10-20T09:19:58.034204", "data": { "technologies": [], "description": "", @@ -4527,7 +4527,7 @@ } }, "2023_open-robotics": { - "timestamp": "2025-10-12T16:22:10.646196", + "timestamp": "2025-10-20T09:20:28.837885", "data": { "technologies": [], "description": "", @@ -4536,7 +4536,7 @@ } }, "2023_inkscape": { - "timestamp": "2025-10-12T16:22:11.226258", + "timestamp": "2025-10-20T09:20:09.963675", "data": { "technologies": [], "description": "", @@ -4545,7 +4545,7 @@ } }, "2023_apache-software-foundation": { - "timestamp": "2025-10-12T16:22:11.807268", + "timestamp": "2025-10-20T09:21:09.038870", "data": { "technologies": [], "description": "", @@ -4554,7 +4554,7 @@ } }, "2023_cockpit-project": { - "timestamp": "2025-10-12T16:22:12.382308", + "timestamp": "2025-10-20T09:20:27.573823", "data": { "technologies": [], "description": "", @@ -4563,7 +4563,7 @@ } }, "2023_the-linux-foundation": { - "timestamp": "2025-10-12T16:22:12.961123", + "timestamp": "2025-10-20T09:20:43.898700", "data": { "technologies": [], "description": "", @@ -4572,7 +4572,7 @@ } }, "2023_submitty": { - "timestamp": "2025-10-12T16:22:13.540160", + "timestamp": "2025-10-20T09:21:04.008805", "data": { "technologies": [], "description": "", @@ -4581,7 +4581,7 @@ } }, "2023_uc-ospo": { - "timestamp": "2025-10-12T16:22:14.122612", + "timestamp": "2025-10-20T09:20:45.154283", "data": { "technologies": [], "description": "", @@ -4590,7 +4590,7 @@ } }, "2023_ivy-lets-unifyai": { - "timestamp": "2025-10-12T16:22:14.701747", + "timestamp": "2025-10-20T09:20:06.819057", "data": { "technologies": [], "description": "", @@ -4599,7 +4599,7 @@ } }, "2023_opencv": { - "timestamp": "2025-10-12T16:22:15.280029", + "timestamp": "2025-10-20T09:20:55.817954", "data": { "technologies": [], "description": "", @@ -4608,7 +4608,7 @@ } }, "2023_open-chemistry": { - "timestamp": "2025-10-12T16:22:15.859398", + "timestamp": "2025-10-20T09:20:45.782078", "data": { "technologies": [], "description": "", @@ -4617,7 +4617,7 @@ } }, "2023_ffmpeg": { - "timestamp": "2025-10-12T16:22:16.438132", + "timestamp": "2025-10-20T09:20:01.169980", "data": { "technologies": [], "description": "", @@ -4626,7 +4626,7 @@ } }, "2023_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-12T16:22:17.016944", + "timestamp": "2025-10-20T09:20:36.369383", "data": { "technologies": [], "description": "", @@ -4635,7 +4635,7 @@ } }, "2023_openwisp": { - "timestamp": "2025-10-12T16:22:17.639405", + "timestamp": "2025-10-20T09:19:31.613327", "data": { "technologies": [], "description": "", @@ -4644,7 +4644,7 @@ } }, "2023_git": { - "timestamp": "2025-10-12T16:22:18.234535", + "timestamp": "2025-10-20T09:19:36.632069", "data": { "technologies": [], "description": "", @@ -4653,7 +4653,7 @@ } }, "2023_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-12T16:22:18.816241", + "timestamp": "2025-10-20T09:20:24.422023", "data": { "technologies": [], "description": "", @@ -4662,7 +4662,7 @@ } }, "2023_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-12T16:22:19.396242", + "timestamp": "2025-10-20T09:20:54.567410", "data": { "technologies": [], "description": "", @@ -4671,7 +4671,7 @@ } }, "2023_numfocus": { - "timestamp": "2025-10-12T16:22:19.981781", + "timestamp": "2025-10-20T09:19:52.392383", "data": { "technologies": [], "description": "", @@ -4680,7 +4680,7 @@ } }, "2023_freifunk": { - "timestamp": "2025-10-12T16:22:20.568717", + "timestamp": "2025-10-20T09:20:33.858641", "data": { "technologies": [], "description": "", @@ -4689,7 +4689,7 @@ } }, "2023_libreoffice": { - "timestamp": "2025-10-12T16:22:21.157752", + "timestamp": "2025-10-20T09:20:38.879264", "data": { "technologies": [], "description": "", @@ -4698,7 +4698,7 @@ } }, "2023_circuitverseorg": { - "timestamp": "2025-10-12T16:22:21.738960", + "timestamp": "2025-10-20T09:19:59.919477", "data": { "technologies": [], "description": "", @@ -4707,7 +4707,7 @@ } }, "2023_chromium-lj": { - "timestamp": "2025-10-12T16:22:22.320812", + "timestamp": "2025-10-20T09:20:01.796326", "data": { "technologies": [], "description": "", @@ -4716,7 +4716,7 @@ } }, "2023_genome-assembly-and-annotation": { - "timestamp": "2025-10-12T16:22:22.901740", + "timestamp": "2025-10-20T09:20:38.251520", "data": { "technologies": [], "description": "", @@ -4725,7 +4725,7 @@ } }, "2023_mit-app-inventor": { - "timestamp": "2025-10-12T16:22:23.482407", + "timestamp": "2025-10-20T09:21:10.928703", "data": { "technologies": [], "description": "", @@ -4734,7 +4734,7 @@ } }, "2023_videolan": { - "timestamp": "2025-10-12T16:22:24.071270", + "timestamp": "2025-10-20T09:20:48.926274", "data": { "technologies": [], "description": "", @@ -4743,7 +4743,7 @@ } }, "2023_opensuse-project": { - "timestamp": "2025-10-12T16:22:24.649463", + "timestamp": "2025-10-20T09:20:30.092013", "data": { "technologies": [], "description": "", @@ -4752,7 +4752,7 @@ } }, "2023_gnu-octave": { - "timestamp": "2025-10-12T16:22:25.228810", + "timestamp": "2025-10-20T09:20:08.702758", "data": { "technologies": [], "description": "", @@ -4761,7 +4761,7 @@ } }, "2023_the-palisadoes-foundation": { - "timestamp": "2025-10-12T16:22:25.816017", + "timestamp": "2025-10-20T09:19:44.820700", "data": { "technologies": [], "description": "", @@ -4770,7 +4770,7 @@ } }, "2023_jina-ai-sb": { - "timestamp": "2025-10-12T16:22:26.396657", + "timestamp": "2025-10-20T09:20:05.561830", "data": { "technologies": [], "description": "", @@ -4779,7 +4779,7 @@ } }, "2023_apertium": { - "timestamp": "2025-10-12T16:22:26.973834", + "timestamp": "2025-10-20T09:20:25.052447", "data": { "technologies": [], "description": "", @@ -4788,7 +4788,7 @@ } }, "2023_jderobot": { - "timestamp": "2025-10-12T16:22:27.557786", + "timestamp": "2025-10-20T09:20:09.329117", "data": { "technologies": [], "description": "", @@ -4797,7 +4797,7 @@ } }, "2023_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-12T16:22:28.140303", + "timestamp": "2025-10-20T09:20:04.930908", "data": { "technologies": [], "description": "", @@ -4806,7 +4806,7 @@ } }, "2023_processing-foundation": { - "timestamp": "2025-10-12T16:22:28.720430", + "timestamp": "2025-10-20T09:20:16.863723", "data": { "technologies": [], "description": "", @@ -4815,7 +4815,7 @@ } }, "2023_metasploit": { - "timestamp": "2025-10-12T16:22:29.296787", + "timestamp": "2025-10-20T09:20:19.369969", "data": { "technologies": [], "description": "", @@ -4824,7 +4824,7 @@ } }, "2023_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-12T16:22:29.879532", + "timestamp": "2025-10-20T09:20:30.721472", "data": { "technologies": [], "description": "", @@ -4833,7 +4833,7 @@ } }, "2023_gnu-image-manipulation-program": { - "timestamp": "2025-10-12T16:22:30.461908", + "timestamp": "2025-10-20T09:21:00.210840", "data": { "technologies": [], "description": "", @@ -4842,7 +4842,7 @@ } }, "2023_pecan-project": { - "timestamp": "2025-10-12T16:22:31.041356", + "timestamp": "2025-10-20T09:19:29.731482", "data": { "technologies": [], "description": "", @@ -4851,7 +4851,7 @@ } }, "2023_scummvm": { - "timestamp": "2025-10-12T16:22:31.621915", + "timestamp": "2025-10-20T09:20:18.116320", "data": { "technologies": [], "description": "", @@ -4860,7 +4860,7 @@ } }, "2023_qemu": { - "timestamp": "2025-10-12T16:22:32.197965", + "timestamp": "2025-10-20T09:20:28.207130", "data": { "technologies": [], "description": "", @@ -4869,7 +4869,7 @@ } }, "2023_xwiki": { - "timestamp": "2025-10-12T16:22:32.777827", + "timestamp": "2025-10-20T09:21:04.641852", "data": { "technologies": [], "description": "", @@ -4878,7 +4878,7 @@ } }, "2023_musescore": { - "timestamp": "2025-10-12T16:22:33.359977", + "timestamp": "2025-10-20T09:19:42.914146", "data": { "technologies": [], "description": "", @@ -4887,7 +4887,7 @@ } }, "2023_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-12T16:22:33.942415", + "timestamp": "2025-10-20T09:19:51.135006", "data": { "technologies": [], "description": "", @@ -4896,7 +4896,7 @@ } }, "2023_owasp-foundation": { - "timestamp": "2025-10-12T16:22:34.522446", + "timestamp": "2025-10-20T09:20:34.489467", "data": { "technologies": [], "description": "", @@ -4905,7 +4905,7 @@ } }, "2023_the-netbsd-foundation": { - "timestamp": "2025-10-12T16:22:35.103220", + "timestamp": "2025-10-20T09:20:52.060229", "data": { "technologies": [], "description": "", @@ -4914,7 +4914,7 @@ } }, "2023_stear-group": { - "timestamp": "2025-10-12T16:22:35.683358", + "timestamp": "2025-10-20T09:20:31.349274", "data": { "technologies": [], "description": "", @@ -4923,7 +4923,7 @@ } }, "2022_checkstyle": { - "timestamp": "2025-10-12T16:22:36.442644", + "timestamp": "2025-10-20T09:22:20.402946", "data": { "technologies": [], "description": "", @@ -4932,7 +4932,7 @@ } }, "2022_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-12T16:22:37.018446", + "timestamp": "2025-10-20T09:21:47.072350", "data": { "technologies": [], "description": "", @@ -4941,7 +4941,7 @@ } }, "2022_mayors-office-of-new-urban-mechanics": { - "timestamp": "2025-10-12T16:22:37.601250", + "timestamp": "2025-10-20T09:21:43.934136", "data": { "technologies": [], "description": "", @@ -4950,7 +4950,7 @@ } }, "2022_sugar-labs": { - "timestamp": "2025-10-12T16:22:38.184221", + "timestamp": "2025-10-20T09:22:35.501151", "data": { "technologies": [], "description": "", @@ -4959,7 +4959,7 @@ } }, "2022_spdx": { - "timestamp": "2025-10-12T16:22:38.763092", + "timestamp": "2025-10-20T09:22:05.312044", "data": { "technologies": [], "description": "", @@ -4968,7 +4968,7 @@ } }, "2022_the-mifos-initiative": { - "timestamp": "2025-10-12T16:22:39.348137", + "timestamp": "2025-10-20T09:23:12.620223", "data": { "technologies": [], "description": "", @@ -4977,7 +4977,7 @@ } }, "2022_dbpedia": { - "timestamp": "2025-10-12T16:22:39.932132", + "timestamp": "2025-10-20T09:23:01.284080", "data": { "technologies": [], "description": "", @@ -4986,7 +4986,7 @@ } }, "2022_the-jpf-team": { - "timestamp": "2025-10-12T16:22:40.510094", + "timestamp": "2025-10-20T09:22:03.427171", "data": { "technologies": [], "description": "", @@ -4995,7 +4995,7 @@ } }, "2022_xmpp-standards-foundation": { - "timestamp": "2025-10-12T16:22:41.091473", + "timestamp": "2025-10-20T09:22:22.924723", "data": { "technologies": [], "description": "", @@ -5004,7 +5004,7 @@ } }, "2022_librecube-initiative": { - "timestamp": "2025-10-12T16:22:41.670518", + "timestamp": "2025-10-20T09:22:48.706558", "data": { "technologies": [], "description": "", @@ -5013,7 +5013,7 @@ } }, "2022_neutralinojs": { - "timestamp": "2025-10-12T16:22:42.278790", + "timestamp": "2025-10-20T09:21:53.365520", "data": { "technologies": [], "description": "", @@ -5022,7 +5022,7 @@ } }, "2022_joomla": { - "timestamp": "2025-10-12T16:22:42.860672", + "timestamp": "2025-10-20T09:22:38.011709", "data": { "technologies": [], "description": "", @@ -5031,7 +5031,7 @@ } }, "2022_wikimedia-foundation": { - "timestamp": "2025-10-12T16:22:43.442892", + "timestamp": "2025-10-20T09:23:02.535810", "data": { "technologies": [], "description": "", @@ -5040,7 +5040,7 @@ } }, "2022_flashrom": { - "timestamp": "2025-10-12T16:22:44.018708", + "timestamp": "2025-10-20T09:22:56.251127", "data": { "technologies": [], "description": "", @@ -5049,7 +5049,7 @@ } }, "2022_weaviate": { - "timestamp": "2025-10-12T16:22:44.598367", + "timestamp": "2025-10-20T09:22:21.032489", "data": { "technologies": [], "description": "", @@ -5058,7 +5058,7 @@ } }, "2022_librehealth": { - "timestamp": "2025-10-12T16:22:45.181013", + "timestamp": "2025-10-20T09:22:09.084968", "data": { "technologies": [], "description": "", @@ -5067,7 +5067,7 @@ } }, "2022_software-heritage": { - "timestamp": "2025-10-12T16:22:45.766695", + "timestamp": "2025-10-20T09:21:40.171797", "data": { "technologies": [], "description": "", @@ -5076,7 +5076,7 @@ } }, "2022_seaql": { - "timestamp": "2025-10-12T16:22:46.345395", + "timestamp": "2025-10-20T09:22:16.626190", "data": { "technologies": [], "description": "", @@ -5085,7 +5085,7 @@ } }, "2022_stear-group": { - "timestamp": "2025-10-12T16:22:46.928396", + "timestamp": "2025-10-20T09:23:11.989075", "data": { "technologies": [], "description": "", @@ -5094,7 +5094,7 @@ } }, "2022_powerdns": { - "timestamp": "2025-10-12T16:22:47.505540", + "timestamp": "2025-10-20T09:22:53.731119", "data": { "technologies": [], "description": "", @@ -5103,7 +5103,7 @@ } }, "2022_mbdyn": { - "timestamp": "2025-10-12T16:22:48.089863", + "timestamp": "2025-10-20T09:21:26.350692", "data": { "technologies": [], "description": "", @@ -5112,7 +5112,7 @@ } }, "2022_forschungszentrum-julich": { - "timestamp": "2025-10-12T16:22:48.670059", + "timestamp": "2025-10-20T09:22:50.589647", "data": { "technologies": [], "description": "", @@ -5121,7 +5121,7 @@ } }, "2022_synfig": { - "timestamp": "2025-10-12T16:22:49.251964", + "timestamp": "2025-10-20T09:22:57.510148", "data": { "technologies": [], "description": "", @@ -5130,7 +5130,7 @@ } }, "2022_the-julia-language": { - "timestamp": "2025-10-12T16:22:49.834443", + "timestamp": "2025-10-20T09:22:41.784739", "data": { "technologies": [], "description": "", @@ -5139,7 +5139,7 @@ } }, "2022_the-freebsd-project": { - "timestamp": "2025-10-12T16:22:50.413038", + "timestamp": "2025-10-20T09:22:07.825554", "data": { "technologies": [], "description": "", @@ -5148,7 +5148,7 @@ } }, "2022_videolan": { - "timestamp": "2025-10-12T16:22:50.994345", + "timestamp": "2025-10-20T09:23:13.248681", "data": { "technologies": [], "description": "", @@ -5157,7 +5157,7 @@ } }, "2022_rtems-project": { - "timestamp": "2025-10-12T16:22:51.578482", + "timestamp": "2025-10-20T09:21:26.978019", "data": { "technologies": [], "description": "", @@ -5166,7 +5166,7 @@ } }, "2022_orcasound": { - "timestamp": "2025-10-12T16:22:52.159216", + "timestamp": "2025-10-20T09:22:43.671712", "data": { "technologies": [], "description": "", @@ -5175,7 +5175,7 @@ } }, "2022_jenkins-x": { - "timestamp": "2025-10-12T16:22:52.741423", + "timestamp": "2025-10-20T09:22:58.774054", "data": { "technologies": [], "description": "", @@ -5184,7 +5184,7 @@ } }, "2022_internet-health-report": { - "timestamp": "2025-10-12T16:22:53.320135", + "timestamp": "2025-10-20T09:21:20.064682", "data": { "technologies": [], "description": "", @@ -5193,7 +5193,7 @@ } }, "2022_strace": { - "timestamp": "2025-10-12T16:22:53.900182", + "timestamp": "2025-10-20T09:21:41.425915", "data": { "technologies": [], "description": "", @@ -5202,7 +5202,7 @@ } }, "2022_gnome-foundation": { - "timestamp": "2025-10-12T16:22:54.482647", + "timestamp": "2025-10-20T09:21:30.118558", "data": { "technologies": [], "description": "", @@ -5211,7 +5211,7 @@ } }, "2022_dart": { - "timestamp": "2025-10-12T16:22:55.064928", + "timestamp": "2025-10-20T09:22:06.570589", "data": { "technologies": [], "description": "", @@ -5220,7 +5220,7 @@ } }, "2022_numfocus": { - "timestamp": "2025-10-12T16:22:55.645992", + "timestamp": "2025-10-20T09:21:33.256124", "data": { "technologies": [], "description": "", @@ -5229,7 +5229,7 @@ } }, "2022_sympy": { - "timestamp": "2025-10-12T16:22:56.223092", + "timestamp": "2025-10-20T09:23:15.130393", "data": { "technologies": [], "description": "", @@ -5238,7 +5238,7 @@ } }, "2022_rizin": { - "timestamp": "2025-10-12T16:22:56.802426", + "timestamp": "2025-10-20T09:21:54.626441", "data": { "technologies": [], "description": "", @@ -5247,7 +5247,7 @@ } }, "2022_jitsi": { - "timestamp": "2025-10-12T16:22:57.381578", + "timestamp": "2025-10-20T09:21:13.776767", "data": { "technologies": [], "description": "", @@ -5256,7 +5256,7 @@ } }, "2022_unikraft": { - "timestamp": "2025-10-12T16:22:57.958914", + "timestamp": "2025-10-20T09:21:59.659480", "data": { "technologies": [], "description": "", @@ -5265,7 +5265,7 @@ } }, "2022_moja-global": { - "timestamp": "2025-10-12T16:22:58.537743", + "timestamp": "2025-10-20T09:22:41.156903", "data": { "technologies": [], "description": "", @@ -5274,7 +5274,7 @@ } }, "2022_openafs": { - "timestamp": "2025-10-12T16:22:59.116599", + "timestamp": "2025-10-20T09:22:02.173104", "data": { "technologies": [], "description": "", @@ -5283,7 +5283,7 @@ } }, "2022_open3d-team": { - "timestamp": "2025-10-12T16:22:59.696838", + "timestamp": "2025-10-20T09:21:29.489012", "data": { "technologies": [], "description": "", @@ -5292,7 +5292,7 @@ } }, "2022_haiku": { - "timestamp": "2025-10-12T16:23:00.278118", + "timestamp": "2025-10-20T09:21:44.562161", "data": { "technologies": [], "description": "", @@ -5301,7 +5301,7 @@ } }, "2022_ccextractor-development": { - "timestamp": "2025-10-12T16:23:00.862272", + "timestamp": "2025-10-20T09:22:38.642131", "data": { "technologies": [], "description": "", @@ -5310,7 +5310,7 @@ } }, "2022_mathesar": { - "timestamp": "2025-10-12T16:23:01.441181", + "timestamp": "2025-10-20T09:22:34.872624", "data": { "technologies": [], "description": "", @@ -5319,7 +5319,7 @@ } }, "2022_open-chemistry": { - "timestamp": "2025-10-12T16:23:02.019357", + "timestamp": "2025-10-20T09:22:15.370877", "data": { "technologies": [], "description": "", @@ -5328,7 +5328,7 @@ } }, "2022_electron": { - "timestamp": "2025-10-12T16:23:02.599336", + "timestamp": "2025-10-20T09:22:59.398821", "data": { "technologies": [], "description": "", @@ -5337,7 +5337,7 @@ } }, "2022_gnss-sdr": { - "timestamp": "2025-10-12T16:23:03.181360", + "timestamp": "2025-10-20T09:22:56.876673", "data": { "technologies": [], "description": "", @@ -5346,7 +5346,7 @@ } }, "2022_submitty": { - "timestamp": "2025-10-12T16:23:03.766760", + "timestamp": "2025-10-20T09:23:15.757203", "data": { "technologies": [], "description": "", @@ -5355,7 +5355,7 @@ } }, "2022_libreoffice": { - "timestamp": "2025-10-12T16:23:04.346008", + "timestamp": "2025-10-20T09:23:05.693035", "data": { "technologies": [], "description": "", @@ -5364,7 +5364,7 @@ } }, "2022_processing-foundation": { - "timestamp": "2025-10-12T16:23:04.925177", + "timestamp": "2025-10-20T09:21:46.446279", "data": { "technologies": [], "description": "", @@ -5373,7 +5373,7 @@ } }, "2022_robolectric": { - "timestamp": "2025-10-12T16:23:05.505685", + "timestamp": "2025-10-20T09:21:35.142287", "data": { "technologies": [], "description": "", @@ -5382,7 +5382,7 @@ } }, "2022_beagleboardorg": { - "timestamp": "2025-10-12T16:23:06.081567", + "timestamp": "2025-10-20T09:22:28.573538", "data": { "technologies": [], "description": "", @@ -5391,7 +5391,7 @@ } }, "2022_opencv": { - "timestamp": "2025-10-12T16:23:06.659576", + "timestamp": "2025-10-20T09:22:44.299797", "data": { "technologies": [], "description": "", @@ -5400,7 +5400,7 @@ } }, "2022_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-12T16:23:07.238448", + "timestamp": "2025-10-20T09:21:24.461342", "data": { "technologies": [], "description": "", @@ -5409,7 +5409,7 @@ } }, "2022_mixxx": { - "timestamp": "2025-10-12T16:23:07.819039", + "timestamp": "2025-10-20T09:22:32.360389", "data": { "technologies": [], "description": "", @@ -5418,7 +5418,7 @@ } }, "2022_python-software-foundation": { - "timestamp": "2025-10-12T16:23:08.468034", + "timestamp": "2025-10-20T09:22:04.054558", "data": { "technologies": [], "description": "", @@ -5427,7 +5427,7 @@ } }, "2022_swift": { - "timestamp": "2025-10-12T16:23:09.055722", + "timestamp": "2025-10-20T09:21:19.442575", "data": { "technologies": [], "description": "", @@ -5436,7 +5436,7 @@ } }, "2022_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-12T16:23:09.635659", + "timestamp": "2025-10-20T09:22:52.471249", "data": { "technologies": [], "description": "", @@ -5445,7 +5445,7 @@ } }, "2022_public-lab": { - "timestamp": "2025-10-12T16:23:10.215061", + "timestamp": "2025-10-20T09:22:30.463216", "data": { "technologies": [], "description": "", @@ -5454,7 +5454,7 @@ } }, "2022_brl-cad": { - "timestamp": "2025-10-12T16:23:10.795508", + "timestamp": "2025-10-20T09:21:16.298427", "data": { "technologies": [], "description": "", @@ -5463,7 +5463,7 @@ } }, "2022_gnu-octave": { - "timestamp": "2025-10-12T16:23:11.377035", + "timestamp": "2025-10-20T09:21:39.537474", "data": { "technologies": [], "description": "", @@ -5472,7 +5472,7 @@ } }, "2022_openvino-toolkit": { - "timestamp": "2025-10-12T16:23:11.954649", + "timestamp": "2025-10-20T09:21:11.890777", "data": { "technologies": [], "description": "", @@ -5481,7 +5481,7 @@ } }, "2022_openmrs": { - "timestamp": "2025-10-12T16:23:12.535843", + "timestamp": "2025-10-20T09:22:11.597788", "data": { "technologies": [], "description": "", @@ -5490,7 +5490,7 @@ } }, "2022_gitlab": { - "timestamp": "2025-10-12T16:23:13.112981", + "timestamp": "2025-10-20T09:22:54.358156", "data": { "technologies": [], "description": "", @@ -5499,7 +5499,7 @@ } }, "2022_liquid-galaxy-project": { - "timestamp": "2025-10-12T16:23:13.691540", + "timestamp": "2025-10-20T09:22:12.853710", "data": { "technologies": [], "description": "", @@ -5508,7 +5508,7 @@ } }, "2022_wagtail": { - "timestamp": "2025-10-12T16:23:14.271320", + "timestamp": "2025-10-20T09:22:05.940485", "data": { "technologies": [], "description": "", @@ -5517,7 +5517,7 @@ } }, "2022_drupal-association": { - "timestamp": "2025-10-12T16:23:14.849455", + "timestamp": "2025-10-20T09:22:00.293148", "data": { "technologies": [], "description": "", @@ -5526,7 +5526,7 @@ } }, "2022_matrixorg": { - "timestamp": "2025-10-12T16:23:15.426971", + "timestamp": "2025-10-20T09:23:08.213005", "data": { "technologies": [], "description": "", @@ -5535,7 +5535,7 @@ } }, "2022_leap-encryption-access-project": { - "timestamp": "2025-10-12T16:23:16.008755", + "timestamp": "2025-10-20T09:23:01.909162", "data": { "technologies": [], "description": "", @@ -5544,7 +5544,7 @@ } }, "2022_django-software-foundation-8o": { - "timestamp": "2025-10-12T16:23:16.587721", + "timestamp": "2025-10-20T09:23:03.793761", "data": { "technologies": [], "description": "", @@ -5553,7 +5553,7 @@ } }, "2022_the-honeynet-project": { - "timestamp": "2025-10-12T16:23:17.170568", + "timestamp": "2025-10-20T09:22:01.546709", "data": { "technologies": [], "description": "", @@ -5562,7 +5562,7 @@ } }, "2022_the-palisadoes-foundation": { - "timestamp": "2025-10-12T16:23:17.747391", + "timestamp": "2025-10-20T09:21:50.209139", "data": { "technologies": [], "description": "", @@ -5571,7 +5571,7 @@ } }, "2022_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-12T16:23:18.333688", + "timestamp": "2025-10-20T09:21:45.190327", "data": { "technologies": [], "description": "", @@ -5580,7 +5580,7 @@ } }, "2022_sktime": { - "timestamp": "2025-10-12T16:23:18.913101", + "timestamp": "2025-10-20T09:22:10.970433", "data": { "technologies": [], "description": "", @@ -5589,7 +5589,7 @@ } }, "2022_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-12T16:23:19.499030", + "timestamp": "2025-10-20T09:22:44.931661", "data": { "technologies": [], "description": "", @@ -5598,7 +5598,7 @@ } }, "2022_plone-foundation": { - "timestamp": "2025-10-12T16:23:20.077301", + "timestamp": "2025-10-20T09:21:40.800611", "data": { "technologies": [], "description": "", @@ -5607,7 +5607,7 @@ } }, "2022_the-linux-foundation": { - "timestamp": "2025-10-12T16:23:20.689379", + "timestamp": "2025-10-20T09:22:51.216002", "data": { "technologies": [], "description": "", @@ -5616,7 +5616,7 @@ } }, "2022_zulip": { - "timestamp": "2025-10-12T16:23:21.265287", + "timestamp": "2025-10-20T09:21:25.720738", "data": { "technologies": [], "description": "", @@ -5625,7 +5625,7 @@ } }, "2022_metacall": { - "timestamp": "2025-10-12T16:23:21.845711", + "timestamp": "2025-10-20T09:22:42.411303", "data": { "technologies": [], "description": "", @@ -5634,7 +5634,7 @@ } }, "2022_tardis-rt-collaboration": { - "timestamp": "2025-10-12T16:23:22.428291", + "timestamp": "2025-10-20T09:21:33.884757", "data": { "technologies": [], "description": "", @@ -5643,7 +5643,7 @@ } }, "2022_jenkins-wp": { - "timestamp": "2025-10-12T16:23:23.012777", + "timestamp": "2025-10-20T09:21:57.766591", "data": { "technologies": [], "description": "", @@ -5652,7 +5652,7 @@ } }, "2022_tianocore": { - "timestamp": "2025-10-12T16:23:23.593510", + "timestamp": "2025-10-20T09:22:37.384946", "data": { "technologies": [], "description": "", @@ -5661,7 +5661,7 @@ } }, "2022_owasp-foundation": { - "timestamp": "2025-10-12T16:23:24.177935", + "timestamp": "2025-10-20T09:21:45.818126", "data": { "technologies": [], "description": "", @@ -5670,7 +5670,7 @@ } }, "2022_mdanalysis": { - "timestamp": "2025-10-12T16:23:24.759358", + "timestamp": "2025-10-20T09:22:53.099656", "data": { "technologies": [], "description": "", @@ -5679,7 +5679,7 @@ } }, "2022_mlpack": { - "timestamp": "2025-10-12T16:23:25.342354", + "timestamp": "2025-10-20T09:22:33.612732", "data": { "technologies": [], "description": "", @@ -5688,7 +5688,7 @@ } }, "2022_gnu-image-manipulation-program": { - "timestamp": "2025-10-12T16:23:25.919942", + "timestamp": "2025-10-20T09:22:08.459319", "data": { "technologies": [], "description": "", @@ -5697,7 +5697,7 @@ } }, "2022_openwisp": { - "timestamp": "2025-10-12T16:23:26.499880", + "timestamp": "2025-10-20T09:22:19.777964", "data": { "technologies": [], "description": "", @@ -5706,7 +5706,7 @@ } }, "2022_kart-project": { - "timestamp": "2025-10-12T16:23:27.078583", + "timestamp": "2025-10-20T09:23:05.056954", "data": { "technologies": [], "description": "", @@ -5715,7 +5715,7 @@ } }, "2022_uc-ospo": { - "timestamp": "2025-10-12T16:23:27.654710", + "timestamp": "2025-10-20T09:21:27.605025", "data": { "technologies": [], "description": "", @@ -5724,7 +5724,7 @@ } }, "2022_scummvm": { - "timestamp": "2025-10-12T16:23:28.264122", + "timestamp": "2025-10-20T09:22:18.523940", "data": { "technologies": [], "description": "", @@ -5733,7 +5733,7 @@ } }, "2022_oppia-foundation": { - "timestamp": "2025-10-12T16:23:28.851509", + "timestamp": "2025-10-20T09:21:21.946351", "data": { "technologies": [], "description": "", @@ -5742,7 +5742,7 @@ } }, "2022_fortran-lang": { - "timestamp": "2025-10-12T16:23:29.428867", + "timestamp": "2025-10-20T09:21:23.206624", "data": { "technologies": [], "description": "", @@ -5751,7 +5751,7 @@ } }, "2022_audacity": { - "timestamp": "2025-10-12T16:23:30.009866", + "timestamp": "2025-10-20T09:22:49.961260", "data": { "technologies": [], "description": "", @@ -5760,7 +5760,7 @@ } }, "2022_aflplusplus": { - "timestamp": "2025-10-12T16:23:30.590845", + "timestamp": "2025-10-20T09:21:37.027353", "data": { "technologies": [], "description": "", @@ -5769,7 +5769,7 @@ } }, "2022_freifunk": { - "timestamp": "2025-10-12T16:23:31.171423", + "timestamp": "2025-10-20T09:22:21.661466", "data": { "technologies": [], "description": "", @@ -5778,7 +5778,7 @@ } }, "2022_openastronomy": { - "timestamp": "2025-10-12T16:23:31.757119", + "timestamp": "2025-10-20T09:22:10.341683", "data": { "technologies": [], "description": "", @@ -5787,7 +5787,7 @@ } }, "2022_open-genome-informatics": { - "timestamp": "2025-10-12T16:23:32.346552", + "timestamp": "2025-10-20T09:21:38.284077", "data": { "technologies": [], "description": "", @@ -5796,7 +5796,7 @@ } }, "2022_kodi": { - "timestamp": "2025-10-12T16:23:32.926347", + "timestamp": "2025-10-20T09:21:58.400817", "data": { "technologies": [], "description": "", @@ -5805,7 +5805,7 @@ } }, "2022_gnu-radio": { - "timestamp": "2025-10-12T16:23:33.508284", + "timestamp": "2025-10-20T09:22:25.433219", "data": { "technologies": [], "description": "", @@ -5814,7 +5814,7 @@ } }, "2022_mzmine": { - "timestamp": "2025-10-12T16:23:34.088817", + "timestamp": "2025-10-20T09:21:37.656254", "data": { "technologies": [], "description": "", @@ -5823,7 +5823,7 @@ } }, "2022_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-12T16:23:34.668380", + "timestamp": "2025-10-20T09:23:10.732511", "data": { "technologies": [], "description": "", @@ -5832,7 +5832,7 @@ } }, "2022_fossology": { - "timestamp": "2025-10-12T16:23:35.245847", + "timestamp": "2025-10-20T09:22:02.800571", "data": { "technologies": [], "description": "", @@ -5841,7 +5841,7 @@ } }, "2022_apache-software-foundation": { - "timestamp": "2025-10-12T16:23:35.827802", + "timestamp": "2025-10-20T09:21:17.561132", "data": { "technologies": [], "description": "", @@ -5850,7 +5850,7 @@ } }, "2022_tensorflow": { - "timestamp": "2025-10-12T16:23:36.405722", + "timestamp": "2025-10-20T09:21:18.815791", "data": { "technologies": [], "description": "", @@ -5859,7 +5859,7 @@ } }, "2022_open-food-facts": { - "timestamp": "2025-10-12T16:23:36.983080", + "timestamp": "2025-10-20T09:21:15.034192", "data": { "technologies": [], "description": "", @@ -5868,7 +5868,7 @@ } }, "2022_git": { - "timestamp": "2025-10-12T16:23:37.559327", + "timestamp": "2025-10-20T09:22:29.202068", "data": { "technologies": [], "description": "", @@ -5877,7 +5877,7 @@ } }, "2022_xfce": { - "timestamp": "2025-10-12T16:23:38.136390", + "timestamp": "2025-10-20T09:23:06.322599", "data": { "technologies": [], "description": "", @@ -5886,7 +5886,7 @@ } }, "2022_debian": { - "timestamp": "2025-10-12T16:23:38.714084", + "timestamp": "2025-10-20T09:22:07.201322", "data": { "technologies": [], "description": "", @@ -5895,7 +5895,7 @@ } }, "2022_robocomp": { - "timestamp": "2025-10-12T16:23:39.295521", + "timestamp": "2025-10-20T09:21:28.861271", "data": { "technologies": [], "description": "", @@ -5904,7 +5904,7 @@ } }, "2022_international-catrobat-association": { - "timestamp": "2025-10-12T16:23:39.873556", + "timestamp": "2025-10-20T09:21:57.136397", "data": { "technologies": [], "description": "", @@ -5913,7 +5913,7 @@ } }, "2022_r-project-for-statistical-computing": { - "timestamp": "2025-10-12T16:23:40.459560", + "timestamp": "2025-10-20T09:23:06.950809", "data": { "technologies": [], "description": "", @@ -5922,7 +5922,7 @@ } }, "2022_the-tor-project": { - "timestamp": "2025-10-12T16:23:41.040726", + "timestamp": "2025-10-20T09:23:11.365614", "data": { "technologies": [], "description": "", @@ -5931,7 +5931,7 @@ } }, "2022_libssh": { - "timestamp": "2025-10-12T16:23:41.627459", + "timestamp": "2025-10-20T09:21:42.053803", "data": { "technologies": [], "description": "", @@ -5940,7 +5940,7 @@ } }, "2022_scala-center": { - "timestamp": "2025-10-12T16:23:42.206821", + "timestamp": "2025-10-20T09:21:52.737338", "data": { "technologies": [], "description": "", @@ -5949,7 +5949,7 @@ } }, "2022_polypheny": { - "timestamp": "2025-10-12T16:23:42.784249", + "timestamp": "2025-10-20T09:21:35.768503", "data": { "technologies": [], "description": "", @@ -5958,7 +5958,7 @@ } }, "2022_mit-app-inventor": { - "timestamp": "2025-10-12T16:23:43.363441", + "timestamp": "2025-10-20T09:23:08.848684", "data": { "technologies": [], "description": "", @@ -5967,7 +5967,7 @@ } }, "2022_open-bioinformatics-foundation-obf": { - "timestamp": "2025-10-12T16:23:43.938639", + "timestamp": "2025-10-20T09:22:23.553169", "data": { "technologies": [], "description": "", @@ -5976,7 +5976,7 @@ } }, "2022_homebrew": { - "timestamp": "2025-10-12T16:23:44.519007", + "timestamp": "2025-10-20T09:23:13.872891", "data": { "technologies": [], "description": "", @@ -5985,7 +5985,7 @@ } }, "2022_geomscale": { - "timestamp": "2025-10-12T16:23:45.096430", + "timestamp": "2025-10-20T09:22:27.942141", "data": { "technologies": [], "description": "", @@ -5994,7 +5994,7 @@ } }, "2022_cuneiform-digital-library-initiative-cdli": { - "timestamp": "2025-10-12T16:23:45.680854", + "timestamp": "2025-10-20T09:21:36.396795", "data": { "technologies": [], "description": "", @@ -6003,7 +6003,7 @@ } }, "2022_moveit": { - "timestamp": "2025-10-12T16:23:46.260284", + "timestamp": "2025-10-20T09:22:45.558164", "data": { "technologies": [], "description": "", @@ -6012,7 +6012,7 @@ } }, "2022_libvirt": { - "timestamp": "2025-10-12T16:23:46.839812", + "timestamp": "2025-10-20T09:23:14.500916", "data": { "technologies": [], "description": "", @@ -6021,7 +6021,7 @@ } }, "2022_freetype": { - "timestamp": "2025-10-12T16:23:47.421140", + "timestamp": "2025-10-20T09:21:48.329018", "data": { "technologies": [], "description": "", @@ -6030,7 +6030,7 @@ } }, "2022_cncf": { - "timestamp": "2025-10-12T16:23:48.001753", + "timestamp": "2025-10-20T09:22:29.834893", "data": { "technologies": [], "description": "", @@ -6039,7 +6039,7 @@ } }, "2022_omegaup": { - "timestamp": "2025-10-12T16:23:48.578746", + "timestamp": "2025-10-20T09:21:55.255265", "data": { "technologies": [], "description": "", @@ -6048,7 +6048,7 @@ } }, "2022_responsible-ai-and-human-centred-technology": { - "timestamp": "2025-10-12T16:23:49.169224", + "timestamp": "2025-10-20T09:22:32.984861", "data": { "technologies": [], "description": "", @@ -6057,7 +6057,7 @@ } }, "2022_chips-alliance": { - "timestamp": "2025-10-12T16:23:49.757221", + "timestamp": "2025-10-20T09:22:55.622476", "data": { "technologies": [], "description": "", @@ -6066,7 +6066,7 @@ } }, "2022_cern-hsf": { - "timestamp": "2025-10-12T16:23:50.336565", + "timestamp": "2025-10-20T09:22:13.489128", "data": { "technologies": [], "description": "", @@ -6075,7 +6075,7 @@ } }, "2022_qemu": { - "timestamp": "2025-10-12T16:23:50.916812", + "timestamp": "2025-10-20T09:21:20.694034", "data": { "technologies": [], "description": "", @@ -6084,7 +6084,7 @@ } }, "2022_score-lab": { - "timestamp": "2025-10-12T16:23:51.497214", + "timestamp": "2025-10-20T09:22:46.188158", "data": { "technologies": [], "description": "", @@ -6093,7 +6093,7 @@ } }, "2022_aboutcode": { - "timestamp": "2025-10-12T16:23:52.075520", + "timestamp": "2025-10-20T09:22:24.807347", "data": { "technologies": [], "description": "", @@ -6102,7 +6102,7 @@ } }, "2022_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-12T16:23:52.655569", + "timestamp": "2025-10-20T09:22:36.759746", "data": { "technologies": [], "description": "", @@ -6111,7 +6111,7 @@ } }, "2022_chromium-lj": { - "timestamp": "2025-10-12T16:23:53.234160", + "timestamp": "2025-10-20T09:21:53.992765", "data": { "technologies": [], "description": "", @@ -6120,7 +6120,7 @@ } }, "2022_grame": { - "timestamp": "2025-10-12T16:23:53.812804", + "timestamp": "2025-10-20T09:23:09.476610", "data": { "technologies": [], "description": "", @@ -6129,7 +6129,7 @@ } }, "2022_aossie": { - "timestamp": "2025-10-12T16:23:54.394088", + "timestamp": "2025-10-20T09:21:32.625803", "data": { "technologies": [], "description": "", @@ -6138,7 +6138,7 @@ } }, "2022_joplin": { - "timestamp": "2025-10-12T16:23:54.974790", + "timestamp": "2025-10-20T09:21:48.954643", "data": { "technologies": [], "description": "", @@ -6147,7 +6147,7 @@ } }, "2022_genome-assembly-and-annotation": { - "timestamp": "2025-10-12T16:23:55.553054", + "timestamp": "2025-10-20T09:22:04.682455", "data": { "technologies": [], "description": "", @@ -6156,7 +6156,7 @@ } }, "2022_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-12T16:23:56.159031", + "timestamp": "2025-10-20T09:22:31.101803", "data": { "technologies": [], "description": "", @@ -6165,7 +6165,7 @@ } }, "2022_haskellorg": { - "timestamp": "2025-10-12T16:23:56.739566", + "timestamp": "2025-10-20T09:22:09.713199", "data": { "technologies": [], "description": "", @@ -6174,7 +6174,7 @@ } }, "2022_chaoss": { - "timestamp": "2025-10-12T16:23:57.329633", + "timestamp": "2025-10-20T09:21:28.234179", "data": { "technologies": [], "description": "", @@ -6183,7 +6183,7 @@ } }, "2022_openstreetmap": { - "timestamp": "2025-10-12T16:23:57.913427", + "timestamp": "2025-10-20T09:23:00.024941", "data": { "technologies": [], "description": "", @@ -6192,7 +6192,7 @@ } }, "2022_jderobot": { - "timestamp": "2025-10-12T16:23:58.495322", + "timestamp": "2025-10-20T09:22:17.260078", "data": { "technologies": [], "description": "", @@ -6201,7 +6201,7 @@ } }, "2022_xwiki": { - "timestamp": "2025-10-12T16:23:59.081181", + "timestamp": "2025-10-20T09:22:34.239098", "data": { "technologies": [], "description": "", @@ -6210,7 +6210,7 @@ } }, "2022_metasploit": { - "timestamp": "2025-10-12T16:23:59.660941", + "timestamp": "2025-10-20T09:21:49.582349", "data": { "technologies": [], "description": "", @@ -6219,7 +6219,7 @@ } }, "2022_ffmpeg": { - "timestamp": "2025-10-12T16:24:00.243655", + "timestamp": "2025-10-20T09:21:31.999562", "data": { "technologies": [], "description": "", @@ -6228,7 +6228,7 @@ } }, "2022_llvm-compiler-infrastructure": { - "timestamp": "2025-10-12T16:24:00.820046", + "timestamp": "2025-10-20T09:23:04.422165", "data": { "technologies": [], "description": "", @@ -6237,7 +6237,7 @@ } }, "2022_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-12T16:24:01.398923", + "timestamp": "2025-10-20T09:21:18.189207", "data": { "technologies": [], "description": "", @@ -6246,7 +6246,7 @@ } }, "2022_incf": { - "timestamp": "2025-10-12T16:24:01.977467", + "timestamp": "2025-10-20T09:23:00.655861", "data": { "technologies": [], "description": "", @@ -6255,7 +6255,7 @@ } }, "2022_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-12T16:24:02.556323", + "timestamp": "2025-10-20T09:21:38.911711", "data": { "technologies": [], "description": "", @@ -6264,7 +6264,7 @@ } }, "2022_performance-co-pilot": { - "timestamp": "2025-10-12T16:24:03.134503", + "timestamp": "2025-10-20T09:21:42.681444", "data": { "technologies": [], "description": "", @@ -6273,7 +6273,7 @@ } }, "2022_reactos-foundation": { - "timestamp": "2025-10-12T16:24:03.715294", + "timestamp": "2025-10-20T09:21:43.309347", "data": { "technologies": [], "description": "", @@ -6282,7 +6282,7 @@ } }, "2022_kde-community": { - "timestamp": "2025-10-12T16:24:04.293579", + "timestamp": "2025-10-20T09:22:00.920624", "data": { "technologies": [], "description": "", @@ -6291,7 +6291,7 @@ } }, "2022_our-world-in-data": { - "timestamp": "2025-10-12T16:24:04.876514", + "timestamp": "2025-10-20T09:21:55.882028", "data": { "technologies": [], "description": "", @@ -6300,7 +6300,7 @@ } }, "2022_circuitverseorg": { - "timestamp": "2025-10-12T16:24:05.459295", + "timestamp": "2025-10-20T09:22:17.889751", "data": { "technologies": [], "description": "", @@ -6309,7 +6309,7 @@ } }, "2022_libcamera": { - "timestamp": "2025-10-12T16:24:06.037466", + "timestamp": "2025-10-20T09:21:13.148650", "data": { "technologies": [], "description": "", @@ -6318,7 +6318,7 @@ } }, "2022_mariadb": { - "timestamp": "2025-10-12T16:24:06.614911", + "timestamp": "2025-10-20T09:21:16.929833", "data": { "technologies": [], "description": "", @@ -6327,7 +6327,7 @@ } }, "2022_godot-engine": { - "timestamp": "2025-10-12T16:24:07.193195", + "timestamp": "2025-10-20T09:22:12.225237", "data": { "technologies": [], "description": "", @@ -6336,7 +6336,7 @@ } }, "2022_intel-video-and-audio-for-linux": { - "timestamp": "2025-10-12T16:24:07.775256", + "timestamp": "2025-10-20T09:22:14.117844", "data": { "technologies": [], "description": "", @@ -6345,7 +6345,7 @@ } }, "2022_rocketchat": { - "timestamp": "2025-10-12T16:24:08.355878", + "timestamp": "2025-10-20T09:21:51.471295", "data": { "technologies": [], "description": "", @@ -6354,7 +6354,7 @@ } }, "2022_ankidroid": { - "timestamp": "2025-10-12T16:24:08.938537", + "timestamp": "2025-10-20T09:22:46.819134", "data": { "technologies": [], "description": "", @@ -6363,7 +6363,7 @@ } }, "2022_syslog-ng": { - "timestamp": "2025-10-12T16:24:09.522717", + "timestamp": "2025-10-20T09:22:19.149964", "data": { "technologies": [], "description": "", @@ -6372,7 +6372,7 @@ } }, "2022_coreboot": { - "timestamp": "2025-10-12T16:24:10.103846", + "timestamp": "2025-10-20T09:22:47.448070", "data": { "technologies": [], "description": "", @@ -6381,7 +6381,7 @@ } }, "2022_metabrainz-foundation-inc": { - "timestamp": "2025-10-12T16:24:10.687304", + "timestamp": "2025-10-20T09:21:30.746423", "data": { "technologies": [], "description": "", @@ -6390,7 +6390,7 @@ } }, "2022_frrouting": { - "timestamp": "2025-10-12T16:24:11.266605", + "timestamp": "2025-10-20T09:21:22.573712", "data": { "technologies": [], "description": "", @@ -6399,7 +6399,7 @@ } }, "2022_casbin": { - "timestamp": "2025-10-12T16:24:11.850170", + "timestamp": "2025-10-20T09:22:51.843999", "data": { "technologies": [], "description": "", @@ -6408,7 +6408,7 @@ } }, "2022_purr-data": { - "timestamp": "2025-10-12T16:24:12.431814", + "timestamp": "2025-10-20T09:22:58.142421", "data": { "technologies": [], "description": "", @@ -6417,7 +6417,7 @@ } }, "2022_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-12T16:24:13.011336", + "timestamp": "2025-10-20T09:22:40.526379", "data": { "technologies": [], "description": "", @@ -6426,7 +6426,7 @@ } }, "2022_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-12T16:24:13.592209", + "timestamp": "2025-10-20T09:22:43.040233", "data": { "technologies": [], "description": "", @@ -6435,7 +6435,7 @@ } }, "2022_blender-foundation": { - "timestamp": "2025-10-12T16:24:14.171752", + "timestamp": "2025-10-20T09:21:15.670551", "data": { "technologies": [], "description": "", @@ -6444,7 +6444,7 @@ } }, "2022_ardupilot": { - "timestamp": "2025-10-12T16:24:14.751449", + "timestamp": "2025-10-20T09:22:24.179768", "data": { "technologies": [], "description": "", @@ -6453,7 +6453,7 @@ } }, "2022_open-robotics": { - "timestamp": "2025-10-12T16:24:15.332166", + "timestamp": "2025-10-20T09:21:21.322489", "data": { "technologies": [], "description": "", @@ -6462,7 +6462,7 @@ } }, "2022_gentoo-foundation": { - "timestamp": "2025-10-12T16:24:15.908721", + "timestamp": "2025-10-20T09:21:12.519132", "data": { "technologies": [], "description": "", @@ -6471,7 +6471,7 @@ } }, "2022_red-hen-lab": { - "timestamp": "2025-10-12T16:24:16.489231", + "timestamp": "2025-10-20T09:21:52.098798", "data": { "technologies": [], "description": "", @@ -6480,7 +6480,7 @@ } }, "2022_ioos": { - "timestamp": "2025-10-12T16:24:17.069451", + "timestamp": "2025-10-20T09:22:36.132102", "data": { "technologies": [], "description": "", @@ -6489,7 +6489,7 @@ } }, "2022_the-netbsd-foundation": { - "timestamp": "2025-10-12T16:24:17.647904", + "timestamp": "2025-10-20T09:22:14.744565", "data": { "technologies": [], "description": "", @@ -6498,7 +6498,7 @@ } }, "2022_organic-maps": { - "timestamp": "2025-10-12T16:24:18.226833", + "timestamp": "2025-10-20T09:22:22.290634", "data": { "technologies": [], "description": "", @@ -6507,7 +6507,7 @@ } }, "2022_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-12T16:24:18.801849", + "timestamp": "2025-10-20T09:22:48.078955", "data": { "technologies": [], "description": "", @@ -6516,7 +6516,7 @@ } }, "2022_keptn": { - "timestamp": "2025-10-12T16:24:19.377702", + "timestamp": "2025-10-20T09:22:49.331707", "data": { "technologies": [], "description": "", @@ -6525,7 +6525,7 @@ } }, "2022_jabref-ev": { - "timestamp": "2025-10-12T16:24:19.958262", + "timestamp": "2025-10-20T09:23:03.163824", "data": { "technologies": [], "description": "", @@ -6534,7 +6534,7 @@ } }, "2022_inkscape": { - "timestamp": "2025-10-12T16:24:20.539653", + "timestamp": "2025-10-20T09:23:10.107158", "data": { "technologies": [], "description": "", @@ -6543,7 +6543,7 @@ } }, "2022_cgal-project": { - "timestamp": "2025-10-12T16:24:21.119378", + "timestamp": "2025-10-20T09:21:59.030720", "data": { "technologies": [], "description": "", @@ -6552,7 +6552,7 @@ } }, "2022_xorg-foundation": { - "timestamp": "2025-10-12T16:24:21.698455", + "timestamp": "2025-10-20T09:21:14.404823", "data": { "technologies": [], "description": "", @@ -6561,7 +6561,7 @@ } }, "2022_radar-base": { - "timestamp": "2025-10-12T16:24:22.300482", + "timestamp": "2025-10-20T09:21:34.513449", "data": { "technologies": [], "description": "", @@ -6570,7 +6570,7 @@ } }, "2022_center-for-translational-data-science": { - "timestamp": "2025-10-12T16:24:22.881579", + "timestamp": "2025-10-20T09:22:54.988543", "data": { "technologies": [], "description": "", @@ -6579,7 +6579,7 @@ } }, "2022_opensuse-project": { - "timestamp": "2025-10-12T16:24:23.480875", + "timestamp": "2025-10-20T09:21:50.839300", "data": { "technologies": [], "description": "", @@ -6588,7 +6588,7 @@ } }, "2022_criu": { - "timestamp": "2025-10-12T16:24:24.066802", + "timestamp": "2025-10-20T09:21:56.509168", "data": { "technologies": [], "description": "", @@ -6597,7 +6597,7 @@ } }, "2022_ceph": { - "timestamp": "2025-10-12T16:24:24.650559", + "timestamp": "2025-10-20T09:21:47.700741", "data": { "technologies": [], "description": "", @@ -6606,7 +6606,7 @@ } }, "2022_jboss-community": { - "timestamp": "2025-10-12T16:24:25.232095", + "timestamp": "2025-10-20T09:22:26.061013", "data": { "technologies": [], "description": "", @@ -6615,7 +6615,7 @@ } }, "2022_sagemath": { - "timestamp": "2025-10-12T16:24:25.809965", + "timestamp": "2025-10-20T09:22:27.315188", "data": { "technologies": [], "description": "", @@ -6624,7 +6624,7 @@ } }, "2022_musescore": { - "timestamp": "2025-10-12T16:24:26.395806", + "timestamp": "2025-10-20T09:23:07.582694", "data": { "technologies": [], "description": "", @@ -6633,7 +6633,7 @@ } }, "2022_pecan-project": { - "timestamp": "2025-10-12T16:24:26.992915", + "timestamp": "2025-10-20T09:22:31.730688", "data": { "technologies": [], "description": "", @@ -6642,7 +6642,7 @@ } }, "2022_eclipse-foundation": { - "timestamp": "2025-10-12T16:24:27.572613", + "timestamp": "2025-10-20T09:22:39.897253", "data": { "technologies": [], "description": "", @@ -6651,7 +6651,7 @@ } }, "2022_postgresql": { - "timestamp": "2025-10-12T16:24:28.153100", + "timestamp": "2025-10-20T09:22:16.000293", "data": { "technologies": [], "description": "", @@ -6660,7 +6660,7 @@ } }, "2022_learning-equality": { - "timestamp": "2025-10-12T16:24:28.729775", + "timestamp": "2025-10-20T09:21:25.089821", "data": { "technologies": [], "description": "", @@ -6669,7 +6669,7 @@ } }, "2022_ruby": { - "timestamp": "2025-10-12T16:24:29.311190", + "timestamp": "2025-10-20T09:22:26.685602", "data": { "technologies": [], "description": "", @@ -6678,7 +6678,7 @@ } }, "2022_the-enigma-team": { - "timestamp": "2025-10-12T16:24:29.889122", + "timestamp": "2025-10-20T09:21:23.831196", "data": { "technologies": [], "description": "", @@ -6687,7 +6687,7 @@ } }, "2022_wellcome-sanger-institute": { - "timestamp": "2025-10-12T16:24:30.471906", + "timestamp": "2025-10-20T09:21:31.373177", "data": { "technologies": [], "description": "", @@ -6696,7 +6696,7 @@ } }, "2022_monado": { - "timestamp": "2025-10-12T16:24:31.049383", + "timestamp": "2025-10-20T09:22:39.270070", "data": { "technologies": [], "description": "", From 0fae7abdf10b9ac5a30b8f11fdcd2ece2e0716ce Mon Sep 17 00:00:00 2001 From: Imranch4 Date: Mon, 27 Oct 2025 09:23:58 +0000 Subject: [PATCH 5/6] Auto-update GSoC organizations --- README.md | 968 +++++++++++----------- gsoc_2022_web_organizations.json | 288 +++---- gsoc_2023_web_organizations.json | 160 ++-- gsoc_2024_web_organizations.json | 254 +++--- gsoc_2025_web_organizations.json | 198 ++--- gsoc_cache.json | 1280 +++++++++++++++--------------- 6 files changed, 1574 insertions(+), 1574 deletions(-) diff --git a/README.md b/README.md index 3d4cf9e..efcd6b1 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ - **GSoC 2023**: 21 organizations with web projects - **GSoC 2022**: 32 organizations with web projects -> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-20 09:23:16 +> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-27 09:23:58 ## πŸš€ GSoC 2025 - Web Development Organizations @@ -25,29 +25,29 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | -| 2. | [Plone Foundation](#2025-plone-foundation) | React | -| 3. | [Joomla!](#2025-joomla!) | HTML | -| 4. | [JdeRobot](#2025-jderobot) | JavaScript | -| 5. | [Graphite](#2025-graphite) | Node.js | -| 6. | [Processing Foundation](#2025-processing-foundation) | JavaScript | -| 7. | [freifunk](#2025-freifunk) | Babel | -| 8. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | -| 9. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | -| 10. | [Checker Framework](#2025-checker-framework) | HTML | -| 11. | [API Dash](#2025-api-dash) | GraphQL | -| 12. | [Jenkins](#2025-jenkins) | JavaScript | -| 13. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | -| 14. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | -| 15. | [Haskell.org](#2025-haskellorg) | JavaScript | -| 16. | [stdlib](#2025-stdlib) | JavaScript, Node.js | -| 17. | [Python Software Foundation](#2025-python-software-foundation) | HTML | -| 18. | [Git](#2025-git) | Ruby on Rails | +| 1. | [OpenAstronomy](#2025-openastronomy) | HTML | +| 2. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 3. | [Haskell.org](#2025-haskellorg) | JavaScript | +| 4. | [Graphite](#2025-graphite) | Node.js | +| 5. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | +| 6. | [API Dash](#2025-api-dash) | GraphQL | +| 7. | [JdeRobot](#2025-jderobot) | JavaScript | +| 8. | [Alaska](#2025-alaska) | REST API | +| 9. | [Checker Framework](#2025-checker-framework) | HTML | +| 10. | [freifunk](#2025-freifunk) | Babel | +| 11. | [stdlib](#2025-stdlib) | JavaScript, Node.js | +| 12. | [Joomla!](#2025-joomla!) | HTML | +| 13. | [BRL-CAD](#2025-brl-cad) | JavaScript | +| 14. | [Plone Foundation](#2025-plone-foundation) | React | +| 15. | [Processing Foundation](#2025-processing-foundation) | JavaScript | +| 16. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | +| 17. | [Jenkins](#2025-jenkins) | JavaScript | +| 18. | [Python Software Foundation](#2025-python-software-foundation) | HTML | | 19. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | -| 20. | [OpenAstronomy](#2025-openastronomy) | HTML | -| 21. | [BRL-CAD](#2025-brl-cad) | JavaScript | -| 22. | [Django Software Foundation](#2025-django-software-foundation) | Django | -| 23. | [Alaska](#2025-alaska) | REST API | +| 20. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | +| 21. | [Git](#2025-git) | Ruby on Rails | +| 22. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | +| 23. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript |
@@ -57,35 +57,35 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | -| 2. | [BRL-CAD](#2024-brl-cad) | JavaScript | -| 3. | [Alaska](#2024-alaska) | REST API | -| 4. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | -| 5. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 1. | [Jenkins](#2024-jenkins) | JavaScript | +| 2. | [Haskell.org](#2024-haskellorg) | JavaScript | +| 3. | [Django Software Foundation](#2024-django-software-foundation) | Django | +| 4. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | +| 5. | [Graphite](#2024-graphite) | Node.js | | 6. | [Git](#2024-git) | Ruby on Rails | -| 7. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | -| 8. | [JdeRobot](#2024-jderobot) | JavaScript | -| 9. | [Jenkins](#2024-jenkins) | JavaScript | -| 10. | [Apertium](#2024-apertium) | Less | -| 11. | [freifunk](#2024-freifunk) | Babel | -| 12. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | -| 13. | [Graphite](#2024-graphite) | Node.js | -| 14. | [caMicroscope](#2024-camicroscope) | HTML | -| 15. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | -| 16. | [Python Software Foundation](#2024-python-software-foundation) | HTML | -| 17. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 7. | [freifunk](#2024-freifunk) | Babel | +| 8. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 9. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | +| 10. | [Python Software Foundation](#2024-python-software-foundation) | HTML | +| 11. | [Open Chemistry](#2024-open-chemistry) | Babel | +| 12. | [Purr Data](#2024-purr-data) | HTML | +| 13. | [Alaska](#2024-alaska) | REST API | +| 14. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | +| 15. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 16. | [JdeRobot](#2024-jderobot) | JavaScript | +| 17. | [BRL-CAD](#2024-brl-cad) | JavaScript | | 18. | [API Dash](#2024-api-dash) | GraphQL | -| 19. | [Django Software Foundation](#2024-django-software-foundation) | Django | -| 20. | [Plone Foundation](#2024-plone-foundation) | React | -| 21. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | -| 22. | [MetaCall](#2024-metacall) | Node.js | -| 23. | [Haskell.org](#2024-haskellorg) | JavaScript | -| 24. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | -| 25. | [OpenAstronomy](#2024-openastronomy) | HTML | -| 26. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | -| 27. | [Open Chemistry](#2024-open-chemistry) | Babel | -| 28. | [Purr Data](#2024-purr-data) | HTML | -| 29. | [Polypheny](#2024-polypheny) | REST API | +| 19. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 20. | [OpenAstronomy](#2024-openastronomy) | HTML | +| 21. | [MetaCall](#2024-metacall) | Node.js | +| 22. | [Plone Foundation](#2024-plone-foundation) | React | +| 23. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | +| 24. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | +| 25. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | +| 26. | [Apertium](#2024-apertium) | Less | +| 27. | [Polypheny](#2024-polypheny) | REST API | +| 28. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 29. | [caMicroscope](#2024-camicroscope) | HTML |
@@ -95,27 +95,27 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | -| 2. | [BRL-CAD](#2023-brl-cad) | JavaScript | -| 3. | [Git](#2023-git) | Ruby on Rails | -| 4. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 1. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 2. | [Git](#2023-git) | Ruby on Rails | +| 3. | [BRL-CAD](#2023-brl-cad) | JavaScript | +| 4. | [Jenkins](#2023-jenkins) | JavaScript | | 5. | [Plone Foundation](#2023-plone-foundation) | React | -| 6. | [Python Software Foundation](#2023-python-software-foundation) | HTML | -| 7. | [Django Software Foundation](#2023-django-software-foundation) | Django | -| 8. | [JdeRobot](#2023-jderobot) | JavaScript | -| 9. | [caMicroscope](#2023-camicroscope) | HTML | -| 10. | [Processing Foundation](#2023-processing-foundation) | JavaScript | -| 11. | [Apertium](#2023-apertium) | Less | -| 12. | [MetaCall](#2023-metacall) | Node.js | -| 13. | [freifunk](#2023-freifunk) | Babel | -| 14. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | -| 15. | [Purr Data](#2023-purr-data) | HTML | -| 16. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | -| 17. | [Open Chemistry](#2023-open-chemistry) | Babel | -| 18. | [Jenkins](#2023-jenkins) | JavaScript | -| 19. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | -| 20. | [OpenAstronomy](#2023-openastronomy) | HTML | -| 21. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | +| 6. | [freifunk](#2023-freifunk) | Babel | +| 7. | [Apertium](#2023-apertium) | Less | +| 8. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | +| 9. | [Django Software Foundation](#2023-django-software-foundation) | Django | +| 10. | [Purr Data](#2023-purr-data) | HTML | +| 11. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | +| 12. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 13. | [MetaCall](#2023-metacall) | Node.js | +| 14. | [Open Chemistry](#2023-open-chemistry) | Babel | +| 15. | [JdeRobot](#2023-jderobot) | JavaScript | +| 16. | [Python Software Foundation](#2023-python-software-foundation) | HTML | +| 17. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | +| 18. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | +| 19. | [caMicroscope](#2023-camicroscope) | HTML | +| 20. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | +| 21. | [OpenAstronomy](#2023-openastronomy) | HTML |
@@ -125,76 +125,68 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [BRL-CAD](#2022-brl-cad) | JavaScript | -| 2. | [FRRouting](#2022-frrouting) | Babel | -| 3. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | -| 4. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | -| 5. | [Polypheny](#2022-polypheny) | REST API | -| 6. | [Plone Foundation](#2022-plone-foundation) | React | -| 7. | [Processing Foundation](#2022-processing-foundation) | JavaScript | -| 8. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | -| 9. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | -| 10. | [Jenkins](#2022-jenkins) | JavaScript | -| 11. | [Python Software Foundation](#2022-python-software-foundation) | HTML | -| 12. | [Haskell.org](#2022-haskellorg) | JavaScript | -| 13. | [OpenAstronomy](#2022-openastronomy) | HTML | -| 14. | [Godot Engine](#2022-godot-engine) | HTML | -| 15. | [Open Chemistry](#2022-open-chemistry) | Babel | +| 1. | [freifunk](#2022-freifunk) | Babel | +| 2. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | +| 3. | [JBoss Community](#2022-jboss-community) | Node.js | +| 4. | [OpenAstronomy](#2022-openastronomy) | HTML | +| 5. | [Purr Data](#2022-purr-data) | HTML | +| 6. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | +| 7. | [Godot Engine](#2022-godot-engine) | HTML | +| 8. | [Jenkins](#2022-jenkins) | JavaScript | +| 9. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | +| 10. | [Weaviate](#2022-weaviate) | GraphQL, REST API | +| 11. | [Open Chemistry](#2022-open-chemistry) | Babel | +| 12. | [Polypheny](#2022-polypheny) | REST API | +| 13. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | +| 14. | [Haskell.org](#2022-haskellorg) | JavaScript | +| 15. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | | 16. | [SeaQL](#2022-seaql) | GraphQL | | 17. | [JdeRobot](#2022-jderobot) | JavaScript | -| 18. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | -| 19. | [Weaviate](#2022-weaviate) | GraphQL, REST API | -| 20. | [freifunk](#2022-freifunk) | Babel | -| 21. | [JBoss Community](#2022-jboss-community) | Node.js | -| 22. | [Git](#2022-git) | Ruby on Rails | -| 23. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | -| 24. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | -| 25. | [Joomla!](#2022-joomla!) | HTML | -| 26. | [MetaCall](#2022-metacall) | Node.js | -| 27. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | -| 28. | [Casbin](#2022-casbin) | JavaScript, Node.js | -| 29. | [Purr Data](#2022-purr-data) | HTML | -| 30. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | -| 31. | [Django Software Foundation](#2022-django-software-foundation) | Django | -| 32. | [Matrix.org](#2022-matrixorg) | WebRTC | +| 18. | [Casbin](#2022-casbin) | JavaScript, Node.js | +| 19. | [Plone Foundation](#2022-plone-foundation) | React | +| 20. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | +| 21. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | +| 22. | [Django Software Foundation](#2022-django-software-foundation) | Django | +| 23. | [Python Software Foundation](#2022-python-software-foundation) | HTML | +| 24. | [Git](#2022-git) | Ruby on Rails | +| 25. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | +| 26. | [FRRouting](#2022-frrouting) | Babel | +| 27. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 28. | [Processing Foundation](#2022-processing-foundation) | JavaScript | +| 29. | [Matrix.org](#2022-matrixorg) | WebRTC | +| 30. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | +| 31. | [Joomla!](#2022-joomla!) | HTML | +| 32. | [MetaCall](#2022-metacall) | Node.js |
## πŸ“‹ GSoC 2025 - Organization Details -### 1. Electron {#2025-electron} +### 1. OpenAstronomy {#2025-openastronomy} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) - -
- -### 2. Plone Foundation {#2025-plone-foundation} - -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 3. Joomla! {#2025-joomla!} +### 2. Django Software Foundation {#2025-django-software-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 4. JdeRobot {#2025-jderobot} +### 3. Haskell.org {#2025-haskellorg} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 5. Graphite {#2025-graphite} +### 4. Graphite {#2025-graphite} - **Technologies**: Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) @@ -202,39 +194,39 @@
-### 6. Processing Foundation {#2025-processing-foundation} +### 5. AOSSIE {#2025-aossie} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 7. freifunk {#2025-freifunk} +### 6. API Dash {#2025-api-dash} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 8. AOSSIE {#2025-aossie} +### 7. JdeRobot {#2025-jderobot} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 9. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} +### 8. Alaska {#2025-alaska} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 10. Checker Framework {#2025-checker-framework} +### 9. Checker Framework {#2025-checker-framework} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) @@ -242,67 +234,75 @@
-### 11. API Dash {#2025-api-dash} +### 10. freifunk {#2025-freifunk} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 12. Jenkins {#2025-jenkins} +### 11. stdlib {#2025-stdlib} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 13. rocket.chat {#2025-rocketchat} +### 12. Joomla! {#2025-joomla!} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 14. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} +### 13. BRL-CAD {#2025-brl-cad} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 15. Haskell.org {#2025-haskellorg} +### 14. Plone Foundation {#2025-plone-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 16. stdlib {#2025-stdlib} +### 15. Processing Foundation {#2025-processing-foundation} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 17. Python Software Foundation {#2025-python-software-foundation} +### 16. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 18. Git {#2025-git} +### 17. Jenkins {#2025-jenkins} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io) + +
+ +### 18. Python Software Foundation {#2025-python-software-foundation} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
@@ -314,77 +314,77 @@
-### 20. OpenAstronomy {#2025-openastronomy} +### 20. Electron {#2025-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 21. BRL-CAD {#2025-brl-cad} +### 21. Git {#2025-git} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 22. Django Software Foundation {#2025-django-software-foundation} +### 22. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 23. Alaska {#2025-alaska} +### 23. rocket.chat {#2025-rocketchat} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
## πŸ“‹ GSoC 2024 - Organization Details -### 1. rocket.chat {#2024-rocketchat} +### 1. Jenkins {#2024-jenkins} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 2. BRL-CAD {#2024-brl-cad} +### 2. Haskell.org {#2024-haskellorg} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 3. Alaska {#2024-alaska} +### 3. Django Software Foundation {#2024-django-software-foundation} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 4. AOSSIE {#2024-aossie} +### 4. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 5. webpack {#2024-webpack} +### 5. Graphite {#2024-graphite} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
@@ -396,91 +396,91 @@
-### 7. The ENIGMA Team {#2024-the-enigma-team} +### 7. freifunk {#2024-freifunk} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 8. JdeRobot {#2024-jderobot} +### 8. stdlib {#2024-stdlib} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 9. Jenkins {#2024-jenkins} +### 9. Neutralinojs {#2024-neutralinojs} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 10. Apertium {#2024-apertium} +### 10. Python Software Foundation {#2024-python-software-foundation} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 11. freifunk {#2024-freifunk} +### 11. Open Chemistry {#2024-open-chemistry} - **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 12. Electron {#2024-electron} +### 12. Purr Data {#2024-purr-data} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 13. Graphite {#2024-graphite} +### 13. Alaska {#2024-alaska} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 14. caMicroscope {#2024-camicroscope} +### 14. Nightwatch.js {#2024-nightwatchjs} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) +- **Website**: [Visit Website](https://nightwatchjs.org)
-### 15. Nightwatch.js {#2024-nightwatchjs} +### 15. webpack {#2024-webpack} -- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) -- **Website**: [Visit Website](https://nightwatchjs.org) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 16. Python Software Foundation {#2024-python-software-foundation} +### 16. JdeRobot {#2024-jderobot} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 17. stdlib {#2024-stdlib} +### 17. BRL-CAD {#2024-brl-cad} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
@@ -492,105 +492,113 @@
-### 19. Django Software Foundation {#2024-django-software-foundation} +### 19. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 20. Plone Foundation {#2024-plone-foundation} +### 20. OpenAstronomy {#2024-openastronomy} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 21. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} +### 21. MetaCall {#2024-metacall} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 22. MetaCall {#2024-metacall} +### 22. Plone Foundation {#2024-plone-foundation} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 23. Haskell.org {#2024-haskellorg} +### 23. The ENIGMA Team {#2024-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 24. Neutralinojs {#2024-neutralinojs} +### 24. AOSSIE {#2024-aossie} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 25. OpenAstronomy {#2024-openastronomy} +### 25. rocket.chat {#2024-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 26. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} +### 26. Apertium {#2024-apertium} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 27. Open Chemistry {#2024-open-chemistry} +### 27. Polypheny {#2024-polypheny} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 28. Purr Data {#2024-purr-data} +### 28. Electron {#2024-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 29. Polypheny {#2024-polypheny} +### 29. caMicroscope {#2024-camicroscope} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
## πŸ“‹ GSoC 2023 - Organization Details -### 1. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} +### 1. The ENIGMA Team {#2023-the-enigma-team} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) -- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org) + +
+ +### 2. Git {#2023-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 2. BRL-CAD {#2023-brl-cad} +### 3. BRL-CAD {#2023-brl-cad} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) @@ -598,39 +606,47 @@
-### 3. Git {#2023-git} +### 4. Jenkins {#2023-jenkins} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 4. The ENIGMA Team {#2023-the-enigma-team} +### 5. Plone Foundation {#2023-plone-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org) + +
+ +### 6. freifunk {#2023-freifunk} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 5. Plone Foundation {#2023-plone-foundation} +### 7. Apertium {#2023-apertium} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 6. Python Software Foundation {#2023-python-software-foundation} +### 8. rocket.chat {#2023-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 7. Django Software Foundation {#2023-django-software-foundation} +### 9. Django Software Foundation {#2023-django-software-foundation} - **Technologies**: Django - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) @@ -638,23 +654,23 @@
-### 8. JdeRobot {#2023-jderobot} +### 10. Purr Data {#2023-purr-data} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 9. caMicroscope {#2023-camicroscope} +### 11. AOSSIE {#2023-aossie} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 10. Processing Foundation {#2023-processing-foundation} +### 12. Processing Foundation {#2023-processing-foundation} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) @@ -662,15 +678,7 @@
-### 11. Apertium {#2023-apertium} - -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) - -
- -### 12. MetaCall {#2023-metacall} +### 13. MetaCall {#2023-metacall} - **Technologies**: Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) @@ -678,63 +686,63 @@
-### 13. freifunk {#2023-freifunk} +### 14. Open Chemistry {#2023-open-chemistry} - **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 14. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} +### 15. JdeRobot {#2023-jderobot} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 15. Purr Data {#2023-purr-data} +### 16. Python Software Foundation {#2023-python-software-foundation} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 16. AOSSIE {#2023-aossie} +### 17. XWiki {#2023-xwiki} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 17. Open Chemistry {#2023-open-chemistry} +### 18. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) +- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/)
-### 18. Jenkins {#2023-jenkins} +### 19. caMicroscope {#2023-camicroscope} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
-### 19. rocket.chat {#2023-rocketchat} +### 20. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 20. OpenAstronomy {#2023-openastronomy} +### 21. OpenAstronomy {#2023-openastronomy} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) @@ -742,133 +750,125 @@
-### 21. XWiki {#2023-xwiki} - -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) - -
- ## πŸ“‹ GSoC 2022 - Organization Details -### 1. BRL-CAD {#2022-brl-cad} +### 1. freifunk {#2022-freifunk} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 2. FRRouting {#2022-frrouting} +### 2. syslog-ng {#2022-syslog-ng} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) -- **Website**: [Visit Website](https://frrouting.org/) +- **Technologies**: JavaScript, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) +- **Website**: [Visit Website](https://www.syslog-ng.com/)
-### 3. The ENIGMA Team {#2022-the-enigma-team} +### 3. JBoss Community {#2022-jboss-community} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) +- **Website**: [Visit Website](http://www.jboss.org/)
-### 4. AOSSIE {#2022-aossie} +### 4. OpenAstronomy {#2022-openastronomy} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 5. Polypheny {#2022-polypheny} +### 5. Purr Data {#2022-purr-data} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 6. Plone Foundation {#2022-plone-foundation} +### 6. Neutralinojs {#2022-neutralinojs} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 7. Processing Foundation {#2022-processing-foundation} +### 7. Godot Engine {#2022-godot-engine} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) +- **Website**: [Visit Website](https://godotengine.org)
-### 8. rocket.chat {#2022-rocketchat} +### 8. Jenkins {#2022-jenkins} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 9. Neutralinojs {#2022-neutralinojs} +### 9. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) +- **Website**: [Visit Website](https://fz-juelich.de/en)
-### 10. Jenkins {#2022-jenkins} +### 10. Weaviate {#2022-weaviate} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: GraphQL, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) +- **Website**: [Visit Website](https://weaviate.io)
-### 11. Python Software Foundation {#2022-python-software-foundation} +### 11. Open Chemistry {#2022-open-chemistry} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 12. Haskell.org {#2022-haskellorg} +### 12. Polypheny {#2022-polypheny} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 13. OpenAstronomy {#2022-openastronomy} +### 13. rocket.chat {#2022-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 14. Godot Engine {#2022-godot-engine} +### 14. Haskell.org {#2022-haskellorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) -- **Website**: [Visit Website](https://godotengine.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 15. Open Chemistry {#2022-open-chemistry} +### 15. AOSSIE {#2022-aossie} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
@@ -888,123 +888,123 @@
-### 18. syslog-ng {#2022-syslog-ng} +### 18. Casbin {#2022-casbin} -- **Technologies**: JavaScript, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) -- **Website**: [Visit Website](https://www.syslog-ng.com/) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) +- **Website**: [Visit Website](https://casbin.org)
-### 19. Weaviate {#2022-weaviate} +### 19. Plone Foundation {#2022-plone-foundation} -- **Technologies**: GraphQL, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) -- **Website**: [Visit Website](https://weaviate.io) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 20. freifunk {#2022-freifunk} +### 20. The ENIGMA Team {#2022-the-enigma-team} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 21. JBoss Community {#2022-jboss-community} +### 21. Electron {#2022-electron} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) -- **Website**: [Visit Website](http://www.jboss.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 22. Git {#2022-git} +### 22. Django Software Foundation {#2022-django-software-foundation} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 23. XWiki {#2022-xwiki} +### 23. Python Software Foundation {#2022-python-software-foundation} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 24. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} +### 24. Git {#2022-git} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 25. Joomla! {#2022-joomla!} +### 25. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 26. MetaCall {#2022-metacall} +### 26. FRRouting {#2022-frrouting} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) +- **Website**: [Visit Website](https://frrouting.org/)
-### 27. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} +### 27. BRL-CAD {#2022-brl-cad} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) -- **Website**: [Visit Website](https://fz-juelich.de/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 28. Casbin {#2022-casbin} +### 28. Processing Foundation {#2022-processing-foundation} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) -- **Website**: [Visit Website](https://casbin.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 29. Purr Data {#2022-purr-data} +### 29. Matrix.org {#2022-matrixorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: WebRTC +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) +- **Website**: [Visit Website](https://matrix.org)
-### 30. Electron {#2022-electron} +### 30. XWiki {#2022-xwiki} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 31. Django Software Foundation {#2022-django-software-foundation} +### 31. Joomla! {#2022-joomla!} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 32. Matrix.org {#2022-matrixorg} +### 32. MetaCall {#2022-metacall} -- **Technologies**: WebRTC -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) -- **Website**: [Visit Website](https://matrix.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
@@ -1021,7 +1021,7 @@ ## πŸ”§ Technical Details -- **Last Updated**: 2025-10-20 09:23:16 +- **Last Updated**: 2025-10-27 09:23:58 - **Data Source**: Google Summer of Code Official API - **Web Technologies Detected**: angular, asp.net, babel, bootstrap, css, d3.js, django, express, fastapi, flask, graphql, html, javascript, jest, jquery, laravel, less, mocha, node.js, phoenix, react, react native, rest api, ruby on rails, sass, scss, spring boot, stylus, tailwind, three.js, typescript, vue, webpack, webrtc, websocket - **Update Frequency**: Weekly automatic checks diff --git a/gsoc_2022_web_organizations.json b/gsoc_2022_web_organizations.json index 4d5861e..97ebaca 100644 --- a/gsoc_2022_web_organizations.json +++ b/gsoc_2022_web_organizations.json @@ -1,67 +1,43 @@ [ { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", - "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" - }, - { - "name": "FRRouting", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", "description": "", "technologies": "Babel", - "website_url": "https://frrouting.org/", - "slug": "frrouting" - }, - { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", - "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" - }, - { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", - "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "Polypheny", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "name": "syslog-ng", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", "description": "", - "technologies": "REST API", - "website_url": "https://polypheny.org", - "slug": "polypheny" + "technologies": "JavaScript, REST API", + "website_url": "https://www.syslog-ng.com/", + "slug": "syslog-ng" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "name": "JBoss Community", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "Node.js", + "website_url": "http://www.jboss.org/", + "slug": "jboss-community" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { "name": "Neutralinojs", @@ -71,6 +47,14 @@ "website_url": "https://neutralino.js.org", "slug": "neutralinojs" }, + { + "name": "Godot Engine", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "description": "", + "technologies": "HTML", + "website_url": "https://godotengine.org", + "slug": "godot-engine" + }, { "name": "Jenkins", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp", @@ -80,44 +64,60 @@ "slug": "jenkins-wp" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "name": "Forschungszentrum JΓΌlich", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "Node.js", + "website_url": "https://fz-juelich.de/en", + "slug": "forschungszentrum-julich" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", + "name": "Weaviate", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "technologies": "GraphQL, REST API", + "website_url": "https://weaviate.io", + "slug": "weaviate" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" }, { - "name": "Godot Engine", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", "description": "", - "technologies": "HTML", - "website_url": "https://godotengine.org", - "slug": "godot-engine" + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", + "description": "", + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" + }, + { + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "description": "", + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { "name": "SeaQL", @@ -136,36 +136,52 @@ "slug": "jderobot" }, { - "name": "syslog-ng", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", + "name": "Casbin", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", "description": "", - "technologies": "JavaScript, REST API", - "website_url": "https://www.syslog-ng.com/", - "slug": "syslog-ng" + "technologies": "JavaScript, Node.js", + "website_url": "https://casbin.org", + "slug": "casbin" }, { - "name": "Weaviate", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", "description": "", - "technologies": "GraphQL, REST API", - "website_url": "https://weaviate.io", - "slug": "weaviate" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "JBoss Community", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", "description": "", - "technologies": "Node.js", - "website_url": "http://www.jboss.org/", - "slug": "jboss-community" + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" + }, + { + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "description": "", + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "Git", @@ -175,14 +191,6 @@ "website_url": "https://git-scm.com/", "slug": "git" }, - { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", - "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" - }, { "name": "National Resource for Network Biology (NRNB)", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", @@ -192,67 +200,59 @@ "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", - "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" - }, - { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "name": "FRRouting", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "Babel", + "website_url": "https://frrouting.org/", + "slug": "frrouting" }, { - "name": "Forschungszentrum JΓΌlich", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", "description": "", - "technologies": "Node.js", - "website_url": "https://fz-juelich.de/en", - "slug": "forschungszentrum-julich" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "Casbin", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://casbin.org", - "slug": "casbin" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "name": "Matrix.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "WebRTC", + "website_url": "https://matrix.org", + "slug": "matrixorg" }, { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/electron", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" }, { - "name": "Matrix.org", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", "description": "", - "technologies": "WebRTC", - "website_url": "https://matrix.org", - "slug": "matrixorg" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" } ] \ No newline at end of file diff --git a/gsoc_2023_web_organizations.json b/gsoc_2023_web_organizations.json index 420d442..8f5bf1f 100644 --- a/gsoc_2023_web_organizations.json +++ b/gsoc_2023_web_organizations.json @@ -1,19 +1,11 @@ [ { - "name": "MZmine and MS-DIAL", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", - "description": "", - "technologies": "HTML", - "website_url": "https://mzmine-ms-dial-gsoc.github.io/", - "slug": "mzmine-and-ms-dial" - }, - { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", "description": "", "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { "name": "Git", @@ -24,12 +16,20 @@ "slug": "git" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", "description": "", "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { "name": "Plone Foundation", @@ -40,12 +40,28 @@ "slug": "plone-foundation" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", + "description": "", + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { "name": "Django Software Foundation", @@ -56,20 +72,20 @@ "slug": "django-software-foundation-8o" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", "description": "", - "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { "name": "Processing Foundation", @@ -79,14 +95,6 @@ "website_url": "http://processingfoundation.org", "slug": "processing-foundation" }, - { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", - "description": "", - "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" - }, { "name": "MetaCall", "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", @@ -96,60 +104,60 @@ "slug": "metacall" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", "description": "", "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", "description": "", "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", + "name": "MZmine and MS-DIAL", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "HTML", + "website_url": "https://mzmine-ms-dial-gsoc.github.io/", + "slug": "mzmine-and-ms-dial" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope", "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { "name": "OpenAstronomy", @@ -158,13 +166,5 @@ "technologies": "HTML", "website_url": "https://openastronomy.org/", "slug": "openastronomy" - }, - { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", - "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" } ] \ No newline at end of file diff --git a/gsoc_2024_web_organizations.json b/gsoc_2024_web_organizations.json index 1e6e9c4..fd75e73 100644 --- a/gsoc_2024_web_organizations.json +++ b/gsoc_2024_web_organizations.json @@ -1,43 +1,43 @@ [ { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", "description": "", "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { - "name": "webpack", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", "description": "", - "technologies": "JavaScript, Node.js, REST API, Webpack", - "website_url": "https://webpack.js.org", - "slug": "webpack" + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" }, { "name": "Git", @@ -48,68 +48,60 @@ "slug": "git" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", "description": "", - "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", "description": "", "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" - }, - { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", - "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" }, { - "name": "Graphite", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", "description": "", - "technologies": "Node.js", - "website_url": "https://graphite.rs", - "slug": "graphite" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "caMicroscope", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/alaska", "description": "", - "technologies": "HTML", - "website_url": "https://camicroscope.github.io", - "slug": "camicroscope" + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" }, { "name": "Nightwatch.js", @@ -120,20 +112,28 @@ "slug": "nightwatchjs" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" }, { - "name": "stdlib", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://stdlib.io", - "slug": "stdlib" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { "name": "API Dash", @@ -144,28 +144,20 @@ "slug": "api-dash" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", - "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" - }, - { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { "name": "MetaCall", @@ -176,52 +168,44 @@ "slug": "metacall" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", - "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" - }, - { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/aossie", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" }, { "name": "Polypheny", @@ -230,5 +214,21 @@ "technologies": "REST API", "website_url": "https://polypheny.org", "slug": "polypheny" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, + { + "name": "caMicroscope", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", + "description": "", + "technologies": "HTML", + "website_url": "https://camicroscope.github.io", + "slug": "camicroscope" } ] \ No newline at end of file diff --git a/gsoc_2025_web_organizations.json b/gsoc_2025_web_organizations.json index 3b9dc85..20130e2 100644 --- a/gsoc_2025_web_organizations.json +++ b/gsoc_2025_web_organizations.json @@ -1,35 +1,27 @@ [ { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", - "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" - }, - { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", "description": "", "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { "name": "Graphite", @@ -40,36 +32,36 @@ "slug": "graphite" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", + "name": "Alaska", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "REST API", + "website_url": "https://www.uaa.alaska.edu/research", + "slug": "alaska" }, { "name": "Checker Framework", @@ -80,52 +72,68 @@ "slug": "checker-framework" }, { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" }, { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", "description": "", "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" }, { - "name": "stdlib", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://stdlib.io", - "slug": "stdlib" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" }, { "name": "Python Software Foundation", @@ -135,14 +143,6 @@ "website_url": "https://python-gsoc.org/", "slug": "python-software-foundation" }, - { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", - "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" - }, { "name": "webpack", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", @@ -152,35 +152,35 @@ "slug": "webpack" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { - "name": "Alaska", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", "description": "", - "technologies": "REST API", - "website_url": "https://www.uaa.alaska.edu/research", - "slug": "alaska" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" } ] \ No newline at end of file diff --git a/gsoc_cache.json b/gsoc_cache.json index 56ddc75..bb11cd4 100644 --- a/gsoc_cache.json +++ b/gsoc_cache.json @@ -1,6 +1,6 @@ { "2025_eclipse-foundation": { - "timestamp": "2025-10-20T09:16:32.077502", + "timestamp": "2025-10-27T09:16:39.390383", "data": { "technologies": [], "description": "", @@ -9,7 +9,7 @@ } }, "2025_openwisp": { - "timestamp": "2025-10-20T09:16:44.036756", + "timestamp": "2025-10-27T09:18:13.807898", "data": { "technologies": [], "description": "", @@ -18,7 +18,7 @@ } }, "2025_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-20T09:17:04.124265", + "timestamp": "2025-10-27T09:17:35.855966", "data": { "technologies": [], "description": "", @@ -27,7 +27,7 @@ } }, "2025_oppia-foundation": { - "timestamp": "2025-10-20T09:15:30.500774", + "timestamp": "2025-10-27T09:17:41.391673", "data": { "technologies": [], "description": "", @@ -36,7 +36,7 @@ } }, "2025_aboutcode": { - "timestamp": "2025-10-20T09:16:21.387552", + "timestamp": "2025-10-27T09:16:49.069871", "data": { "technologies": [], "description": "", @@ -45,7 +45,7 @@ } }, "2025_center-for-translational-data-science": { - "timestamp": "2025-10-20T09:16:42.154581", + "timestamp": "2025-10-27T09:17:08.193637", "data": { "technologies": [], "description": "", @@ -54,7 +54,7 @@ } }, "2025_unicode-inc": { - "timestamp": "2025-10-20T09:16:32.704329", + "timestamp": "2025-10-27T09:17:58.438477", "data": { "technologies": [], "description": "", @@ -63,7 +63,7 @@ } }, "2025_rtems-project": { - "timestamp": "2025-10-20T09:17:12.307862", + "timestamp": "2025-10-27T09:17:32.748286", "data": { "technologies": [], "description": "", @@ -72,7 +72,7 @@ } }, "2025_videolan": { - "timestamp": "2025-10-20T09:15:57.510524", + "timestamp": "2025-10-27T09:17:16.224678", "data": { "technologies": [], "description": "", @@ -81,7 +81,7 @@ } }, "2025_international-catrobat-association": { - "timestamp": "2025-10-20T09:16:27.041592", + "timestamp": "2025-10-27T09:16:59.770673", "data": { "technologies": [], "description": "", @@ -90,7 +90,7 @@ } }, "2025_uc-ospo": { - "timestamp": "2025-10-20T09:16:50.337245", + "timestamp": "2025-10-27T09:17:06.371579", "data": { "technologies": [], "description": "", @@ -99,7 +99,7 @@ } }, "2025_fossology": { - "timestamp": "2025-10-20T09:15:51.235397", + "timestamp": "2025-10-27T09:18:07.668931", "data": { "technologies": [], "description": "", @@ -108,7 +108,7 @@ } }, "2025_inkscape": { - "timestamp": "2025-10-20T09:16:35.253461", + "timestamp": "2025-10-27T09:16:46.067403", "data": { "technologies": [], "description": "", @@ -117,7 +117,7 @@ } }, "2025_aflplusplus": { - "timestamp": "2025-10-20T09:16:37.759194", + "timestamp": "2025-10-27T09:17:49.929301", "data": { "technologies": [], "description": "", @@ -126,7 +126,7 @@ } }, "2025_mdanalysis": { - "timestamp": "2025-10-20T09:16:33.958030", + "timestamp": "2025-10-27T09:16:56.885063", "data": { "technologies": [], "description": "", @@ -135,7 +135,7 @@ } }, "2025_meshery": { - "timestamp": "2025-10-20T09:16:41.522892", + "timestamp": "2025-10-27T09:18:07.059583", "data": { "technologies": [], "description": "", @@ -144,7 +144,7 @@ } }, "2025_typelevel": { - "timestamp": "2025-10-20T09:16:58.490484", + "timestamp": "2025-10-27T09:17:24.190308", "data": { "technologies": [], "description": "", @@ -153,7 +153,7 @@ } }, "2025_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-20T09:16:18.235422", + "timestamp": "2025-10-27T09:17:35.246829", "data": { "technologies": [], "description": "", @@ -162,7 +162,7 @@ } }, "2025_libreoffice": { - "timestamp": "2025-10-20T09:15:41.799074", + "timestamp": "2025-10-27T09:16:49.674749", "data": { "technologies": [], "description": "", @@ -171,7 +171,7 @@ } }, "2025_swift": { - "timestamp": "2025-10-20T09:16:55.357917", + "timestamp": "2025-10-27T09:17:48.097165", "data": { "technologies": [], "description": "", @@ -180,7 +180,7 @@ } }, "2025_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-20T09:17:06.013707", + "timestamp": "2025-10-27T09:17:59.648432", "data": { "technologies": [], "description": "", @@ -189,7 +189,7 @@ } }, "2025_opencv": { - "timestamp": "2025-10-20T09:16:46.547200", + "timestamp": "2025-10-27T09:17:05.702883", "data": { "technologies": [], "description": "", @@ -198,7 +198,7 @@ } }, "2025_cloudcv": { - "timestamp": "2025-10-20T09:17:07.907943", + "timestamp": "2025-10-27T09:17:21.158330", "data": { "technologies": [], "description": "", @@ -207,7 +207,7 @@ } }, "2025_circuitverseorg": { - "timestamp": "2025-10-20T09:16:52.850626", + "timestamp": "2025-10-27T09:17:29.714909", "data": { "technologies": [], "description": "", @@ -225,7 +225,7 @@ } }, "2025_open-food-facts": { - "timestamp": "2025-10-20T09:17:00.996683", + "timestamp": "2025-10-27T09:18:13.136718", "data": { "technologies": [], "description": "", @@ -252,7 +252,7 @@ } }, "2025_gnu-octave": { - "timestamp": "2025-10-20T09:16:00.011555", + "timestamp": "2025-10-27T09:16:57.493574", "data": { "technologies": [], "description": "", @@ -261,7 +261,7 @@ } }, "2025_geomscale": { - "timestamp": "2025-10-20T09:16:23.267964", + "timestamp": "2025-10-27T09:17:33.358823", "data": { "technologies": [], "description": "", @@ -270,7 +270,7 @@ } }, "2025_json-schema": { - "timestamp": "2025-10-20T09:17:02.250809", + "timestamp": "2025-10-27T09:17:37.687896", "data": { "technologies": [], "description": "", @@ -279,7 +279,7 @@ } }, "2025_blender-foundation": { - "timestamp": "2025-10-20T09:15:38.027772", + "timestamp": "2025-10-27T09:16:53.892083", "data": { "technologies": [], "description": "", @@ -288,7 +288,7 @@ } }, "2025_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-20T09:16:09.443649", + "timestamp": "2025-10-27T09:17:30.927074", "data": { "technologies": [], "description": "", @@ -315,7 +315,7 @@ } }, "2025_aossie": { - "timestamp": "2025-10-20T09:16:15.097321", + "timestamp": "2025-10-27T09:17:03.980864", "data": { "technologies": [], "description": "", @@ -324,7 +324,7 @@ } }, "2025_rspamd": { - "timestamp": "2025-10-20T09:16:18.864941", + "timestamp": "2025-10-27T09:18:22.375781", "data": { "technologies": [], "description": "", @@ -333,7 +333,7 @@ } }, "2025_ffmpeg": { - "timestamp": "2025-10-20T09:17:02.876083", + "timestamp": "2025-10-27T09:17:06.979694", "data": { "technologies": [], "description": "", @@ -342,7 +342,7 @@ } }, "2025_kubevirt": { - "timestamp": "2025-10-20T09:16:16.353412", + "timestamp": "2025-10-27T09:17:40.179499", "data": { "technologies": [], "description": "", @@ -351,7 +351,7 @@ } }, "2025_ankidroid": { - "timestamp": "2025-10-20T09:16:25.156559", + "timestamp": "2025-10-27T09:16:47.850350", "data": { "technologies": [], "description": "", @@ -360,7 +360,7 @@ } }, "2025_haskellorg": { - "timestamp": "2025-10-20T09:16:40.267932", + "timestamp": "2025-10-27T09:16:52.172622", "data": { "technologies": [], "description": "", @@ -369,7 +369,7 @@ } }, "2025_asyncapi": { - "timestamp": "2025-10-20T09:15:58.760156", + "timestamp": "2025-10-27T09:17:40.785482", "data": { "technologies": [], "description": "", @@ -378,7 +378,7 @@ } }, "2025_omegaup": { - "timestamp": "2025-10-20T09:17:20.463266", + "timestamp": "2025-10-27T09:17:22.977844", "data": { "technologies": [], "description": "", @@ -387,7 +387,7 @@ } }, "2025_open-science-initiative-for-perfusion-imaging": { - "timestamp": "2025-10-20T09:16:38.386661", + "timestamp": "2025-10-27T09:18:10.100523", "data": { "technologies": [], "description": "", @@ -396,7 +396,7 @@ } }, "2025_python-software-foundation": { - "timestamp": "2025-10-20T09:16:57.238821", + "timestamp": "2025-10-27T09:17:51.751730", "data": { "technologies": [], "description": "", @@ -405,7 +405,7 @@ } }, "2025_the-freebsd-project": { - "timestamp": "2025-10-20T09:16:19.489790", + "timestamp": "2025-10-27T09:17:43.217171", "data": { "technologies": [], "description": "", @@ -414,7 +414,7 @@ } }, "2025_open-science-labs": { - "timestamp": "2025-10-20T09:16:20.135057", + "timestamp": "2025-10-27T09:17:32.140839", "data": { "technologies": [], "description": "", @@ -423,7 +423,7 @@ } }, "2025_stdlib": { - "timestamp": "2025-10-20T09:16:54.730971", + "timestamp": "2025-10-27T09:17:30.321356", "data": { "technologies": [], "description": "", @@ -432,7 +432,7 @@ } }, "2025_apache-datafusion": { - "timestamp": "2025-10-20T09:16:23.898702", + "timestamp": "2025-10-27T09:16:41.610251", "data": { "technologies": [], "description": "", @@ -441,7 +441,7 @@ } }, "2025_neuroinformatics-unit": { - "timestamp": "2025-10-20T09:15:55.630482", + "timestamp": "2025-10-27T09:17:41.999952", "data": { "technologies": [], "description": "", @@ -450,7 +450,7 @@ } }, "2025_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-20T09:15:47.460891", + "timestamp": "2025-10-27T09:18:03.959186", "data": { "technologies": [], "description": "", @@ -459,7 +459,7 @@ } }, "2025_flare": { - "timestamp": "2025-10-20T09:16:49.712314", + "timestamp": "2025-10-27T09:17:57.219268", "data": { "technologies": [], "description": "", @@ -468,7 +468,7 @@ } }, "2025_processing-foundation": { - "timestamp": "2025-10-20T09:16:00.637342", + "timestamp": "2025-10-27T09:17:43.837146", "data": { "technologies": [], "description": "", @@ -477,7 +477,7 @@ } }, "2025_mit-app-inventor": { - "timestamp": "2025-10-20T09:15:29.868646", + "timestamp": "2025-10-27T09:18:11.922796", "data": { "technologies": [], "description": "", @@ -486,7 +486,7 @@ } }, "2025_st-jude-childrens-research-hospital-ai": { - "timestamp": "2025-10-20T09:16:49.085481", + "timestamp": "2025-10-27T09:17:00.379218", "data": { "technologies": [], "description": "", @@ -495,7 +495,7 @@ } }, "2025_checker-framework": { - "timestamp": "2025-10-20T09:16:22.011767", + "timestamp": "2025-10-27T09:17:19.929999", "data": { "technologies": [], "description": "", @@ -504,7 +504,7 @@ } }, "2025_ioos": { - "timestamp": "2025-10-20T09:17:06.638265", + "timestamp": "2025-10-27T09:17:34.639843", "data": { "technologies": [], "description": "", @@ -513,7 +513,7 @@ } }, "2025_openelis-global": { - "timestamp": "2025-10-20T09:16:33.328853", + "timestamp": "2025-10-27T09:17:11.848587", "data": { "technologies": [], "description": "", @@ -522,7 +522,7 @@ } }, "2025_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-20T09:15:42.427339", + "timestamp": "2025-10-27T09:16:46.676506", "data": { "technologies": [], "description": "", @@ -540,7 +540,7 @@ } }, "2025_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-20T09:16:20.762467", + "timestamp": "2025-10-27T09:17:45.664401", "data": { "technologies": [], "description": "", @@ -549,7 +549,7 @@ } }, "2025_debian": { - "timestamp": "2025-10-20T09:16:05.657687", + "timestamp": "2025-10-27T09:17:48.702322", "data": { "technologies": [], "description": "", @@ -558,7 +558,7 @@ } }, "2025_openms": { - "timestamp": "2025-10-20T09:16:43.410896", + "timestamp": "2025-10-27T09:17:37.080759", "data": { "technologies": [], "description": "", @@ -567,7 +567,7 @@ } }, "2025_cncf": { - "timestamp": "2025-10-20T09:15:58.135336", + "timestamp": "2025-10-27T09:18:21.166189", "data": { "technologies": [], "description": "", @@ -576,7 +576,7 @@ } }, "2025_the-julia-language": { - "timestamp": "2025-10-20T09:17:15.453661", + "timestamp": "2025-10-27T09:17:57.828169", "data": { "technologies": [], "description": "", @@ -585,7 +585,7 @@ } }, "2025_kotlin-foundation": { - "timestamp": "2025-10-20T09:15:43.058253", + "timestamp": "2025-10-27T09:17:18.714447", "data": { "technologies": [], "description": "", @@ -594,7 +594,7 @@ } }, "2025_tardis-rt-collaboration": { - "timestamp": "2025-10-20T09:16:45.284342", + "timestamp": "2025-10-27T09:18:17.512939", "data": { "technologies": [], "description": "", @@ -603,7 +603,7 @@ } }, "2025_zendalona": { - "timestamp": "2025-10-20T09:16:14.469402", + "timestamp": "2025-10-27T09:16:44.959367", "data": { "technologies": [], "description": "", @@ -612,7 +612,7 @@ } }, "2025_sagemath": { - "timestamp": "2025-10-20T09:16:11.332466", + "timestamp": "2025-10-27T09:16:58.600917", "data": { "technologies": [], "description": "", @@ -621,7 +621,7 @@ } }, "2025_fossasia-bg": { - "timestamp": "2025-10-20T09:16:56.610938", + "timestamp": "2025-10-27T09:18:21.769292", "data": { "technologies": [], "description": "", @@ -630,7 +630,7 @@ } }, "2025_wagtail": { - "timestamp": "2025-10-20T09:15:33.637861", + "timestamp": "2025-10-27T09:17:13.739071", "data": { "technologies": [], "description": "", @@ -639,7 +639,7 @@ } }, "2025_google-deepmind-sq": { - "timestamp": "2025-10-20T09:15:41.175506", + "timestamp": "2025-10-27T09:16:35.937397", "data": { "technologies": [], "description": "", @@ -648,7 +648,7 @@ } }, "2025_ccextractor-development": { - "timestamp": "2025-10-20T09:16:45.915111", + "timestamp": "2025-10-27T09:17:27.284564", "data": { "technologies": [], "description": "", @@ -657,7 +657,7 @@ } }, "2025_jenkins-wp": { - "timestamp": "2025-10-20T09:16:30.821962", + "timestamp": "2025-10-27T09:17:46.881833", "data": { "technologies": [], "description": "", @@ -666,7 +666,7 @@ } }, "2025_openafs": { - "timestamp": "2025-10-20T09:16:39.014201", + "timestamp": "2025-10-27T09:18:02.133230", "data": { "technologies": [], "description": "", @@ -675,7 +675,7 @@ } }, "2025_liquid-galaxy-project": { - "timestamp": "2025-10-20T09:15:32.384301", + "timestamp": "2025-10-27T09:18:12.528415", "data": { "technologies": [], "description": "", @@ -684,7 +684,7 @@ } }, "2025_api-dash": { - "timestamp": "2025-10-20T09:16:28.937012", + "timestamp": "2025-10-27T09:17:07.584677", "data": { "technologies": [], "description": "", @@ -702,7 +702,7 @@ } }, "2025_cgal-project": { - "timestamp": "2025-10-20T09:16:07.548123", + "timestamp": "2025-10-27T09:16:34.110044", "data": { "technologies": [], "description": "", @@ -711,7 +711,7 @@ } }, "2025_graphite": { - "timestamp": "2025-10-20T09:15:48.716298", + "timestamp": "2025-10-27T09:16:55.107556", "data": { "technologies": [], "description": "", @@ -720,7 +720,7 @@ } }, "2025_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-20T09:16:50.963995", + "timestamp": "2025-10-27T09:18:18.121057", "data": { "technologies": [], "description": "", @@ -729,7 +729,7 @@ } }, "2025_pal-robotics": { - "timestamp": "2025-10-20T09:16:12.584793", + "timestamp": "2025-10-27T09:17:01.590031", "data": { "technologies": [], "description": "", @@ -738,7 +738,7 @@ } }, "2025_dora-rs-tb": { - "timestamp": "2025-10-20T09:15:46.834807", + "timestamp": "2025-10-27T09:16:39.999060", "data": { "technologies": [], "description": "", @@ -747,7 +747,7 @@ } }, "2025_freifunk": { - "timestamp": "2025-10-20T09:16:10.072429", + "timestamp": "2025-10-27T09:17:29.107221", "data": { "technologies": [], "description": "", @@ -756,7 +756,7 @@ } }, "2025_pecan-project": { - "timestamp": "2025-10-20T09:15:49.976317", + "timestamp": "2025-10-27T09:17:17.498105", "data": { "technologies": [], "description": "", @@ -765,7 +765,7 @@ } }, "2025_humanai": { - "timestamp": "2025-10-20T09:15:43.684914", + "timestamp": "2025-10-27T09:16:34.720054", "data": { "technologies": [], "description": "", @@ -774,7 +774,7 @@ } }, "2025_gitlab": { - "timestamp": "2025-10-20T09:16:27.676767", + "timestamp": "2025-10-27T09:16:50.288546", "data": { "technologies": [], "description": "", @@ -783,7 +783,7 @@ } }, "2025_metabrainz-foundation-inc": { - "timestamp": "2025-10-20T09:16:34.582966", + "timestamp": "2025-10-27T09:17:52.357896", "data": { "technologies": [], "description": "", @@ -792,7 +792,7 @@ } }, "2025_sugar-labs": { - "timestamp": "2025-10-20T09:16:30.193873", + "timestamp": "2025-10-27T09:17:23.583032", "data": { "technologies": [], "description": "", @@ -801,7 +801,7 @@ } }, "2025_uramaki-lab": { - "timestamp": "2025-10-20T09:16:48.427912", + "timestamp": "2025-10-27T09:17:28.500102", "data": { "technologies": [], "description": "", @@ -810,7 +810,7 @@ } }, "2025_kde-community": { - "timestamp": "2025-10-20T09:16:44.658947", + "timestamp": "2025-10-27T09:17:22.371864", "data": { "technologies": [], "description": "", @@ -819,7 +819,7 @@ } }, "2025_pharo-consortium": { - "timestamp": "2025-10-20T09:16:03.778333", + "timestamp": "2025-10-27T09:17:49.316170", "data": { "technologies": [], "description": "", @@ -828,7 +828,7 @@ } }, "2025_fedora-project": { - "timestamp": "2025-10-20T09:17:12.934316", + "timestamp": "2025-10-27T09:17:25.405146", "data": { "technologies": [], "description": "", @@ -837,7 +837,7 @@ } }, "2025_criu": { - "timestamp": "2025-10-20T09:17:13.570091", + "timestamp": "2025-10-27T09:18:05.176617", "data": { "technologies": [], "description": "", @@ -846,7 +846,7 @@ } }, "2025_the-honeynet-project": { - "timestamp": "2025-10-20T09:17:21.091622", + "timestamp": "2025-10-27T09:17:34.031893", "data": { "technologies": [], "description": "", @@ -855,7 +855,7 @@ } }, "2025_kornia": { - "timestamp": "2025-10-20T09:17:22.344580", + "timestamp": "2025-10-27T09:18:00.918913", "data": { "technologies": [], "description": "", @@ -864,7 +864,7 @@ } }, "2025_gprmax": { - "timestamp": "2025-10-20T09:15:44.312490", + "timestamp": "2025-10-27T09:17:44.444408", "data": { "technologies": [], "description": "", @@ -873,7 +873,7 @@ } }, "2025_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-20T09:16:52.221057", + "timestamp": "2025-10-27T09:17:56.614017", "data": { "technologies": [], "description": "", @@ -882,7 +882,7 @@ } }, "2025_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-20T09:15:48.089099", + "timestamp": "2025-10-27T09:17:36.468898", "data": { "technologies": [], "description": "", @@ -891,7 +891,7 @@ } }, "2025_joomla": { - "timestamp": "2025-10-20T09:15:45.571215", + "timestamp": "2025-10-27T09:17:31.535326", "data": { "technologies": [], "description": "", @@ -900,7 +900,7 @@ } }, "2025_qc-devs": { - "timestamp": "2025-10-20T09:16:10.706799", + "timestamp": "2025-10-27T09:17:00.983648", "data": { "technologies": [], "description": "", @@ -909,7 +909,7 @@ } }, "2025_electron": { - "timestamp": "2025-10-20T09:15:27.990348", + "timestamp": "2025-10-27T09:17:56.007556", "data": { "technologies": [], "description": "", @@ -918,7 +918,7 @@ } }, "2025_sqlancer": { - "timestamp": "2025-10-20T09:17:19.204260", + "timestamp": "2025-10-27T09:18:18.731222", "data": { "technologies": [], "description": "", @@ -927,7 +927,7 @@ } }, "2025_the-netbsd-foundation": { - "timestamp": "2025-10-20T09:15:51.866951", + "timestamp": "2025-10-27T09:16:38.723041", "data": { "technologies": [], "description": "", @@ -936,7 +936,7 @@ } }, "2025_git": { - "timestamp": "2025-10-20T09:16:57.864522", + "timestamp": "2025-10-27T09:18:00.256103", "data": { "technologies": [], "description": "", @@ -945,7 +945,7 @@ } }, "2025_numfocus": { - "timestamp": "2025-10-20T09:16:28.310222", + "timestamp": "2025-10-27T09:17:14.346240", "data": { "technologies": [], "description": "", @@ -954,7 +954,7 @@ } }, "2025_open-robotics": { - "timestamp": "2025-10-20T09:16:47.799903", + "timestamp": "2025-10-27T09:17:26.621246", "data": { "technologies": [], "description": "", @@ -972,7 +972,7 @@ } }, "2025_accord-project": { - "timestamp": "2025-10-20T09:17:16.702253", + "timestamp": "2025-10-27T09:18:19.337674", "data": { "technologies": [], "description": "", @@ -981,7 +981,7 @@ } }, "2025_the-linux-foundation": { - "timestamp": "2025-10-20T09:17:01.621555", + "timestamp": "2025-10-27T09:18:08.884331", "data": { "technologies": [], "description": "", @@ -990,7 +990,7 @@ } }, "2025_freecad": { - "timestamp": "2025-10-20T09:16:24.529504", + "timestamp": "2025-10-27T09:18:09.492874", "data": { "technologies": [], "description": "", @@ -999,7 +999,7 @@ } }, "2025_kro-kube-resource-orchestrator": { - "timestamp": "2025-10-20T09:15:52.493188", + "timestamp": "2025-10-27T09:17:09.412922", "data": { "technologies": [], "description": "", @@ -1008,7 +1008,7 @@ } }, "2025_rocketchat": { - "timestamp": "2025-10-20T09:16:36.508949", + "timestamp": "2025-10-27T09:18:16.295123", "data": { "technologies": [], "description": "", @@ -1017,7 +1017,7 @@ } }, "2025_jderobot": { - "timestamp": "2025-10-20T09:15:46.201330", + "timestamp": "2025-10-27T09:17:10.629621", "data": { "technologies": [], "description": "", @@ -1026,7 +1026,7 @@ } }, "2025_learning-equality": { - "timestamp": "2025-10-20T09:16:15.724587", + "timestamp": "2025-10-27T09:17:46.273838", "data": { "technologies": [], "description": "", @@ -1035,7 +1035,7 @@ } }, "2025_checkstyle": { - "timestamp": "2025-10-20T09:15:39.904742", + "timestamp": "2025-10-27T09:16:54.499019", "data": { "technologies": [], "description": "", @@ -1044,7 +1044,7 @@ } }, "2025_fortran-lang": { - "timestamp": "2025-10-20T09:15:39.279273", + "timestamp": "2025-10-27T09:17:16.891186", "data": { "technologies": [], "description": "", @@ -1053,7 +1053,7 @@ } }, "2025_chromium-lj": { - "timestamp": "2025-10-20T09:15:44.945014", + "timestamp": "2025-10-27T09:17:21.766515", "data": { "technologies": [], "description": "", @@ -1062,7 +1062,7 @@ } }, "2025_the-jpf-team-hg": { - "timestamp": "2025-10-20T09:16:06.919658", + "timestamp": "2025-10-27T09:16:44.347875", "data": { "technologies": [], "description": "", @@ -1071,7 +1071,7 @@ } }, "2025_wellcome-sanger-institute": { - "timestamp": "2025-10-20T09:16:01.266608", + "timestamp": "2025-10-27T09:17:02.766567", "data": { "technologies": [], "description": "", @@ -1080,7 +1080,7 @@ } }, "2025_gnome-foundation": { - "timestamp": "2025-10-20T09:15:37.402015", + "timestamp": "2025-10-27T09:16:35.328330", "data": { "technologies": [], "description": "", @@ -1089,7 +1089,7 @@ } }, "2025_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-20T09:16:31.449130", + "timestamp": "2025-10-27T09:16:50.958118", "data": { "technologies": [], "description": "", @@ -1107,7 +1107,7 @@ } }, "2025_openvino-toolkit": { - "timestamp": "2025-10-20T09:16:47.176005", + "timestamp": "2025-10-27T09:17:03.375926", "data": { "technologies": [], "description": "", @@ -1116,7 +1116,7 @@ } }, "2025_opensuse-project": { - "timestamp": "2025-10-20T09:16:13.838370", + "timestamp": "2025-10-27T09:18:20.558316", "data": { "technologies": [], "description": "", @@ -1134,7 +1134,7 @@ } }, "2025_gnu-image-manipulation-program": { - "timestamp": "2025-10-20T09:16:08.180015", + "timestamp": "2025-10-27T09:16:43.231126", "data": { "technologies": [], "description": "", @@ -1143,7 +1143,7 @@ } }, "2025_sympy": { - "timestamp": "2025-10-20T09:16:04.402221", + "timestamp": "2025-10-27T09:18:11.317798", "data": { "technologies": [], "description": "", @@ -1152,7 +1152,7 @@ } }, "2025_internet-archive": { - "timestamp": "2025-10-20T09:15:28.615185", + "timestamp": "2025-10-27T09:18:10.707806", "data": { "technologies": [], "description": "", @@ -1161,7 +1161,7 @@ } }, "2025_drupal-association": { - "timestamp": "2025-10-20T09:15:33.012708", + "timestamp": "2025-10-27T09:18:15.684426", "data": { "technologies": [], "description": "", @@ -1170,7 +1170,7 @@ } }, "2025_waycrate": { - "timestamp": "2025-10-20T09:16:59.115897", + "timestamp": "2025-10-27T09:17:53.573364", "data": { "technologies": [], "description": "", @@ -1179,7 +1179,7 @@ } }, "2025_prometheus-operator": { - "timestamp": "2025-10-20T09:16:06.291060", + "timestamp": "2025-10-27T09:16:32.892804", "data": { "technologies": [], "description": "", @@ -1197,7 +1197,7 @@ } }, "2025_unikraft": { - "timestamp": "2025-10-20T09:17:09.783120", + "timestamp": "2025-10-27T09:17:47.489860", "data": { "technologies": [], "description": "", @@ -1206,7 +1206,7 @@ } }, "2025_dbpedia": { - "timestamp": "2025-10-20T09:15:59.385705", + "timestamp": "2025-10-27T09:17:50.537870", "data": { "technologies": [], "description": "", @@ -1215,7 +1215,7 @@ } }, "2025_webpack": { - "timestamp": "2025-10-20T09:16:59.740964", + "timestamp": "2025-10-27T09:17:55.397845", "data": { "technologies": [], "description": "", @@ -1233,7 +1233,7 @@ } }, "2025_the-palisadoes-foundation": { - "timestamp": "2025-10-20T09:15:54.372783", + "timestamp": "2025-10-27T09:18:01.526071", "data": { "technologies": [], "description": "", @@ -1242,7 +1242,7 @@ } }, "2025_keploy": { - "timestamp": "2025-10-20T09:15:27.362323", + "timestamp": "2025-10-27T09:17:38.903666", "data": { "technologies": [], "description": "", @@ -1251,7 +1251,7 @@ } }, "2025_kiwix": { - "timestamp": "2025-10-20T09:16:54.104463", + "timestamp": "2025-10-27T09:18:16.906279", "data": { "technologies": [], "description": "", @@ -1260,7 +1260,7 @@ } }, "2025_libssh": { - "timestamp": "2025-10-20T09:15:49.346122", + "timestamp": "2025-10-27T09:17:15.618576", "data": { "technologies": [], "description": "", @@ -1269,7 +1269,7 @@ } }, "2025_mariadb": { - "timestamp": "2025-10-20T09:15:53.747912", + "timestamp": "2025-10-27T09:16:48.461672", "data": { "technologies": [], "description": "", @@ -1278,7 +1278,7 @@ } }, "2025_stear-group": { - "timestamp": "2025-10-20T09:16:01.892955", + "timestamp": "2025-10-27T09:16:37.107275", "data": { "technologies": [], "description": "", @@ -1287,7 +1287,7 @@ } }, "2025_sw360": { - "timestamp": "2025-10-20T09:16:11.958392", + "timestamp": "2025-10-27T09:17:10.024622", "data": { "technologies": [], "description": "", @@ -1296,7 +1296,7 @@ } }, "2025_open-transit-software-foundation": { - "timestamp": "2025-10-20T09:16:08.812065", + "timestamp": "2025-10-27T09:16:53.284010", "data": { "technologies": [], "description": "", @@ -1305,7 +1305,7 @@ } }, "2025_beagleboardorg": { - "timestamp": "2025-10-20T09:16:39.641710", + "timestamp": "2025-10-27T09:17:13.069774", "data": { "technologies": [], "description": "", @@ -1323,7 +1323,7 @@ } }, "2025_the-mifos-initiative": { - "timestamp": "2025-10-20T09:17:04.752166", + "timestamp": "2025-10-27T09:17:54.790833", "data": { "technologies": [], "description": "", @@ -1332,7 +1332,7 @@ } }, "2025_plone-foundation": { - "timestamp": "2025-10-20T09:15:29.241653", + "timestamp": "2025-10-27T09:17:42.606308", "data": { "technologies": [], "description": "", @@ -1341,7 +1341,7 @@ } }, "2025_ardupilot": { - "timestamp": "2025-10-20T09:16:03.152320", + "timestamp": "2025-10-27T09:18:08.279556", "data": { "technologies": [], "description": "", @@ -1350,7 +1350,7 @@ } }, "2025_lablua": { - "timestamp": "2025-10-20T09:16:35.880117", + "timestamp": "2025-10-27T09:17:51.143136", "data": { "technologies": [], "description": "", @@ -1359,7 +1359,7 @@ } }, "2025_chaoss": { - "timestamp": "2025-10-20T09:16:26.413303", + "timestamp": "2025-10-27T09:17:18.106861", "data": { "technologies": [], "description": "", @@ -1368,7 +1368,7 @@ } }, "2025_dart": { - "timestamp": "2025-10-20T09:16:37.135054", + "timestamp": "2025-10-27T09:17:05.092085", "data": { "technologies": [], "description": "", @@ -1377,7 +1377,7 @@ } }, "2025_the-rust-foundation": { - "timestamp": "2025-10-20T09:16:05.029267", + "timestamp": "2025-10-27T09:16:33.500519", "data": { "technologies": [], "description": "", @@ -1386,7 +1386,7 @@ } }, "2025_qemu": { - "timestamp": "2025-10-20T09:16:25.786157", + "timestamp": "2025-10-27T09:17:26.012534", "data": { "technologies": [], "description": "", @@ -1404,7 +1404,7 @@ } }, "2025_scummvm": { - "timestamp": "2025-10-20T09:15:34.891154", + "timestamp": "2025-10-27T09:18:02.739912", "data": { "technologies": [], "description": "", @@ -1413,7 +1413,7 @@ } }, "2025_brl-cad": { - "timestamp": "2025-10-20T09:17:08.532541", + "timestamp": "2025-10-27T09:17:38.295152", "data": { "technologies": [], "description": "", @@ -1422,7 +1422,7 @@ } }, "2025_incf": { - "timestamp": "2025-10-20T09:16:02.521085", + "timestamp": "2025-10-27T09:16:51.565237", "data": { "technologies": [], "description": "", @@ -1431,7 +1431,7 @@ } }, "2025_cern-hsf": { - "timestamp": "2025-10-20T09:15:50.604848", + "timestamp": "2025-10-27T09:16:31.666294", "data": { "technologies": [], "description": "", @@ -1440,7 +1440,7 @@ } }, "2025_open-climate-fix": { - "timestamp": "2025-10-20T09:16:29.567278", + "timestamp": "2025-10-27T09:17:24.798313", "data": { "technologies": [], "description": "", @@ -1449,7 +1449,7 @@ } }, "2025_jabref-ev": { - "timestamp": "2025-10-20T09:17:18.577766", + "timestamp": "2025-10-27T09:18:15.076587", "data": { "technologies": [], "description": "", @@ -1458,7 +1458,7 @@ } }, "2025_alaska": { - "timestamp": "2025-10-20T09:17:11.679823", + "timestamp": "2025-10-27T09:17:14.957501", "data": { "technologies": [], "description": "", @@ -1467,7 +1467,7 @@ } }, "2025_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-20T09:15:36.145998", + "timestamp": "2025-10-27T09:18:06.390367", "data": { "technologies": [], "description": "", @@ -1476,7 +1476,7 @@ } }, "2025_internet-health-report": { - "timestamp": "2025-10-20T09:15:56.885030", + "timestamp": "2025-10-27T09:17:27.894793", "data": { "technologies": [], "description": "", @@ -1485,7 +1485,7 @@ } }, "2025_apache-software-foundation": { - "timestamp": "2025-10-20T09:15:55.004559", + "timestamp": "2025-10-27T09:17:59.043714", "data": { "technologies": [], "description": "", @@ -1494,7 +1494,7 @@ } }, "2025_deepchem": { - "timestamp": "2025-10-20T09:15:31.129654", + "timestamp": "2025-10-27T09:18:03.349912", "data": { "technologies": [], "description": "", @@ -1503,7 +1503,7 @@ } }, "2025_the-tor-project": { - "timestamp": "2025-10-20T09:15:56.258948", + "timestamp": "2025-10-27T09:18:14.470076", "data": { "technologies": [], "description": "", @@ -1512,7 +1512,7 @@ } }, "2025_kubeflow": { - "timestamp": "2025-10-20T09:16:55.982623", + "timestamp": "2025-10-27T09:17:45.050913", "data": { "technologies": [], "description": "", @@ -1521,7 +1521,7 @@ } }, "2025_gnss-sdr": { - "timestamp": "2025-10-20T09:15:35.518396", + "timestamp": "2025-10-27T09:18:19.948964", "data": { "technologies": [], "description": "", @@ -1530,7 +1530,7 @@ } }, "2025_synfig": { - "timestamp": "2025-10-20T09:15:38.654018", + "timestamp": "2025-10-27T09:16:56.220296", "data": { "technologies": [], "description": "", @@ -1539,7 +1539,7 @@ } }, "2025_jax-and-keras": { - "timestamp": "2025-10-20T09:15:53.122399", + "timestamp": "2025-10-27T09:17:39.568654", "data": { "technologies": [], "description": "", @@ -1548,7 +1548,7 @@ } }, "2025_rizin": { - "timestamp": "2025-10-20T09:16:40.892741", + "timestamp": "2025-10-27T09:17:12.458690", "data": { "technologies": [], "description": "", @@ -1557,7 +1557,7 @@ } }, "2025_llvm-compiler-infrastructure": { - "timestamp": "2025-10-20T09:16:22.639050", + "timestamp": "2025-10-27T09:17:54.179555", "data": { "technologies": [], "description": "", @@ -1566,7 +1566,7 @@ } }, "2025_open-healthcare-network": { - "timestamp": "2025-10-20T09:16:16.982699", + "timestamp": "2025-10-27T09:18:05.783301", "data": { "technologies": [], "description": "", @@ -1575,7 +1575,7 @@ } }, "2025_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-20T09:17:14.199729", + "timestamp": "2025-10-27T09:18:04.569437", "data": { "technologies": [], "description": "", @@ -1584,7 +1584,7 @@ } }, "2025_ceph": { - "timestamp": "2025-10-20T09:17:03.498387", + "timestamp": "2025-10-27T09:17:08.802866", "data": { "technologies": [], "description": "", @@ -1593,7 +1593,7 @@ } }, "2025_neovim": { - "timestamp": "2025-10-20T09:16:17.611567", + "timestamp": "2025-10-27T09:17:52.968129", "data": { "technologies": [], "description": "", @@ -1602,7 +1602,7 @@ } }, "2025_zulip": { - "timestamp": "2025-10-20T09:15:40.543102", + "timestamp": "2025-10-27T09:17:19.320452", "data": { "technologies": [], "description": "", @@ -1611,7 +1611,7 @@ } }, "2025_gnu-radio": { - "timestamp": "2025-10-20T09:15:36.774507", + "timestamp": "2025-10-27T09:16:32.278273", "data": { "technologies": [], "description": "", @@ -1638,7 +1638,7 @@ } }, "2025_mixxx": { - "timestamp": "2025-10-20T09:15:31.757200", + "timestamp": "2025-10-27T09:17:20.540826", "data": { "technologies": [], "description": "", @@ -1647,7 +1647,7 @@ } }, "2025_d-language-foundation": { - "timestamp": "2025-10-20T09:16:13.211834", + "timestamp": "2025-10-27T09:18:22.981281", "data": { "technologies": [], "description": "", @@ -1656,7 +1656,7 @@ } }, "2025_data-for-the-common-good": { - "timestamp": "2025-10-20T09:15:34.262966", + "timestamp": "2025-10-27T09:17:11.239081", "data": { "technologies": [], "description": "", @@ -1665,7 +1665,7 @@ } }, "2024_stdlib": { - "timestamp": "2025-10-20T09:18:20.348215", + "timestamp": "2025-10-27T09:18:55.475452", "data": { "technologies": [], "description": "", @@ -1674,7 +1674,7 @@ } }, "2024_fossasia-bg": { - "timestamp": "2025-10-20T09:17:27.640420", + "timestamp": "2025-10-27T09:20:02.198718", "data": { "technologies": [], "description": "", @@ -1683,7 +1683,7 @@ } }, "2024_prometheus-operator": { - "timestamp": "2025-10-20T09:17:57.129319", + "timestamp": "2025-10-27T09:18:47.663406", "data": { "technologies": [], "description": "", @@ -1692,7 +1692,7 @@ } }, "2024_mit-app-inventor": { - "timestamp": "2025-10-20T09:17:50.857816", + "timestamp": "2025-10-27T09:19:06.896997", "data": { "technologies": [], "description": "", @@ -1701,7 +1701,7 @@ } }, "2024_scummvm": { - "timestamp": "2025-10-20T09:17:49.603293", + "timestamp": "2025-10-27T09:18:36.115983", "data": { "technologies": [], "description": "", @@ -1710,7 +1710,7 @@ } }, "2024_fortran-lang": { - "timestamp": "2025-10-20T09:18:10.309429", + "timestamp": "2025-10-27T09:18:53.649028", "data": { "technologies": [], "description": "", @@ -1719,7 +1719,7 @@ } }, "2024_submitty": { - "timestamp": "2025-10-20T09:18:07.800795", + "timestamp": "2025-10-27T09:19:23.488483", "data": { "technologies": [], "description": "", @@ -1737,7 +1737,7 @@ } }, "2024_humanai": { - "timestamp": "2025-10-20T09:18:04.031884", + "timestamp": "2025-10-27T09:18:56.082278", "data": { "technologies": [], "description": "", @@ -1746,7 +1746,7 @@ } }, "2024_the-honeynet-project": { - "timestamp": "2025-10-20T09:18:31.658499", + "timestamp": "2025-10-27T09:20:00.376025", "data": { "technologies": [], "description": "", @@ -1755,7 +1755,7 @@ } }, "2024_jderobot": { - "timestamp": "2025-10-20T09:17:50.228803", + "timestamp": "2025-10-27T09:19:31.470947", "data": { "technologies": [], "description": "", @@ -1764,7 +1764,7 @@ } }, "2024_open-transit-software-foundation": { - "timestamp": "2025-10-20T09:18:27.871761", + "timestamp": "2025-10-27T09:19:34.639435", "data": { "technologies": [], "description": "", @@ -1773,7 +1773,7 @@ } }, "2024_synfig": { - "timestamp": "2025-10-20T09:19:03.060342", + "timestamp": "2025-10-27T09:19:39.566141", "data": { "technologies": [], "description": "", @@ -1782,7 +1782,7 @@ } }, "2024_fossology": { - "timestamp": "2025-10-20T09:18:27.245683", + "timestamp": "2025-10-27T09:19:15.661644", "data": { "technologies": [], "description": "", @@ -1791,7 +1791,7 @@ } }, "2024_opencv": { - "timestamp": "2025-10-20T09:17:31.397747", + "timestamp": "2025-10-27T09:20:05.963679", "data": { "technologies": [], "description": "", @@ -1800,7 +1800,7 @@ } }, "2024_asyncapi": { - "timestamp": "2025-10-20T09:18:05.288591", + "timestamp": "2025-10-27T09:19:56.118404", "data": { "technologies": [], "description": "", @@ -1809,7 +1809,7 @@ } }, "2024_open-climate-fix": { - "timestamp": "2025-10-20T09:18:57.401860", + "timestamp": "2025-10-27T09:19:27.768257", "data": { "technologies": [], "description": "", @@ -1818,7 +1818,7 @@ } }, "2024_nixos-foundation": { - "timestamp": "2025-10-20T09:17:48.977675", + "timestamp": "2025-10-27T09:20:04.085539", "data": { "technologies": [], "description": "", @@ -1827,7 +1827,7 @@ } }, "2024_organic-maps": { - "timestamp": "2025-10-20T09:18:09.678709", + "timestamp": "2025-10-27T09:18:46.554110", "data": { "technologies": [], "description": "", @@ -1836,7 +1836,7 @@ } }, "2024_gprmax": { - "timestamp": "2025-10-20T09:18:20.974663", + "timestamp": "2025-10-27T09:18:26.507243", "data": { "technologies": [], "description": "", @@ -1845,7 +1845,7 @@ } }, "2024_graphite": { - "timestamp": "2025-10-20T09:18:05.911385", + "timestamp": "2025-10-27T09:18:43.728719", "data": { "technologies": [], "description": "", @@ -1854,7 +1854,7 @@ } }, "2024_alaska": { - "timestamp": "2025-10-20T09:17:33.908130", + "timestamp": "2025-10-27T09:19:19.840747", "data": { "technologies": [], "description": "", @@ -1863,7 +1863,7 @@ } }, "2024_pecan-project": { - "timestamp": "2025-10-20T09:17:23.871393", + "timestamp": "2025-10-27T09:19:48.168691", "data": { "technologies": [], "description": "", @@ -1881,7 +1881,7 @@ } }, "2024_the-rust-foundation": { - "timestamp": "2025-10-20T09:17:44.585537", + "timestamp": "2025-10-27T09:18:35.447734", "data": { "technologies": [], "description": "", @@ -1908,7 +1908,7 @@ } }, "2024_red-hen-lab": { - "timestamp": "2025-10-20T09:19:00.541384", + "timestamp": "2025-10-27T09:19:34.031382", "data": { "technologies": [], "description": "", @@ -1917,7 +1917,7 @@ } }, "2024_internet-health-report": { - "timestamp": "2025-10-20T09:18:35.434544", + "timestamp": "2025-10-27T09:18:41.897849", "data": { "technologies": [], "description": "", @@ -1935,7 +1935,7 @@ } }, "2024_qc-devs": { - "timestamp": "2025-10-20T09:18:03.405694", + "timestamp": "2025-10-27T09:19:40.174895", "data": { "technologies": [], "description": "", @@ -1944,7 +1944,7 @@ } }, "2024_xmpp-standards-foundation": { - "timestamp": "2025-10-20T09:18:17.839892", + "timestamp": "2025-10-27T09:19:32.079718", "data": { "technologies": [], "description": "", @@ -1962,7 +1962,7 @@ } }, "2024_rizin": { - "timestamp": "2025-10-20T09:18:08.428533", + "timestamp": "2025-10-27T09:18:39.005615", "data": { "technologies": [], "description": "", @@ -1971,7 +1971,7 @@ } }, "2024_gnss-sdr": { - "timestamp": "2025-10-20T09:17:55.876707", + "timestamp": "2025-10-27T09:18:52.433546", "data": { "technologies": [], "description": "", @@ -1989,7 +1989,7 @@ } }, "2024_scala-center": { - "timestamp": "2025-10-20T09:19:25.093878", + "timestamp": "2025-10-27T09:19:38.293867", "data": { "technologies": [], "description": "", @@ -1998,7 +1998,7 @@ } }, "2024_rocketchat": { - "timestamp": "2025-10-20T09:17:25.756224", + "timestamp": "2025-10-27T09:20:05.356370", "data": { "technologies": [], "description": "", @@ -2007,7 +2007,7 @@ } }, "2024_numfocus": { - "timestamp": "2025-10-20T09:19:05.575955", + "timestamp": "2025-10-27T09:19:51.866775", "data": { "technologies": [], "description": "", @@ -2016,7 +2016,7 @@ } }, "2024_unikraft": { - "timestamp": "2025-10-20T09:18:39.199763", + "timestamp": "2025-10-27T09:19:50.035920", "data": { "technologies": [], "description": "", @@ -2034,7 +2034,7 @@ } }, "2024_sympy": { - "timestamp": "2025-10-20T09:18:38.570064", + "timestamp": "2025-10-27T09:20:14.480021", "data": { "technologies": [], "description": "", @@ -2043,7 +2043,7 @@ } }, "2024_blender-foundation": { - "timestamp": "2025-10-20T09:17:46.466486", + "timestamp": "2025-10-27T09:18:42.504499", "data": { "technologies": [], "description": "", @@ -2052,7 +2052,7 @@ } }, "2024_wagtail": { - "timestamp": "2025-10-20T09:17:38.921102", + "timestamp": "2025-10-27T09:19:10.501049", "data": { "technologies": [], "description": "", @@ -2061,7 +2061,7 @@ } }, "2024_sugar-labs": { - "timestamp": "2025-10-20T09:18:11.561596", + "timestamp": "2025-10-27T09:19:16.270108", "data": { "technologies": [], "description": "", @@ -2070,7 +2070,7 @@ } }, "2024_llvm-compiler-infrastructure": { - "timestamp": "2025-10-20T09:17:48.348634", + "timestamp": "2025-10-27T09:19:42.659268", "data": { "technologies": [], "description": "", @@ -2088,7 +2088,7 @@ } }, "2024_sagemath": { - "timestamp": "2025-10-20T09:18:36.058269", + "timestamp": "2025-10-27T09:19:35.852370", "data": { "technologies": [], "description": "", @@ -2106,7 +2106,7 @@ } }, "2024_kubeflow": { - "timestamp": "2025-10-20T09:18:32.915560", + "timestamp": "2025-10-27T09:19:32.817951", "data": { "technologies": [], "description": "", @@ -2115,7 +2115,7 @@ } }, "2024_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-20T09:19:16.948399", + "timestamp": "2025-10-27T09:19:45.735898", "data": { "technologies": [], "description": "", @@ -2133,7 +2133,7 @@ } }, "2024_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-20T09:18:34.178101", + "timestamp": "2025-10-27T09:19:05.177762", "data": { "technologies": [], "description": "", @@ -2142,7 +2142,7 @@ } }, "2024_tardis-rt-collaboration": { - "timestamp": "2025-10-20T09:17:32.651255", + "timestamp": "2025-10-27T09:18:58.511291", "data": { "technologies": [], "description": "", @@ -2151,7 +2151,7 @@ } }, "2024_the-p4-language-consortium": { - "timestamp": "2025-10-20T09:18:18.465241", + "timestamp": "2025-10-27T09:19:02.852448", "data": { "technologies": [], "description": "", @@ -2160,7 +2160,7 @@ } }, "2024_stratosphere-laboratory-czech-technical-university-in-prague": { - "timestamp": "2025-10-20T09:18:58.658642", + "timestamp": "2025-10-27T09:19:17.511766", "data": { "technologies": [], "description": "", @@ -2178,7 +2178,7 @@ } }, "2024_the-enigma-team": { - "timestamp": "2025-10-20T09:17:40.798615", + "timestamp": "2025-10-27T09:19:57.942261", "data": { "technologies": [], "description": "", @@ -2187,7 +2187,7 @@ } }, "2024_joplin": { - "timestamp": "2025-10-20T09:18:22.858378", + "timestamp": "2025-10-27T09:20:12.050555", "data": { "technologies": [], "description": "", @@ -2196,7 +2196,7 @@ } }, "2024_django-software-foundation-8o": { - "timestamp": "2025-10-20T09:18:33.550131", + "timestamp": "2025-10-27T09:18:36.722538", "data": { "technologies": [], "description": "", @@ -2205,7 +2205,7 @@ } }, "2024_open-robotics": { - "timestamp": "2025-10-20T09:17:55.250119", + "timestamp": "2025-10-27T09:19:12.217919", "data": { "technologies": [], "description": "", @@ -2223,7 +2223,7 @@ } }, "2024_gnu-octave": { - "timestamp": "2025-10-20T09:18:53.001176", + "timestamp": "2025-10-27T09:19:00.125604", "data": { "technologies": [], "description": "", @@ -2232,7 +2232,7 @@ } }, "2024_the-freebsd-project": { - "timestamp": "2025-10-20T09:18:14.074533", + "timestamp": "2025-10-27T09:19:43.875861", "data": { "technologies": [], "description": "", @@ -2241,7 +2241,7 @@ } }, "2024_dart": { - "timestamp": "2025-10-20T09:18:39.826654", + "timestamp": "2025-10-27T09:19:42.053864", "data": { "technologies": [], "description": "", @@ -2250,7 +2250,7 @@ } }, "2024_deepchem": { - "timestamp": "2025-10-20T09:17:28.263809", + "timestamp": "2025-10-27T09:18:29.233540", "data": { "technologies": [], "description": "", @@ -2259,7 +2259,7 @@ } }, "2024_jabref-ev": { - "timestamp": "2025-10-20T09:18:19.093925", + "timestamp": "2025-10-27T09:19:29.590815", "data": { "technologies": [], "description": "", @@ -2268,7 +2268,7 @@ } }, "2024_beagleboardorg": { - "timestamp": "2025-10-20T09:18:15.956670", + "timestamp": "2025-10-27T09:20:17.649265", "data": { "technologies": [], "description": "", @@ -2277,7 +2277,7 @@ } }, "2024_python-software-foundation": { - "timestamp": "2025-10-20T09:18:19.721437", + "timestamp": "2025-10-27T09:19:08.172160", "data": { "technologies": [], "description": "", @@ -2286,7 +2286,7 @@ } }, "2024_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-20T09:19:01.172230", + "timestamp": "2025-10-27T09:19:26.554147", "data": { "technologies": [], "description": "", @@ -2295,7 +2295,7 @@ } }, "2024_sktime": { - "timestamp": "2025-10-20T09:18:02.144004", + "timestamp": "2025-10-27T09:19:14.446382", "data": { "technologies": [], "description": "", @@ -2313,7 +2313,7 @@ } }, "2024_neutralinojs": { - "timestamp": "2025-10-20T09:18:54.888547", + "timestamp": "2025-10-27T09:19:05.785778", "data": { "technologies": [], "description": "", @@ -2322,7 +2322,7 @@ } }, "2024_lablua": { - "timestamp": "2025-10-20T09:18:31.002469", + "timestamp": "2025-10-27T09:19:20.448403", "data": { "technologies": [], "description": "", @@ -2331,7 +2331,7 @@ } }, "2024_scalable-parallel-computing-laboratory": { - "timestamp": "2025-10-20T09:17:24.499561", + "timestamp": "2025-10-27T09:19:11.107588", "data": { "technologies": [], "description": "", @@ -2340,7 +2340,7 @@ } }, "2024_openrefine-j0": { - "timestamp": "2025-10-20T09:18:54.262506", + "timestamp": "2025-10-27T09:19:25.947900", "data": { "technologies": [], "description": "", @@ -2349,7 +2349,7 @@ } }, "2024_gnome-foundation": { - "timestamp": "2025-10-20T09:18:25.364267", + "timestamp": "2025-10-27T09:19:37.684141", "data": { "technologies": [], "description": "", @@ -2358,7 +2358,7 @@ } }, "2024_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-20T09:18:30.378482", + "timestamp": "2025-10-27T09:19:40.838238", "data": { "technologies": [], "description": "", @@ -2367,7 +2367,7 @@ } }, "2024_ioos": { - "timestamp": "2025-10-20T09:17:43.949128", + "timestamp": "2025-10-27T09:19:59.769476", "data": { "technologies": [], "description": "", @@ -2376,7 +2376,7 @@ } }, "2024_rtems-project": { - "timestamp": "2025-10-20T09:18:21.599891", + "timestamp": "2025-10-27T09:19:08.781370", "data": { "technologies": [], "description": "", @@ -2385,7 +2385,7 @@ } }, "2024_uramaki-lab": { - "timestamp": "2025-10-20T09:17:27.013457", + "timestamp": "2025-10-27T09:19:04.570800", "data": { "technologies": [], "description": "", @@ -2403,7 +2403,7 @@ } }, "2024_gnu-project": { - "timestamp": "2025-10-20T09:17:41.436678", + "timestamp": "2025-10-27T09:20:11.430134", "data": { "technologies": [], "description": "", @@ -2412,7 +2412,7 @@ } }, "2024_libssh": { - "timestamp": "2025-10-20T09:19:09.341224", + "timestamp": "2025-10-27T09:19:53.690231", "data": { "technologies": [], "description": "", @@ -2421,7 +2421,7 @@ } }, "2024_the-netbsd-foundation": { - "timestamp": "2025-10-20T09:18:26.616835", + "timestamp": "2025-10-27T09:19:48.776649", "data": { "technologies": [], "description": "", @@ -2430,7 +2430,7 @@ } }, "2024_data-for-the-common-good": { - "timestamp": "2025-10-20T09:18:00.257838", + "timestamp": "2025-10-27T09:19:25.343135", "data": { "technologies": [], "description": "", @@ -2439,7 +2439,7 @@ } }, "2024_mixxx": { - "timestamp": "2025-10-20T09:18:15.329956", + "timestamp": "2025-10-27T09:18:25.900006", "data": { "technologies": [], "description": "", @@ -2448,7 +2448,7 @@ } }, "2024_jitsi": { - "timestamp": "2025-10-20T09:17:54.622975", + "timestamp": "2025-10-27T09:19:15.052491", "data": { "technologies": [], "description": "", @@ -2457,7 +2457,7 @@ } }, "2024_videolan": { - "timestamp": "2025-10-20T09:18:29.752877", + "timestamp": "2025-10-27T09:19:22.881256", "data": { "technologies": [], "description": "", @@ -2475,7 +2475,7 @@ } }, "2024_keploy": { - "timestamp": "2025-10-20T09:17:56.504603", + "timestamp": "2025-10-27T09:18:51.324569", "data": { "technologies": [], "description": "", @@ -2484,7 +2484,7 @@ } }, "2024_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-20T09:17:37.666488", + "timestamp": "2025-10-27T09:20:00.985306", "data": { "technologies": [], "description": "", @@ -2493,7 +2493,7 @@ } }, "2024_zendalona": { - "timestamp": "2025-10-20T09:18:32.285468", + "timestamp": "2025-10-27T09:18:50.106030", "data": { "technologies": [], "description": "", @@ -2502,7 +2502,7 @@ } }, "2024_libvirt": { - "timestamp": "2025-10-20T09:18:43.582087", + "timestamp": "2025-10-27T09:20:09.611311", "data": { "technologies": [], "description": "", @@ -2511,7 +2511,7 @@ } }, "2024_learning-equality": { - "timestamp": "2025-10-20T09:17:30.772385", + "timestamp": "2025-10-27T09:18:44.337216", "data": { "technologies": [], "description": "", @@ -2520,7 +2520,7 @@ } }, "2024_city-of-boston": { - "timestamp": "2025-10-20T09:18:52.377254", + "timestamp": "2025-10-27T09:20:08.391763", "data": { "technologies": [], "description": "", @@ -2529,7 +2529,7 @@ } }, "2024_cern-hsf": { - "timestamp": "2025-10-20T09:18:48.609558", + "timestamp": "2025-10-27T09:19:44.482619", "data": { "technologies": [], "description": "", @@ -2547,7 +2547,7 @@ } }, "2024_opensuse-project": { - "timestamp": "2025-10-20T09:19:01.801257", + "timestamp": "2025-10-27T09:20:04.690583", "data": { "technologies": [], "description": "", @@ -2565,7 +2565,7 @@ } }, "2024_json-schema": { - "timestamp": "2025-10-20T09:18:06.542900", + "timestamp": "2025-10-27T09:18:44.944961", "data": { "technologies": [], "description": "", @@ -2574,7 +2574,7 @@ } }, "2024_gnu-image-manipulation-program": { - "timestamp": "2025-10-20T09:17:52.112468", + "timestamp": "2025-10-27T09:20:15.083488", "data": { "technologies": [], "description": "", @@ -2592,7 +2592,7 @@ } }, "2024_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-20T09:18:44.208156", + "timestamp": "2025-10-27T09:20:16.437425", "data": { "technologies": [], "description": "", @@ -2601,7 +2601,7 @@ } }, "2024_omegaup": { - "timestamp": "2025-10-20T09:18:02.769425", + "timestamp": "2025-10-27T09:19:37.073713", "data": { "technologies": [], "description": "", @@ -2610,7 +2610,7 @@ } }, "2024_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-20T09:19:15.687546", + "timestamp": "2025-10-27T09:19:47.561397", "data": { "technologies": [], "description": "", @@ -2628,7 +2628,7 @@ } }, "2024_uc-ospo": { - "timestamp": "2025-10-20T09:18:46.718088", + "timestamp": "2025-10-27T09:20:13.264764", "data": { "technologies": [], "description": "", @@ -2637,7 +2637,7 @@ } }, "2024_stichting-su2": { - "timestamp": "2025-10-20T09:18:01.515846", + "timestamp": "2025-10-27T09:18:33.837019", "data": { "technologies": [], "description": "", @@ -2646,7 +2646,7 @@ } }, "2024_invesalius": { - "timestamp": "2025-10-20T09:18:25.989592", + "timestamp": "2025-10-27T09:18:28.623493", "data": { "technologies": [], "description": "", @@ -2655,7 +2655,7 @@ } }, "2024_moveit": { - "timestamp": "2025-10-20T09:17:47.722289", + "timestamp": "2025-10-27T09:19:07.505188", "data": { "technologies": [], "description": "", @@ -2673,7 +2673,7 @@ } }, "2024_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-20T09:18:50.492129", + "timestamp": "2025-10-27T09:19:18.120952", "data": { "technologies": [], "description": "", @@ -2682,7 +2682,7 @@ } }, "2024_drupal-association": { - "timestamp": "2025-10-20T09:18:09.054864", + "timestamp": "2025-10-27T09:18:38.336767", "data": { "technologies": [], "description": "", @@ -2691,7 +2691,7 @@ } }, "2024_c2si": { - "timestamp": "2025-10-20T09:17:32.023761", + "timestamp": "2025-10-27T09:18:43.119687", "data": { "technologies": [], "description": "", @@ -2700,7 +2700,7 @@ } }, "2024_the-linux-foundation": { - "timestamp": "2025-10-20T09:18:42.957735", + "timestamp": "2025-10-27T09:20:07.781242", "data": { "technologies": [], "description": "", @@ -2709,7 +2709,7 @@ } }, "2024_grame": { - "timestamp": "2025-10-20T09:19:11.861273", + "timestamp": "2025-10-27T09:20:15.703635", "data": { "technologies": [], "description": "", @@ -2718,7 +2718,7 @@ } }, "2024_swift": { - "timestamp": "2025-10-20T09:19:21.958349", + "timestamp": "2025-10-27T09:19:54.296907", "data": { "technologies": [], "description": "", @@ -2727,7 +2727,7 @@ } }, "2024_checkstyle": { - "timestamp": "2025-10-20T09:17:28.888107", + "timestamp": "2025-10-27T09:19:27.162349", "data": { "technologies": [], "description": "", @@ -2736,7 +2736,7 @@ } }, "2024_metabrainz-foundation-inc": { - "timestamp": "2025-10-20T09:18:40.452131", + "timestamp": "2025-10-27T09:19:18.730881", "data": { "technologies": [], "description": "", @@ -2745,7 +2745,7 @@ } }, "2024_aboutcode": { - "timestamp": "2025-10-20T09:18:49.240259", + "timestamp": "2025-10-27T09:19:38.960390", "data": { "technologies": [], "description": "", @@ -2754,7 +2754,7 @@ } }, "2024_geomscale": { - "timestamp": "2025-10-20T09:17:30.142307", + "timestamp": "2025-10-27T09:19:36.460276", "data": { "technologies": [], "description": "", @@ -2763,7 +2763,7 @@ } }, "2024_open-chromosome-collective": { - "timestamp": "2025-10-20T09:17:52.740205", + "timestamp": "2025-10-27T09:19:30.196233", "data": { "technologies": [], "description": "", @@ -2772,7 +2772,7 @@ } }, "2024_eunomia-bpf": { - "timestamp": "2025-10-20T09:18:58.030144", + "timestamp": "2025-10-27T09:19:30.804686", "data": { "technologies": [], "description": "", @@ -2781,7 +2781,7 @@ } }, "2024_datenlord-6z": { - "timestamp": "2025-10-20T09:17:35.785742", + "timestamp": "2025-10-27T09:18:56.689929", "data": { "technologies": [], "description": "", @@ -2790,7 +2790,7 @@ } }, "2024_api-dash": { - "timestamp": "2025-10-20T09:18:24.110201", + "timestamp": "2025-10-27T09:19:46.954112", "data": { "technologies": [], "description": "", @@ -2799,7 +2799,7 @@ } }, "2024_oppia-foundation": { - "timestamp": "2025-10-20T09:17:29.513035", + "timestamp": "2025-10-27T09:19:46.344265", "data": { "technologies": [], "description": "", @@ -2808,7 +2808,7 @@ } }, "2024_dbpedia": { - "timestamp": "2025-10-20T09:18:42.330182", + "timestamp": "2025-10-27T09:19:16.905304", "data": { "technologies": [], "description": "", @@ -2817,7 +2817,7 @@ } }, "2024_criu": { - "timestamp": "2025-10-20T09:18:45.464795", + "timestamp": "2025-10-27T09:18:48.275279", "data": { "technologies": [], "description": "", @@ -2826,7 +2826,7 @@ } }, "2024_brl-cad": { - "timestamp": "2025-10-20T09:17:33.281010", + "timestamp": "2025-10-27T09:19:41.444111", "data": { "technologies": [], "description": "", @@ -2835,7 +2835,7 @@ } }, "2024_ceph": { - "timestamp": "2025-10-20T09:17:34.533767", + "timestamp": "2025-10-27T09:18:32.121329", "data": { "technologies": [], "description": "", @@ -2844,7 +2844,7 @@ } }, "2024_openvino-toolkit": { - "timestamp": "2025-10-20T09:17:42.062878", + "timestamp": "2025-10-27T09:19:03.460607", "data": { "technologies": [], "description": "", @@ -2853,7 +2853,7 @@ } }, "2024_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-20T09:19:16.317941", + "timestamp": "2025-10-27T09:20:17.042828", "data": { "technologies": [], "description": "", @@ -2862,7 +2862,7 @@ } }, "2024_openmrs": { - "timestamp": "2025-10-20T09:19:06.203525", + "timestamp": "2025-10-27T09:19:21.666142", "data": { "technologies": [], "description": "", @@ -2871,7 +2871,7 @@ } }, "2024_aossie": { - "timestamp": "2025-10-20T09:17:36.412528", + "timestamp": "2025-10-27T09:20:01.590636", "data": { "technologies": [], "description": "", @@ -2880,7 +2880,7 @@ } }, "2024_open-healthcare-network": { - "timestamp": "2025-10-20T09:17:25.125812", + "timestamp": "2025-10-27T09:20:13.873659", "data": { "technologies": [], "description": "", @@ -2889,7 +2889,7 @@ } }, "2024_wikimedia-foundation-nd": { - "timestamp": "2025-10-20T09:17:40.173131", + "timestamp": "2025-10-27T09:19:24.097763", "data": { "technologies": [], "description": "", @@ -2916,7 +2916,7 @@ } }, "2024_eclipse-foundation": { - "timestamp": "2025-10-20T09:19:23.836951", + "timestamp": "2025-10-27T09:19:59.160362", "data": { "technologies": [], "description": "", @@ -2934,7 +2934,7 @@ } }, "2024_chips-alliance": { - "timestamp": "2025-10-20T09:17:47.094650", + "timestamp": "2025-10-27T09:19:22.274482", "data": { "technologies": [], "description": "", @@ -2943,7 +2943,7 @@ } }, "2024_mautic": { - "timestamp": "2025-10-20T09:18:12.817536", + "timestamp": "2025-10-27T09:20:18.862068", "data": { "technologies": [], "description": "", @@ -2952,7 +2952,7 @@ } }, "2024_git": { - "timestamp": "2025-10-20T09:17:39.547960", + "timestamp": "2025-10-27T09:18:54.256919", "data": { "technologies": [], "description": "", @@ -2961,7 +2961,7 @@ } }, "2024_the-mifos-initiative": { - "timestamp": "2025-10-20T09:18:55.517798", + "timestamp": "2025-10-27T09:18:57.294868", "data": { "technologies": [], "description": "", @@ -2970,7 +2970,7 @@ } }, "2024_cloudcv": { - "timestamp": "2025-10-20T09:17:26.385973", + "timestamp": "2025-10-27T09:19:35.244470", "data": { "technologies": [], "description": "", @@ -2979,7 +2979,7 @@ } }, "2024_openwisp": { - "timestamp": "2025-10-20T09:17:38.293884", + "timestamp": "2025-10-27T09:19:54.904702", "data": { "technologies": [], "description": "", @@ -2997,7 +2997,7 @@ } }, "2024_debian": { - "timestamp": "2025-10-20T09:17:45.214438", + "timestamp": "2025-10-27T09:18:31.012654", "data": { "technologies": [], "description": "", @@ -3006,7 +3006,7 @@ } }, "2024_camicroscope": { - "timestamp": "2025-10-20T09:18:14.704818", + "timestamp": "2025-10-27T09:20:18.255728", "data": { "technologies": [], "description": "", @@ -3015,7 +3015,7 @@ } }, "2024_electron": { - "timestamp": "2025-10-20T09:17:59.006558", + "timestamp": "2025-10-27T09:20:10.824454", "data": { "technologies": [], "description": "", @@ -3024,7 +3024,7 @@ } }, "2024_accord-project": { - "timestamp": "2025-10-20T09:17:53.995112", + "timestamp": "2025-10-27T09:18:53.041549", "data": { "technologies": [], "description": "", @@ -3042,7 +3042,7 @@ } }, "2024_aflplusplus": { - "timestamp": "2025-10-20T09:18:37.945564", + "timestamp": "2025-10-27T09:20:10.217644", "data": { "technologies": [], "description": "", @@ -3060,7 +3060,7 @@ } }, "2024_haiku": { - "timestamp": "2025-10-20T09:18:16.583100", + "timestamp": "2025-10-27T09:20:12.658053", "data": { "technologies": [], "description": "", @@ -3069,7 +3069,7 @@ } }, "2024_plone-foundation": { - "timestamp": "2025-10-20T09:18:34.807179", + "timestamp": "2025-10-27T09:19:53.079836", "data": { "technologies": [], "description": "", @@ -3078,7 +3078,7 @@ } }, "2024_mariadb": { - "timestamp": "2025-10-20T09:18:24.737399", + "timestamp": "2025-10-27T09:19:21.059107", "data": { "technologies": [], "description": "", @@ -3096,7 +3096,7 @@ } }, "2024_the-julia-language": { - "timestamp": "2025-10-20T09:18:56.772671", + "timestamp": "2025-10-27T09:19:58.549472", "data": { "technologies": [], "description": "", @@ -3105,7 +3105,7 @@ } }, "2024_webpack": { - "timestamp": "2025-10-20T09:17:37.038931", + "timestamp": "2025-10-27T09:19:28.982821", "data": { "technologies": [], "description": "", @@ -3114,7 +3114,7 @@ } }, "2024_owasp-foundation": { - "timestamp": "2025-10-20T09:18:00.890070", + "timestamp": "2025-10-27T09:19:52.470987", "data": { "technologies": [], "description": "", @@ -3123,7 +3123,7 @@ } }, "2024_liquid-galaxy-project": { - "timestamp": "2025-10-20T09:18:47.980430", + "timestamp": "2025-10-27T09:19:43.266432", "data": { "technologies": [], "description": "", @@ -3132,7 +3132,7 @@ } }, "2024_jenkins-wp": { - "timestamp": "2025-10-20T09:17:51.483042", + "timestamp": "2025-10-27T09:18:24.284223", "data": { "technologies": [], "description": "", @@ -3141,7 +3141,7 @@ } }, "2024_cncf": { - "timestamp": "2025-10-20T09:18:12.189035", + "timestamp": "2025-10-27T09:20:06.568958", "data": { "technologies": [], "description": "", @@ -3150,7 +3150,7 @@ } }, "2024_polypheny": { - "timestamp": "2025-10-20T09:19:23.210307", + "timestamp": "2025-10-27T09:20:09.000242", "data": { "technologies": [], "description": "", @@ -3159,7 +3159,7 @@ } }, "2024_musescore": { - "timestamp": "2025-10-20T09:18:36.688322", + "timestamp": "2025-10-27T09:19:45.128810", "data": { "technologies": [], "description": "", @@ -3168,7 +3168,7 @@ } }, "2024_postgresql": { - "timestamp": "2025-10-20T09:17:59.631600", + "timestamp": "2025-10-27T09:19:12.825475", "data": { "technologies": [], "description": "", @@ -3177,7 +3177,7 @@ } }, "2024_unicode-inc": { - "timestamp": "2025-10-20T09:18:22.227561", + "timestamp": "2025-10-27T09:19:57.333665", "data": { "technologies": [], "description": "", @@ -3186,7 +3186,7 @@ } }, "2024_kubevirt": { - "timestamp": "2025-10-20T09:18:28.499987", + "timestamp": "2025-10-27T09:18:40.619877", "data": { "technologies": [], "description": "", @@ -3195,7 +3195,7 @@ } }, "2024_wellcome-sanger-institute": { - "timestamp": "2025-10-20T09:18:53.631091", + "timestamp": "2025-10-27T09:20:03.418838", "data": { "technologies": [], "description": "", @@ -3204,7 +3204,7 @@ } }, "2024_international-catrobat-association": { - "timestamp": "2025-10-20T09:17:43.318930", + "timestamp": "2025-10-27T09:18:50.716242", "data": { "technologies": [], "description": "", @@ -3213,7 +3213,7 @@ } }, "2024_apache-software-foundation": { - "timestamp": "2025-10-20T09:18:46.095673", + "timestamp": "2025-10-27T09:19:28.375477", "data": { "technologies": [], "description": "", @@ -3231,7 +3231,7 @@ } }, "2024_openastronomy": { - "timestamp": "2025-10-20T09:19:09.977226", + "timestamp": "2025-10-27T09:19:50.644695", "data": { "technologies": [], "description": "", @@ -3240,7 +3240,7 @@ } }, "2024_nightwatchjs": { - "timestamp": "2025-10-20T09:18:17.213371", + "timestamp": "2025-10-27T09:19:24.737436", "data": { "technologies": [], "description": "", @@ -3258,7 +3258,7 @@ } }, "2024_libreoffice": { - "timestamp": "2025-10-20T09:18:56.145078", + "timestamp": "2025-10-27T09:18:57.901037", "data": { "technologies": [], "description": "", @@ -3267,7 +3267,7 @@ } }, "2024_ccextractor-development": { - "timestamp": "2025-10-20T09:18:04.658558", + "timestamp": "2025-10-27T09:20:02.809459", "data": { "technologies": [], "description": "", @@ -3285,7 +3285,7 @@ } }, "2024_metacall": { - "timestamp": "2025-10-20T09:18:47.349125", + "timestamp": "2025-10-27T09:19:51.253758", "data": { "technologies": [], "description": "", @@ -3294,7 +3294,7 @@ } }, "2024_lappis": { - "timestamp": "2025-10-20T09:17:42.689753", + "timestamp": "2025-10-27T09:19:01.236290", "data": { "technologies": [], "description": "", @@ -3303,7 +3303,7 @@ } }, "2024_stear-group": { - "timestamp": "2025-10-20T09:18:07.172960", + "timestamp": "2025-10-27T09:18:32.727707", "data": { "technologies": [], "description": "", @@ -3312,7 +3312,7 @@ } }, "2024_apertium": { - "timestamp": "2025-10-20T09:17:57.755164", + "timestamp": "2025-10-27T09:20:07.174515", "data": { "technologies": [], "description": "", @@ -3321,7 +3321,7 @@ } }, "2024_kotlin-foundation": { - "timestamp": "2025-10-20T09:18:29.126417", + "timestamp": "2025-10-27T09:19:09.390124", "data": { "technologies": [], "description": "", @@ -3330,7 +3330,7 @@ } }, "2024_librecube-initiative": { - "timestamp": "2025-10-20T09:18:41.078045", + "timestamp": "2025-10-27T09:19:49.432702", "data": { "technologies": [], "description": "", @@ -3339,7 +3339,7 @@ } }, "2024_cvat": { - "timestamp": "2025-10-20T09:18:10.935512", + "timestamp": "2025-10-27T09:19:55.512191", "data": { "technologies": [], "description": "", @@ -3348,7 +3348,7 @@ } }, "2024_r-project-for-statistical-computing": { - "timestamp": "2025-10-20T09:17:35.157902", + "timestamp": "2025-10-27T09:18:49.492869", "data": { "technologies": [], "description": "", @@ -3357,7 +3357,7 @@ } }, "2024_creative-commons": { - "timestamp": "2025-10-20T09:19:17.572621", + "timestamp": "2025-10-27T09:19:56.725451", "data": { "technologies": [], "description": "", @@ -3366,7 +3366,7 @@ } }, "2024_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-20T09:17:53.363563", + "timestamp": "2025-10-27T09:19:33.424637", "data": { "technologies": [], "description": "", @@ -3375,7 +3375,7 @@ } }, "2024_kiwix": { - "timestamp": "2025-10-20T09:17:45.840558", + "timestamp": "2025-10-27T09:18:41.288767", "data": { "technologies": [], "description": "", @@ -3384,7 +3384,7 @@ } }, "2024_gnu-radio": { - "timestamp": "2025-10-20T09:18:13.446893", + "timestamp": "2025-10-27T09:18:48.883677", "data": { "technologies": [], "description": "", @@ -3393,7 +3393,7 @@ } }, "2024_mdanalysis": { - "timestamp": "2025-10-20T09:18:23.484773", + "timestamp": "2025-10-27T09:18:30.344460", "data": { "technologies": [], "description": "", @@ -3402,7 +3402,7 @@ } }, "2024_freifunk": { - "timestamp": "2025-10-20T09:17:58.380486", + "timestamp": "2025-10-27T09:18:54.865423", "data": { "technologies": [], "description": "", @@ -3411,7 +3411,7 @@ } }, "2023_mantis": { - "timestamp": "2025-10-20T09:21:05.270066", + "timestamp": "2025-10-27T09:21:20.399522", "data": { "technologies": [], "description": "", @@ -3420,7 +3420,7 @@ } }, "2023_keploy": { - "timestamp": "2025-10-20T09:20:48.299923", + "timestamp": "2025-10-27T09:21:41.981459", "data": { "technologies": [], "description": "", @@ -3429,7 +3429,7 @@ } }, "2023_unikraft": { - "timestamp": "2025-10-20T09:20:23.141898", + "timestamp": "2025-10-27T09:20:24.204183", "data": { "technologies": [], "description": "", @@ -3438,7 +3438,7 @@ } }, "2023_mdanalysis": { - "timestamp": "2025-10-20T09:19:27.215438", + "timestamp": "2025-10-27T09:20:23.595308", "data": { "technologies": [], "description": "", @@ -3447,7 +3447,7 @@ } }, "2023_checkstyle": { - "timestamp": "2025-10-20T09:19:43.543539", + "timestamp": "2025-10-27T09:21:08.793397", "data": { "technologies": [], "description": "", @@ -3456,7 +3456,7 @@ } }, "2023_pharo-consortium": { - "timestamp": "2025-10-20T09:20:10.591138", + "timestamp": "2025-10-27T09:21:18.583209", "data": { "technologies": [], "description": "", @@ -3465,7 +3465,7 @@ } }, "2023_geomscale": { - "timestamp": "2025-10-20T09:19:42.285817", + "timestamp": "2025-10-27T09:21:30.189755", "data": { "technologies": [], "description": "", @@ -3474,7 +3474,7 @@ } }, "2023_librehealth": { - "timestamp": "2025-10-20T09:20:19.997718", + "timestamp": "2025-10-27T09:20:43.299292", "data": { "technologies": [], "description": "", @@ -3483,7 +3483,7 @@ } }, "2023_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-20T09:19:40.402674", + "timestamp": "2025-10-27T09:21:11.228301", "data": { "technologies": [], "description": "", @@ -3492,7 +3492,7 @@ } }, "2023_blender-foundation": { - "timestamp": "2025-10-20T09:19:30.990156", + "timestamp": "2025-10-27T09:21:44.409832", "data": { "technologies": [], "description": "", @@ -3501,7 +3501,7 @@ } }, "2023_kubevirt": { - "timestamp": "2025-10-20T09:19:55.527503", + "timestamp": "2025-10-27T09:21:00.183016", "data": { "technologies": [], "description": "", @@ -3510,7 +3510,7 @@ } }, "2023_libcamera": { - "timestamp": "2025-10-20T09:19:32.238146", + "timestamp": "2025-10-27T09:20:44.575280", "data": { "technologies": [], "description": "", @@ -3528,7 +3528,7 @@ } }, "2023_mlpack": { - "timestamp": "2025-10-20T09:21:00.837893", + "timestamp": "2025-10-27T09:21:37.656827", "data": { "technologies": [], "description": "", @@ -3537,7 +3537,7 @@ } }, "2023_mathesar": { - "timestamp": "2025-10-20T09:19:54.898998", + "timestamp": "2025-10-27T09:20:53.383766", "data": { "technologies": [], "description": "", @@ -3564,7 +3564,7 @@ } }, "2023_libssh": { - "timestamp": "2025-10-20T09:21:07.784197", + "timestamp": "2025-10-27T09:21:38.929715", "data": { "technologies": [], "description": "", @@ -3573,7 +3573,7 @@ } }, "2023_eclipse-foundation": { - "timestamp": "2025-10-20T09:21:02.093404", + "timestamp": "2025-10-27T09:21:21.637426", "data": { "technologies": [], "description": "", @@ -3582,7 +3582,7 @@ } }, "2023_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-20T09:21:01.467092", + "timestamp": "2025-10-27T09:21:12.441226", "data": { "technologies": [], "description": "", @@ -3591,7 +3591,7 @@ } }, "2023_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-20T09:19:27.844373", + "timestamp": "2025-10-27T09:21:23.460718", "data": { "technologies": [], "description": "", @@ -3600,7 +3600,7 @@ } }, "2023_pitivi": { - "timestamp": "2025-10-20T09:20:03.050165", + "timestamp": "2025-10-27T09:21:52.938940", "data": { "technologies": [], "description": "", @@ -3618,7 +3618,7 @@ } }, "2023_rocketchat": { - "timestamp": "2025-10-20T09:20:57.072022", + "timestamp": "2025-10-27T09:20:59.575962", "data": { "technologies": [], "description": "", @@ -3627,7 +3627,7 @@ } }, "2023_purr-data": { - "timestamp": "2025-10-20T09:20:40.135755", + "timestamp": "2025-10-27T09:21:06.969600", "data": { "technologies": [], "description": "", @@ -3636,7 +3636,7 @@ } }, "2023_aossie": { - "timestamp": "2025-10-20T09:20:42.015527", + "timestamp": "2025-10-27T09:21:07.580891", "data": { "technologies": [], "description": "", @@ -3645,7 +3645,7 @@ } }, "2023_the-honeynet-project": { - "timestamp": "2025-10-20T09:20:16.236404", + "timestamp": "2025-10-27T09:21:45.625295", "data": { "technologies": [], "description": "", @@ -3654,7 +3654,7 @@ } }, "2023_gnutls": { - "timestamp": "2025-10-20T09:19:34.122255", + "timestamp": "2025-10-27T09:20:42.007565", "data": { "technologies": [], "description": "", @@ -3663,7 +3663,7 @@ } }, "2023_red-hen-lab": { - "timestamp": "2025-10-20T09:19:44.194945", + "timestamp": "2025-10-27T09:20:37.396521", "data": { "technologies": [], "description": "", @@ -3672,7 +3672,7 @@ } }, "2023_the-julia-language": { - "timestamp": "2025-10-20T09:19:57.406791", + "timestamp": "2025-10-27T09:20:26.026920", "data": { "technologies": [], "description": "", @@ -3681,7 +3681,7 @@ } }, "2023_gnu-project": { - "timestamp": "2025-10-20T09:19:59.292143", + "timestamp": "2025-10-27T09:20:20.166400", "data": { "technologies": [], "description": "", @@ -3690,7 +3690,7 @@ } }, "2023_creative-commons": { - "timestamp": "2025-10-20T09:20:53.313595", + "timestamp": "2025-10-27T09:21:15.542479", "data": { "technologies": [], "description": "", @@ -3699,7 +3699,7 @@ } }, "2023_liquid-galaxy-project": { - "timestamp": "2025-10-20T09:19:46.725970", + "timestamp": "2025-10-27T09:21:14.264081", "data": { "technologies": [], "description": "", @@ -3708,7 +3708,7 @@ } }, "2023_the-jpf-team": { - "timestamp": "2025-10-20T09:20:22.511866", + "timestamp": "2025-10-27T09:21:16.758475", "data": { "technologies": [], "description": "", @@ -3717,7 +3717,7 @@ } }, "2023_spdx": { - "timestamp": "2025-10-20T09:20:40.760477", + "timestamp": "2025-10-27T09:21:33.340379", "data": { "technologies": [], "description": "", @@ -3726,7 +3726,7 @@ } }, "2023_tardis-rt-collaboration": { - "timestamp": "2025-10-20T09:20:08.074393", + "timestamp": "2025-10-27T09:20:55.815001", "data": { "technologies": [], "description": "", @@ -3735,7 +3735,7 @@ } }, "2023_rtems-project": { - "timestamp": "2025-10-20T09:20:50.183021", + "timestamp": "2025-10-27T09:21:48.075819", "data": { "technologies": [], "description": "", @@ -3744,7 +3744,7 @@ } }, "2023_wagtail": { - "timestamp": "2025-10-20T09:20:47.042634", + "timestamp": "2025-10-27T09:21:31.515926", "data": { "technologies": [], "description": "", @@ -3762,7 +3762,7 @@ } }, "2023_stratosphere-laboratory-czech-technical-university-in-prague": { - "timestamp": "2025-10-20T09:20:20.626648", + "timestamp": "2025-10-27T09:20:36.230154", "data": { "technologies": [], "description": "", @@ -3771,7 +3771,7 @@ } }, "2023_aboutcode": { - "timestamp": "2025-10-20T09:19:51.765020", + "timestamp": "2025-10-27T09:20:46.905367", "data": { "technologies": [], "description": "", @@ -3780,7 +3780,7 @@ } }, "2023_mariadb": { - "timestamp": "2025-10-20T09:20:18.742807", + "timestamp": "2025-10-27T09:20:24.813028", "data": { "technologies": [], "description": "", @@ -3789,7 +3789,7 @@ } }, "2023_cncf": { - "timestamp": "2025-10-20T09:20:53.942246", + "timestamp": "2025-10-27T09:21:11.834567", "data": { "technologies": [], "description": "", @@ -3807,7 +3807,7 @@ } }, "2023_coreboot": { - "timestamp": "2025-10-20T09:19:58.661963", + "timestamp": "2025-10-27T09:20:51.551006", "data": { "technologies": [], "description": "", @@ -3816,7 +3816,7 @@ } }, "2023_metabrainz-foundation-inc": { - "timestamp": "2025-10-20T09:19:56.782185", + "timestamp": "2025-10-27T09:20:52.773813", "data": { "technologies": [], "description": "", @@ -3825,7 +3825,7 @@ } }, "2023_postgresql": { - "timestamp": "2025-10-20T09:19:48.615271", + "timestamp": "2025-10-27T09:20:22.989359", "data": { "technologies": [], "description": "", @@ -3843,7 +3843,7 @@ } }, "2023_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-20T09:19:39.772634", + "timestamp": "2025-10-27T09:20:49.732170", "data": { "technologies": [], "description": "", @@ -3852,7 +3852,7 @@ } }, "2023_sympy": { - "timestamp": "2025-10-20T09:20:00.543264", + "timestamp": "2025-10-27T09:21:46.232356", "data": { "technologies": [], "description": "", @@ -3861,7 +3861,7 @@ } }, "2023_kotlin-foundation": { - "timestamp": "2025-10-20T09:19:50.504559", + "timestamp": "2025-10-27T09:20:20.771525", "data": { "technologies": [], "description": "", @@ -3870,7 +3870,7 @@ } }, "2023_carbon-language": { - "timestamp": "2025-10-20T09:20:17.488200", + "timestamp": "2025-10-27T09:20:22.383937", "data": { "technologies": [], "description": "", @@ -3879,7 +3879,7 @@ } }, "2023_the-mifos-initiative": { - "timestamp": "2025-10-20T09:19:49.878598", + "timestamp": "2025-10-27T09:22:00.544267", "data": { "technologies": [], "description": "", @@ -3888,7 +3888,7 @@ } }, "2023_openastronomy": { - "timestamp": "2025-10-20T09:21:02.718967", + "timestamp": "2025-10-27T09:21:58.717090", "data": { "technologies": [], "description": "", @@ -3897,7 +3897,7 @@ } }, "2023_xmpp-standards-foundation": { - "timestamp": "2025-10-20T09:20:52.684765", + "timestamp": "2025-10-27T09:21:46.837643", "data": { "technologies": [], "description": "", @@ -3906,7 +3906,7 @@ } }, "2023_dbpedia": { - "timestamp": "2025-10-20T09:19:41.035273", + "timestamp": "2025-10-27T09:20:50.338398", "data": { "technologies": [], "description": "", @@ -3915,7 +3915,7 @@ } }, "2023_django-software-foundation-8o": { - "timestamp": "2025-10-20T09:20:04.301606", + "timestamp": "2025-10-27T09:21:05.745958", "data": { "technologies": [], "description": "", @@ -3924,7 +3924,7 @@ } }, "2023_fossology": { - "timestamp": "2025-10-20T09:19:25.958293", + "timestamp": "2025-10-27T09:21:08.188948", "data": { "technologies": [], "description": "", @@ -3933,7 +3933,7 @@ } }, "2023_criu": { - "timestamp": "2025-10-20T09:20:29.464258", + "timestamp": "2025-10-27T09:20:54.597873", "data": { "technologies": [], "description": "", @@ -3942,7 +3942,7 @@ } }, "2023_ruby": { - "timestamp": "2025-10-20T09:21:05.899878", + "timestamp": "2025-10-27T09:21:59.937709", "data": { "technologies": [], "description": "", @@ -3951,7 +3951,7 @@ } }, "2023_mayors-office-of-new-urban-mechanics": { - "timestamp": "2025-10-20T09:19:28.478753", + "timestamp": "2025-10-27T09:21:21.030810", "data": { "technologies": [], "description": "", @@ -3960,7 +3960,7 @@ } }, "2023_the-freebsd-project": { - "timestamp": "2025-10-20T09:20:13.098701", + "timestamp": "2025-10-27T09:21:03.316858", "data": { "technologies": [], "description": "", @@ -3969,7 +3969,7 @@ } }, "2023_internet-health-report": { - "timestamp": "2025-10-20T09:20:06.190206", + "timestamp": "2025-10-27T09:21:42.588290", "data": { "technologies": [], "description": "", @@ -3978,7 +3978,7 @@ } }, "2023_sagemath": { - "timestamp": "2025-10-20T09:20:32.604766", + "timestamp": "2025-10-27T09:21:02.006218", "data": { "technologies": [], "description": "", @@ -3996,7 +3996,7 @@ } }, "2023_scalable-parallel-computing-laboratory": { - "timestamp": "2025-10-20T09:20:07.445857", + "timestamp": "2025-10-27T09:21:27.705670", "data": { "technologies": [], "description": "", @@ -4005,7 +4005,7 @@ } }, "2023_grame": { - "timestamp": "2025-10-20T09:19:35.382526", + "timestamp": "2025-10-27T09:20:26.630538", "data": { "technologies": [], "description": "", @@ -4014,7 +4014,7 @@ } }, "2023_beagleboardorg": { - "timestamp": "2025-10-20T09:19:56.152983", + "timestamp": "2025-10-27T09:21:39.535027", "data": { "technologies": [], "description": "", @@ -4023,7 +4023,7 @@ } }, "2023_gentoo-foundation": { - "timestamp": "2025-10-20T09:19:29.102991", + "timestamp": "2025-10-27T09:21:24.067222", "data": { "technologies": [], "description": "", @@ -4032,7 +4032,7 @@ } }, "2023_flare": { - "timestamp": "2025-10-20T09:19:49.244037", + "timestamp": "2025-10-27T09:20:46.296252", "data": { "technologies": [], "description": "", @@ -4041,7 +4041,7 @@ } }, "2023_llvm-compiler-infrastructure": { - "timestamp": "2025-10-20T09:19:34.749105", + "timestamp": "2025-10-27T09:21:48.682641", "data": { "technologies": [], "description": "", @@ -4050,7 +4050,7 @@ } }, "2023_mzmine-and-ms-dial": { - "timestamp": "2025-10-20T09:19:32.864518", + "timestamp": "2025-10-27T09:21:54.153857", "data": { "technologies": [], "description": "", @@ -4059,7 +4059,7 @@ } }, "2023_python-software-foundation": { - "timestamp": "2025-10-20T09:20:03.673512", + "timestamp": "2025-10-27T09:21:34.554718", "data": { "technologies": [], "description": "", @@ -4068,7 +4068,7 @@ } }, "2023_scala-center": { - "timestamp": "2025-10-20T09:20:41.385173", + "timestamp": "2025-10-27T09:21:40.140539", "data": { "technologies": [], "description": "", @@ -4077,7 +4077,7 @@ } }, "2023_fortran-lang": { - "timestamp": "2025-10-20T09:20:33.234500", + "timestamp": "2025-10-27T09:20:40.394295", "data": { "technologies": [], "description": "", @@ -4086,7 +4086,7 @@ } }, "2023_drupal-association": { - "timestamp": "2025-10-20T09:20:26.947123", + "timestamp": "2025-10-27T09:20:35.011329", "data": { "technologies": [], "description": "", @@ -4095,7 +4095,7 @@ } }, "2023_wikimedia-foundation": { - "timestamp": "2025-10-20T09:20:58.329109", + "timestamp": "2025-10-27T09:21:32.126053", "data": { "technologies": [], "description": "", @@ -4104,7 +4104,7 @@ } }, "2023_cloudcv": { - "timestamp": "2025-10-20T09:19:45.470102", + "timestamp": "2025-10-27T09:20:29.967027", "data": { "technologies": [], "description": "", @@ -4113,7 +4113,7 @@ } }, "2023_incf": { - "timestamp": "2025-10-20T09:20:02.425695", + "timestamp": "2025-10-27T09:21:28.313112", "data": { "technologies": [], "description": "", @@ -4122,7 +4122,7 @@ } }, "2023_ceph": { - "timestamp": "2025-10-20T09:20:26.320956", + "timestamp": "2025-10-27T09:20:33.297148", "data": { "technologies": [], "description": "", @@ -4131,7 +4131,7 @@ } }, "2023_invesalius": { - "timestamp": "2025-10-20T09:20:43.269851", + "timestamp": "2025-10-27T09:21:13.658742", "data": { "technologies": [], "description": "", @@ -4140,7 +4140,7 @@ } }, "2023_oppia-foundation": { - "timestamp": "2025-10-20T09:19:26.586351", + "timestamp": "2025-10-27T09:20:52.162017", "data": { "technologies": [], "description": "", @@ -4149,7 +4149,7 @@ } }, "2023_camicroscope": { - "timestamp": "2025-10-20T09:20:12.472004", + "timestamp": "2025-10-27T09:21:54.826119", "data": { "technologies": [], "description": "", @@ -4158,7 +4158,7 @@ } }, "2023_cern-hsf": { - "timestamp": "2025-10-20T09:19:54.273016", + "timestamp": "2025-10-27T09:21:41.369962", "data": { "technologies": [], "description": "", @@ -4167,7 +4167,7 @@ } }, "2023_swift": { - "timestamp": "2025-10-20T09:21:10.301757", + "timestamp": "2025-10-27T09:21:53.546029", "data": { "technologies": [], "description": "", @@ -4176,7 +4176,7 @@ } }, "2023_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-20T09:20:46.410849", + "timestamp": "2025-10-27T09:21:57.400706", "data": { "technologies": [], "description": "", @@ -4185,7 +4185,7 @@ } }, "2023_haiku": { - "timestamp": "2025-10-20T09:20:13.723406", + "timestamp": "2025-10-27T09:20:34.404272", "data": { "technologies": [], "description": "", @@ -4203,7 +4203,7 @@ } }, "2023_sugar-labs": { - "timestamp": "2025-10-20T09:20:11.216024", + "timestamp": "2025-10-27T09:20:49.125855", "data": { "technologies": [], "description": "", @@ -4221,7 +4221,7 @@ } }, "2023_aflplusplus": { - "timestamp": "2025-10-20T09:19:47.354784", + "timestamp": "2025-10-27T09:21:35.777342", "data": { "technologies": [], "description": "", @@ -4230,7 +4230,7 @@ } }, "2023_gprmax": { - "timestamp": "2025-10-20T09:19:30.362083", + "timestamp": "2025-10-27T09:21:16.150316", "data": { "technologies": [], "description": "", @@ -4248,7 +4248,7 @@ } }, "2023_metacall": { - "timestamp": "2025-10-20T09:20:25.691184", + "timestamp": "2025-10-27T09:21:17.975859", "data": { "technologies": [], "description": "", @@ -4257,7 +4257,7 @@ } }, "2023_qdrant": { - "timestamp": "2025-10-20T09:20:35.742492", + "timestamp": "2025-10-27T09:21:00.788629", "data": { "technologies": [], "description": "", @@ -4266,7 +4266,7 @@ } }, "2023_score-lab": { - "timestamp": "2025-10-20T09:20:58.954573", + "timestamp": "2025-10-27T09:21:26.489856", "data": { "technologies": [], "description": "", @@ -4275,7 +4275,7 @@ } }, "2023_the-enigma-team": { - "timestamp": "2025-10-20T09:19:37.257220", + "timestamp": "2025-10-27T09:20:25.419278", "data": { "technologies": [], "description": "", @@ -4293,7 +4293,7 @@ } }, "2023_brl-cad": { - "timestamp": "2025-10-20T09:19:33.491881", + "timestamp": "2025-10-27T09:20:32.688658", "data": { "technologies": [], "description": "", @@ -4302,7 +4302,7 @@ } }, "2023_rizin": { - "timestamp": "2025-10-20T09:19:53.018050", + "timestamp": "2025-10-27T09:21:29.528976", "data": { "technologies": [], "description": "", @@ -4311,7 +4311,7 @@ } }, "2023_synfig": { - "timestamp": "2025-10-20T09:20:21.254965", + "timestamp": "2025-10-27T09:21:47.444684", "data": { "technologies": [], "description": "", @@ -4320,7 +4320,7 @@ } }, "2023_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-20T09:20:37.625837", + "timestamp": "2025-10-27T09:20:39.116309", "data": { "technologies": [], "description": "", @@ -4329,7 +4329,7 @@ } }, "2023_openmrs": { - "timestamp": "2025-10-20T09:19:41.661005", + "timestamp": "2025-10-27T09:20:55.209922", "data": { "technologies": [], "description": "", @@ -4338,7 +4338,7 @@ } }, "2023_gitlab": { - "timestamp": "2025-10-20T09:20:47.669610", + "timestamp": "2025-10-27T09:20:50.943494", "data": { "technologies": [], "description": "", @@ -4347,7 +4347,7 @@ } }, "2023_international-catrobat-association": { - "timestamp": "2025-10-20T09:19:39.144525", + "timestamp": "2025-10-27T09:21:52.329093", "data": { "technologies": [], "description": "", @@ -4356,7 +4356,7 @@ } }, "2023_learning-equality": { - "timestamp": "2025-10-20T09:19:38.513114", + "timestamp": "2025-10-27T09:21:27.098608", "data": { "technologies": [], "description": "", @@ -4365,7 +4365,7 @@ } }, "2023_ccextractor-development": { - "timestamp": "2025-10-20T09:20:21.879530", + "timestamp": "2025-10-27T09:21:56.711975", "data": { "technologies": [], "description": "", @@ -4374,7 +4374,7 @@ } }, "2023_omegaup": { - "timestamp": "2025-10-20T09:20:56.443122", + "timestamp": "2025-10-27T09:21:37.050341", "data": { "technologies": [], "description": "", @@ -4383,7 +4383,7 @@ } }, "2023_open-genome-informatics": { - "timestamp": "2025-10-20T09:19:36.006110", + "timestamp": "2025-10-27T09:20:28.751856", "data": { "technologies": [], "description": "", @@ -4392,7 +4392,7 @@ } }, "2023_plone-foundation": { - "timestamp": "2025-10-20T09:19:46.095661", + "timestamp": "2025-10-27T09:20:47.511294", "data": { "technologies": [], "description": "", @@ -4401,7 +4401,7 @@ } }, "2023_tensorflow-d1": { - "timestamp": "2025-10-20T09:19:47.987861", + "timestamp": "2025-10-27T09:21:17.370631", "data": { "technologies": [], "description": "", @@ -4410,7 +4410,7 @@ } }, "2023_kde-community": { - "timestamp": "2025-10-20T09:20:15.609125", + "timestamp": "2025-10-27T09:21:56.107323", "data": { "technologies": [], "description": "", @@ -4419,7 +4419,7 @@ } }, "2023_r-project-for-statistical-computing": { - "timestamp": "2025-10-20T09:20:44.525208", + "timestamp": "2025-10-27T09:21:06.362190", "data": { "technologies": [], "description": "", @@ -4437,7 +4437,7 @@ } }, "2023_gnu-radio": { - "timestamp": "2025-10-20T09:19:53.642565", + "timestamp": "2025-10-27T09:20:39.783311", "data": { "technologies": [], "description": "", @@ -4446,7 +4446,7 @@ } }, "2023_dart": { - "timestamp": "2025-10-20T09:19:37.884642", + "timestamp": "2025-10-27T09:21:19.794984", "data": { "technologies": [], "description": "", @@ -4455,7 +4455,7 @@ } }, "2023_openstreetmap": { - "timestamp": "2025-10-20T09:21:09.665450", + "timestamp": "2025-10-27T09:21:38.321813", "data": { "technologies": [], "description": "", @@ -4464,7 +4464,7 @@ } }, "2023_gcp-scanner": { - "timestamp": "2025-10-20T09:20:55.192924", + "timestamp": "2025-10-27T09:21:36.385709", "data": { "technologies": [], "description": "", @@ -4473,7 +4473,7 @@ } }, "2023_moveit": { - "timestamp": "2025-10-20T09:20:14.354246", + "timestamp": "2025-10-27T09:20:45.183360", "data": { "technologies": [], "description": "", @@ -4482,7 +4482,7 @@ } }, "2023_the-tor-project": { - "timestamp": "2025-10-20T09:20:23.770605", + "timestamp": "2025-10-27T09:21:35.164387", "data": { "technologies": [], "description": "", @@ -4491,7 +4491,7 @@ } }, "2023_sqlancer": { - "timestamp": "2025-10-20T09:20:11.842742", + "timestamp": "2025-10-27T09:21:14.877161", "data": { "technologies": [], "description": "", @@ -4500,7 +4500,7 @@ } }, "2023_openvino-toolkit": { - "timestamp": "2025-10-20T09:20:14.980183", + "timestamp": "2025-10-27T09:20:35.626636", "data": { "technologies": [], "description": "", @@ -4509,7 +4509,7 @@ } }, "2023_freetype": { - "timestamp": "2025-10-20T09:20:35.116842", + "timestamp": "2025-10-27T09:21:55.491589", "data": { "technologies": [], "description": "", @@ -4518,7 +4518,7 @@ } }, "2023_cgal-project": { - "timestamp": "2025-10-20T09:19:58.034204", + "timestamp": "2025-10-27T09:21:09.405434", "data": { "technologies": [], "description": "", @@ -4527,7 +4527,7 @@ } }, "2023_open-robotics": { - "timestamp": "2025-10-20T09:20:28.837885", + "timestamp": "2025-10-27T09:21:22.245129", "data": { "technologies": [], "description": "", @@ -4536,7 +4536,7 @@ } }, "2023_inkscape": { - "timestamp": "2025-10-20T09:20:09.963675", + "timestamp": "2025-10-27T09:21:19.190000", "data": { "technologies": [], "description": "", @@ -4545,7 +4545,7 @@ } }, "2023_apache-software-foundation": { - "timestamp": "2025-10-20T09:21:09.038870", + "timestamp": "2025-10-27T09:21:25.278430", "data": { "technologies": [], "description": "", @@ -4554,7 +4554,7 @@ } }, "2023_cockpit-project": { - "timestamp": "2025-10-20T09:20:27.573823", + "timestamp": "2025-10-27T09:21:51.720246", "data": { "technologies": [], "description": "", @@ -4563,7 +4563,7 @@ } }, "2023_the-linux-foundation": { - "timestamp": "2025-10-20T09:20:43.898700", + "timestamp": "2025-10-27T09:21:10.011504", "data": { "technologies": [], "description": "", @@ -4590,7 +4590,7 @@ } }, "2023_ivy-lets-unifyai": { - "timestamp": "2025-10-20T09:20:06.819057", + "timestamp": "2025-10-27T09:21:32.731245", "data": { "technologies": [], "description": "", @@ -4599,7 +4599,7 @@ } }, "2023_opencv": { - "timestamp": "2025-10-20T09:20:55.817954", + "timestamp": "2025-10-27T09:21:25.883751", "data": { "technologies": [], "description": "", @@ -4608,7 +4608,7 @@ } }, "2023_open-chemistry": { - "timestamp": "2025-10-20T09:20:45.782078", + "timestamp": "2025-10-27T09:21:22.852109", "data": { "technologies": [], "description": "", @@ -4617,7 +4617,7 @@ } }, "2023_ffmpeg": { - "timestamp": "2025-10-20T09:20:01.169980", + "timestamp": "2025-10-27T09:21:51.114707", "data": { "technologies": [], "description": "", @@ -4626,7 +4626,7 @@ } }, "2023_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-20T09:20:36.369383", + "timestamp": "2025-10-27T09:21:58.031829", "data": { "technologies": [], "description": "", @@ -4635,7 +4635,7 @@ } }, "2023_openwisp": { - "timestamp": "2025-10-20T09:19:31.613327", + "timestamp": "2025-10-27T09:20:32.081508", "data": { "technologies": [], "description": "", @@ -4644,7 +4644,7 @@ } }, "2023_git": { - "timestamp": "2025-10-20T09:19:36.632069", + "timestamp": "2025-10-27T09:20:29.359266", "data": { "technologies": [], "description": "", @@ -4653,7 +4653,7 @@ } }, "2023_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-20T09:20:24.422023", + "timestamp": "2025-10-27T09:21:43.198513", "data": { "technologies": [], "description": "", @@ -4662,7 +4662,7 @@ } }, "2023_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-20T09:20:54.567410", + "timestamp": "2025-10-27T09:21:59.328364", "data": { "technologies": [], "description": "", @@ -4671,7 +4671,7 @@ } }, "2023_numfocus": { - "timestamp": "2025-10-20T09:19:52.392383", + "timestamp": "2025-10-27T09:21:33.945552", "data": { "technologies": [], "description": "", @@ -4680,7 +4680,7 @@ } }, "2023_freifunk": { - "timestamp": "2025-10-20T09:20:33.858641", + "timestamp": "2025-10-27T09:20:57.697450", "data": { "technologies": [], "description": "", @@ -4689,7 +4689,7 @@ } }, "2023_libreoffice": { - "timestamp": "2025-10-20T09:20:38.879264", + "timestamp": "2025-10-27T09:20:56.479055", "data": { "technologies": [], "description": "", @@ -4698,7 +4698,7 @@ } }, "2023_circuitverseorg": { - "timestamp": "2025-10-20T09:19:59.919477", + "timestamp": "2025-10-27T09:20:38.007086", "data": { "technologies": [], "description": "", @@ -4707,7 +4707,7 @@ } }, "2023_chromium-lj": { - "timestamp": "2025-10-20T09:20:01.796326", + "timestamp": "2025-10-27T09:20:57.090554", "data": { "technologies": [], "description": "", @@ -4716,7 +4716,7 @@ } }, "2023_genome-assembly-and-annotation": { - "timestamp": "2025-10-20T09:20:38.251520", + "timestamp": "2025-10-27T09:21:30.848964", "data": { "technologies": [], "description": "", @@ -4725,7 +4725,7 @@ } }, "2023_mit-app-inventor": { - "timestamp": "2025-10-20T09:21:10.928703", + "timestamp": "2025-10-27T09:21:49.293042", "data": { "technologies": [], "description": "", @@ -4734,7 +4734,7 @@ } }, "2023_videolan": { - "timestamp": "2025-10-20T09:20:48.926274", + "timestamp": "2025-10-27T09:21:45.019235", "data": { "technologies": [], "description": "", @@ -4743,7 +4743,7 @@ } }, "2023_opensuse-project": { - "timestamp": "2025-10-20T09:20:30.092013", + "timestamp": "2025-10-27T09:21:01.399744", "data": { "technologies": [], "description": "", @@ -4752,7 +4752,7 @@ } }, "2023_gnu-octave": { - "timestamp": "2025-10-20T09:20:08.702758", + "timestamp": "2025-10-27T09:21:24.674179", "data": { "technologies": [], "description": "", @@ -4761,7 +4761,7 @@ } }, "2023_the-palisadoes-foundation": { - "timestamp": "2025-10-20T09:19:44.820700", + "timestamp": "2025-10-27T09:21:04.531503", "data": { "technologies": [], "description": "", @@ -4770,7 +4770,7 @@ } }, "2023_jina-ai-sb": { - "timestamp": "2025-10-20T09:20:05.561830", + "timestamp": "2025-10-27T09:20:43.908336", "data": { "technologies": [], "description": "", @@ -4779,7 +4779,7 @@ } }, "2023_apertium": { - "timestamp": "2025-10-20T09:20:25.052447", + "timestamp": "2025-10-27T09:20:58.912015", "data": { "technologies": [], "description": "", @@ -4788,7 +4788,7 @@ } }, "2023_jderobot": { - "timestamp": "2025-10-20T09:20:09.329117", + "timestamp": "2025-10-27T09:21:28.918913", "data": { "technologies": [], "description": "", @@ -4797,7 +4797,7 @@ } }, "2023_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-20T09:20:04.930908", + "timestamp": "2025-10-27T09:21:02.709037", "data": { "technologies": [], "description": "", @@ -4806,7 +4806,7 @@ } }, "2023_processing-foundation": { - "timestamp": "2025-10-20T09:20:16.863723", + "timestamp": "2025-10-27T09:21:13.046989", "data": { "technologies": [], "description": "", @@ -4815,7 +4815,7 @@ } }, "2023_metasploit": { - "timestamp": "2025-10-20T09:20:19.369969", + "timestamp": "2025-10-27T09:20:53.992619", "data": { "technologies": [], "description": "", @@ -4824,7 +4824,7 @@ } }, "2023_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-20T09:20:30.721472", + "timestamp": "2025-10-27T09:21:49.898234", "data": { "technologies": [], "description": "", @@ -4842,7 +4842,7 @@ } }, "2023_pecan-project": { - "timestamp": "2025-10-20T09:19:29.731482", + "timestamp": "2025-10-27T09:20:42.689533", "data": { "technologies": [], "description": "", @@ -4851,7 +4851,7 @@ } }, "2023_scummvm": { - "timestamp": "2025-10-20T09:20:18.116320", + "timestamp": "2025-10-27T09:21:40.744516", "data": { "technologies": [], "description": "", @@ -4860,7 +4860,7 @@ } }, "2023_qemu": { - "timestamp": "2025-10-20T09:20:28.207130", + "timestamp": "2025-10-27T09:21:05.138566", "data": { "technologies": [], "description": "", @@ -4869,7 +4869,7 @@ } }, "2023_xwiki": { - "timestamp": "2025-10-20T09:21:04.641852", + "timestamp": "2025-10-27T09:21:50.506515", "data": { "technologies": [], "description": "", @@ -4878,7 +4878,7 @@ } }, "2023_musescore": { - "timestamp": "2025-10-20T09:19:42.914146", + "timestamp": "2025-10-27T09:21:03.924039", "data": { "technologies": [], "description": "", @@ -4887,7 +4887,7 @@ } }, "2023_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-20T09:19:51.135006", + "timestamp": "2025-10-27T09:21:10.620376", "data": { "technologies": [], "description": "", @@ -4896,7 +4896,7 @@ } }, "2023_owasp-foundation": { - "timestamp": "2025-10-20T09:20:34.489467", + "timestamp": "2025-10-27T09:20:58.306031", "data": { "technologies": [], "description": "", @@ -4914,7 +4914,7 @@ } }, "2023_stear-group": { - "timestamp": "2025-10-20T09:20:31.349274", + "timestamp": "2025-10-27T09:21:43.804800", "data": { "technologies": [], "description": "", @@ -4923,7 +4923,7 @@ } }, "2022_checkstyle": { - "timestamp": "2025-10-20T09:22:20.402946", + "timestamp": "2025-10-27T09:23:14.754538", "data": { "technologies": [], "description": "", @@ -4932,7 +4932,7 @@ } }, "2022_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-20T09:21:47.072350", + "timestamp": "2025-10-27T09:22:31.206306", "data": { "technologies": [], "description": "", @@ -4941,7 +4941,7 @@ } }, "2022_mayors-office-of-new-urban-mechanics": { - "timestamp": "2025-10-20T09:21:43.934136", + "timestamp": "2025-10-27T09:22:37.390984", "data": { "technologies": [], "description": "", @@ -4950,7 +4950,7 @@ } }, "2022_sugar-labs": { - "timestamp": "2025-10-20T09:22:35.501151", + "timestamp": "2025-10-27T09:23:03.886546", "data": { "technologies": [], "description": "", @@ -4959,7 +4959,7 @@ } }, "2022_spdx": { - "timestamp": "2025-10-20T09:22:05.312044", + "timestamp": "2025-10-27T09:22:28.799473", "data": { "technologies": [], "description": "", @@ -4977,7 +4977,7 @@ } }, "2022_dbpedia": { - "timestamp": "2025-10-20T09:23:01.284080", + "timestamp": "2025-10-27T09:23:22.057095", "data": { "technologies": [], "description": "", @@ -4986,7 +4986,7 @@ } }, "2022_the-jpf-team": { - "timestamp": "2025-10-20T09:22:03.427171", + "timestamp": "2025-10-27T09:22:58.008565", "data": { "technologies": [], "description": "", @@ -4995,7 +4995,7 @@ } }, "2022_xmpp-standards-foundation": { - "timestamp": "2025-10-20T09:22:22.924723", + "timestamp": "2025-10-27T09:23:34.323692", "data": { "technologies": [], "description": "", @@ -5013,7 +5013,7 @@ } }, "2022_neutralinojs": { - "timestamp": "2025-10-20T09:21:53.365520", + "timestamp": "2025-10-27T09:22:23.945027", "data": { "technologies": [], "description": "", @@ -5022,7 +5022,7 @@ } }, "2022_joomla": { - "timestamp": "2025-10-20T09:22:38.011709", + "timestamp": "2025-10-27T09:23:42.882095", "data": { "technologies": [], "description": "", @@ -5040,7 +5040,7 @@ } }, "2022_flashrom": { - "timestamp": "2025-10-20T09:22:56.251127", + "timestamp": "2025-10-27T09:23:44.704292", "data": { "technologies": [], "description": "", @@ -5049,7 +5049,7 @@ } }, "2022_weaviate": { - "timestamp": "2025-10-20T09:22:21.032489", + "timestamp": "2025-10-27T09:22:41.486221", "data": { "technologies": [], "description": "", @@ -5067,7 +5067,7 @@ } }, "2022_software-heritage": { - "timestamp": "2025-10-20T09:21:40.171797", + "timestamp": "2025-10-27T09:23:50.170758", "data": { "technologies": [], "description": "", @@ -5076,7 +5076,7 @@ } }, "2022_seaql": { - "timestamp": "2025-10-20T09:22:16.626190", + "timestamp": "2025-10-27T09:22:49.240905", "data": { "technologies": [], "description": "", @@ -5085,7 +5085,7 @@ } }, "2022_stear-group": { - "timestamp": "2025-10-20T09:23:11.989075", + "timestamp": "2025-10-27T09:23:23.329186", "data": { "technologies": [], "description": "", @@ -5094,7 +5094,7 @@ } }, "2022_powerdns": { - "timestamp": "2025-10-20T09:22:53.731119", + "timestamp": "2025-10-27T09:23:23.938632", "data": { "technologies": [], "description": "", @@ -5103,7 +5103,7 @@ } }, "2022_mbdyn": { - "timestamp": "2025-10-20T09:21:26.350692", + "timestamp": "2025-10-27T09:22:17.564649", "data": { "technologies": [], "description": "", @@ -5130,7 +5130,7 @@ } }, "2022_the-julia-language": { - "timestamp": "2025-10-20T09:22:41.784739", + "timestamp": "2025-10-27T09:23:17.801000", "data": { "technologies": [], "description": "", @@ -5139,7 +5139,7 @@ } }, "2022_the-freebsd-project": { - "timestamp": "2025-10-20T09:22:07.825554", + "timestamp": "2025-10-27T09:23:10.031727", "data": { "technologies": [], "description": "", @@ -5148,7 +5148,7 @@ } }, "2022_videolan": { - "timestamp": "2025-10-20T09:23:13.248681", + "timestamp": "2025-10-27T09:23:45.311827", "data": { "technologies": [], "description": "", @@ -5157,7 +5157,7 @@ } }, "2022_rtems-project": { - "timestamp": "2025-10-20T09:21:26.978019", + "timestamp": "2025-10-27T09:22:11.498163", "data": { "technologies": [], "description": "", @@ -5166,7 +5166,7 @@ } }, "2022_orcasound": { - "timestamp": "2025-10-20T09:22:43.671712", + "timestamp": "2025-10-27T09:23:51.390662", "data": { "technologies": [], "description": "", @@ -5175,7 +5175,7 @@ } }, "2022_jenkins-x": { - "timestamp": "2025-10-20T09:22:58.774054", + "timestamp": "2025-10-27T09:23:26.369524", "data": { "technologies": [], "description": "", @@ -5184,7 +5184,7 @@ } }, "2022_internet-health-report": { - "timestamp": "2025-10-20T09:21:20.064682", + "timestamp": "2025-10-27T09:22:39.772182", "data": { "technologies": [], "description": "", @@ -5193,7 +5193,7 @@ } }, "2022_strace": { - "timestamp": "2025-10-20T09:21:41.425915", + "timestamp": "2025-10-27T09:22:29.912466", "data": { "technologies": [], "description": "", @@ -5202,7 +5202,7 @@ } }, "2022_gnome-foundation": { - "timestamp": "2025-10-20T09:21:30.118558", + "timestamp": "2025-10-27T09:23:46.525003", "data": { "technologies": [], "description": "", @@ -5211,7 +5211,7 @@ } }, "2022_dart": { - "timestamp": "2025-10-20T09:22:06.570589", + "timestamp": "2025-10-27T09:22:56.788068", "data": { "technologies": [], "description": "", @@ -5220,7 +5220,7 @@ } }, "2022_numfocus": { - "timestamp": "2025-10-20T09:21:33.256124", + "timestamp": "2025-10-27T09:22:55.005692", "data": { "technologies": [], "description": "", @@ -5238,7 +5238,7 @@ } }, "2022_rizin": { - "timestamp": "2025-10-20T09:21:54.626441", + "timestamp": "2025-10-27T09:23:19.622108", "data": { "technologies": [], "description": "", @@ -5247,7 +5247,7 @@ } }, "2022_jitsi": { - "timestamp": "2025-10-20T09:21:13.776767", + "timestamp": "2025-10-27T09:23:44.097024", "data": { "technologies": [], "description": "", @@ -5256,7 +5256,7 @@ } }, "2022_unikraft": { - "timestamp": "2025-10-20T09:21:59.659480", + "timestamp": "2025-10-27T09:22:26.978614", "data": { "technologies": [], "description": "", @@ -5274,7 +5274,7 @@ } }, "2022_openafs": { - "timestamp": "2025-10-20T09:22:02.173104", + "timestamp": "2025-10-27T09:23:43.490034", "data": { "technologies": [], "description": "", @@ -5283,7 +5283,7 @@ } }, "2022_open3d-team": { - "timestamp": "2025-10-20T09:21:29.489012", + "timestamp": "2025-10-27T09:22:52.576140", "data": { "technologies": [], "description": "", @@ -5292,7 +5292,7 @@ } }, "2022_haiku": { - "timestamp": "2025-10-20T09:21:44.562161", + "timestamp": "2025-10-27T09:22:21.005431", "data": { "technologies": [], "description": "", @@ -5319,7 +5319,7 @@ } }, "2022_open-chemistry": { - "timestamp": "2025-10-20T09:22:15.370877", + "timestamp": "2025-10-27T09:22:44.415445", "data": { "technologies": [], "description": "", @@ -5328,7 +5328,7 @@ } }, "2022_electron": { - "timestamp": "2025-10-20T09:22:59.398821", + "timestamp": "2025-10-27T09:23:01.554668", "data": { "technologies": [], "description": "", @@ -5355,7 +5355,7 @@ } }, "2022_libreoffice": { - "timestamp": "2025-10-20T09:23:05.693035", + "timestamp": "2025-10-27T09:23:08.204629", "data": { "technologies": [], "description": "", @@ -5364,7 +5364,7 @@ } }, "2022_processing-foundation": { - "timestamp": "2025-10-20T09:21:46.446279", + "timestamp": "2025-10-27T09:23:27.580009", "data": { "technologies": [], "description": "", @@ -5373,7 +5373,7 @@ } }, "2022_robolectric": { - "timestamp": "2025-10-20T09:21:35.142287", + "timestamp": "2025-10-27T09:22:26.372145", "data": { "technologies": [], "description": "", @@ -5382,7 +5382,7 @@ } }, "2022_beagleboardorg": { - "timestamp": "2025-10-20T09:22:28.573538", + "timestamp": "2025-10-27T09:22:59.119480", "data": { "technologies": [], "description": "", @@ -5391,7 +5391,7 @@ } }, "2022_opencv": { - "timestamp": "2025-10-20T09:22:44.299797", + "timestamp": "2025-10-27T09:23:57.553398", "data": { "technologies": [], "description": "", @@ -5400,7 +5400,7 @@ } }, "2022_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-20T09:21:24.461342", + "timestamp": "2025-10-27T09:22:16.950217", "data": { "technologies": [], "description": "", @@ -5418,7 +5418,7 @@ } }, "2022_python-software-foundation": { - "timestamp": "2025-10-20T09:22:04.054558", + "timestamp": "2025-10-27T09:23:05.163094", "data": { "technologies": [], "description": "", @@ -5427,7 +5427,7 @@ } }, "2022_swift": { - "timestamp": "2025-10-20T09:21:19.442575", + "timestamp": "2025-10-27T09:23:12.362605", "data": { "technologies": [], "description": "", @@ -5436,7 +5436,7 @@ } }, "2022_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-20T09:22:52.471249", + "timestamp": "2025-10-27T09:23:15.361479", "data": { "technologies": [], "description": "", @@ -5445,7 +5445,7 @@ } }, "2022_public-lab": { - "timestamp": "2025-10-20T09:22:30.463216", + "timestamp": "2025-10-27T09:22:43.811440", "data": { "technologies": [], "description": "", @@ -5454,7 +5454,7 @@ } }, "2022_brl-cad": { - "timestamp": "2025-10-20T09:21:16.298427", + "timestamp": "2025-10-27T09:23:21.444310", "data": { "technologies": [], "description": "", @@ -5463,7 +5463,7 @@ } }, "2022_gnu-octave": { - "timestamp": "2025-10-20T09:21:39.537474", + "timestamp": "2025-10-27T09:22:08.566312", "data": { "technologies": [], "description": "", @@ -5472,7 +5472,7 @@ } }, "2022_openvino-toolkit": { - "timestamp": "2025-10-20T09:21:11.890777", + "timestamp": "2025-10-27T09:22:09.678670", "data": { "technologies": [], "description": "", @@ -5481,7 +5481,7 @@ } }, "2022_openmrs": { - "timestamp": "2025-10-20T09:22:11.597788", + "timestamp": "2025-10-27T09:23:31.893192", "data": { "technologies": [], "description": "", @@ -5508,7 +5508,7 @@ } }, "2022_wagtail": { - "timestamp": "2025-10-20T09:22:05.940485", + "timestamp": "2025-10-27T09:23:38.581132", "data": { "technologies": [], "description": "", @@ -5517,7 +5517,7 @@ } }, "2022_drupal-association": { - "timestamp": "2025-10-20T09:22:00.293148", + "timestamp": "2025-10-27T09:22:21.615835", "data": { "technologies": [], "description": "", @@ -5526,7 +5526,7 @@ } }, "2022_matrixorg": { - "timestamp": "2025-10-20T09:23:08.213005", + "timestamp": "2025-10-27T09:23:41.665971", "data": { "technologies": [], "description": "", @@ -5535,7 +5535,7 @@ } }, "2022_leap-encryption-access-project": { - "timestamp": "2025-10-20T09:23:01.909162", + "timestamp": "2025-10-27T09:23:40.408505", "data": { "technologies": [], "description": "", @@ -5553,7 +5553,7 @@ } }, "2022_the-honeynet-project": { - "timestamp": "2025-10-20T09:22:01.546709", + "timestamp": "2025-10-27T09:22:50.964000", "data": { "technologies": [], "description": "", @@ -5562,7 +5562,7 @@ } }, "2022_the-palisadoes-foundation": { - "timestamp": "2025-10-20T09:21:50.209139", + "timestamp": "2025-10-27T09:23:37.361431", "data": { "technologies": [], "description": "", @@ -5571,7 +5571,7 @@ } }, "2022_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-20T09:21:45.190327", + "timestamp": "2025-10-27T09:22:02.425105", "data": { "technologies": [], "description": "", @@ -5598,7 +5598,7 @@ } }, "2022_plone-foundation": { - "timestamp": "2025-10-20T09:21:40.800611", + "timestamp": "2025-10-27T09:22:57.398067", "data": { "technologies": [], "description": "", @@ -5616,7 +5616,7 @@ } }, "2022_zulip": { - "timestamp": "2025-10-20T09:21:25.720738", + "timestamp": "2025-10-27T09:22:22.728083", "data": { "technologies": [], "description": "", @@ -5625,7 +5625,7 @@ } }, "2022_metacall": { - "timestamp": "2025-10-20T09:22:42.411303", + "timestamp": "2025-10-27T09:23:47.133173", "data": { "technologies": [], "description": "", @@ -5634,7 +5634,7 @@ } }, "2022_tardis-rt-collaboration": { - "timestamp": "2025-10-20T09:21:33.884757", + "timestamp": "2025-10-27T09:22:10.891459", "data": { "technologies": [], "description": "", @@ -5643,7 +5643,7 @@ } }, "2022_jenkins-wp": { - "timestamp": "2025-10-20T09:21:57.766591", + "timestamp": "2025-10-27T09:22:34.559050", "data": { "technologies": [], "description": "", @@ -5652,7 +5652,7 @@ } }, "2022_tianocore": { - "timestamp": "2025-10-20T09:22:37.384946", + "timestamp": "2025-10-27T09:22:54.397146", "data": { "technologies": [], "description": "", @@ -5661,7 +5661,7 @@ } }, "2022_owasp-foundation": { - "timestamp": "2025-10-20T09:21:45.818126", + "timestamp": "2025-10-27T09:23:34.931677", "data": { "technologies": [], "description": "", @@ -5670,7 +5670,7 @@ } }, "2022_mdanalysis": { - "timestamp": "2025-10-20T09:22:53.099656", + "timestamp": "2025-10-27T09:23:24.547429", "data": { "technologies": [], "description": "", @@ -5679,7 +5679,7 @@ } }, "2022_mlpack": { - "timestamp": "2025-10-20T09:22:33.612732", + "timestamp": "2025-10-27T09:23:26.975419", "data": { "technologies": [], "description": "", @@ -5688,7 +5688,7 @@ } }, "2022_gnu-image-manipulation-program": { - "timestamp": "2025-10-20T09:22:08.459319", + "timestamp": "2025-10-27T09:22:53.185119", "data": { "technologies": [], "description": "", @@ -5697,7 +5697,7 @@ } }, "2022_openwisp": { - "timestamp": "2025-10-20T09:22:19.777964", + "timestamp": "2025-10-27T09:23:33.112133", "data": { "technologies": [], "description": "", @@ -5706,7 +5706,7 @@ } }, "2022_kart-project": { - "timestamp": "2025-10-20T09:23:05.056954", + "timestamp": "2025-10-27T09:23:06.982675", "data": { "technologies": [], "description": "", @@ -5715,7 +5715,7 @@ } }, "2022_uc-ospo": { - "timestamp": "2025-10-20T09:21:27.605025", + "timestamp": "2025-10-27T09:23:12.975925", "data": { "technologies": [], "description": "", @@ -5724,7 +5724,7 @@ } }, "2022_scummvm": { - "timestamp": "2025-10-20T09:22:18.523940", + "timestamp": "2025-10-27T09:22:59.731695", "data": { "technologies": [], "description": "", @@ -5733,7 +5733,7 @@ } }, "2022_oppia-foundation": { - "timestamp": "2025-10-20T09:21:21.946351", + "timestamp": "2025-10-27T09:23:35.540464", "data": { "technologies": [], "description": "", @@ -5742,7 +5742,7 @@ } }, "2022_fortran-lang": { - "timestamp": "2025-10-20T09:21:23.206624", + "timestamp": "2025-10-27T09:22:32.819381", "data": { "technologies": [], "description": "", @@ -5751,7 +5751,7 @@ } }, "2022_audacity": { - "timestamp": "2025-10-20T09:22:49.961260", + "timestamp": "2025-10-27T09:23:51.997723", "data": { "technologies": [], "description": "", @@ -5760,7 +5760,7 @@ } }, "2022_aflplusplus": { - "timestamp": "2025-10-20T09:21:37.027353", + "timestamp": "2025-10-27T09:22:13.612150", "data": { "technologies": [], "description": "", @@ -5787,7 +5787,7 @@ } }, "2022_open-genome-informatics": { - "timestamp": "2025-10-20T09:21:38.284077", + "timestamp": "2025-10-27T09:23:32.502326", "data": { "technologies": [], "description": "", @@ -5796,7 +5796,7 @@ } }, "2022_kodi": { - "timestamp": "2025-10-20T09:21:58.400817", + "timestamp": "2025-10-27T09:22:28.192727", "data": { "technologies": [], "description": "", @@ -5805,7 +5805,7 @@ } }, "2022_gnu-radio": { - "timestamp": "2025-10-20T09:22:25.433219", + "timestamp": "2025-10-27T09:22:27.585393", "data": { "technologies": [], "description": "", @@ -5814,7 +5814,7 @@ } }, "2022_mzmine": { - "timestamp": "2025-10-20T09:21:37.656254", + "timestamp": "2025-10-27T09:23:55.651120", "data": { "technologies": [], "description": "", @@ -5823,7 +5823,7 @@ } }, "2022_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-20T09:23:10.732511", + "timestamp": "2025-10-27T09:23:33.716403", "data": { "technologies": [], "description": "", @@ -5832,7 +5832,7 @@ } }, "2022_fossology": { - "timestamp": "2025-10-20T09:22:02.800571", + "timestamp": "2025-10-27T09:23:52.608264", "data": { "technologies": [], "description": "", @@ -5841,7 +5841,7 @@ } }, "2022_apache-software-foundation": { - "timestamp": "2025-10-20T09:21:17.561132", + "timestamp": "2025-10-27T09:23:50.782891", "data": { "technologies": [], "description": "", @@ -5850,7 +5850,7 @@ } }, "2022_tensorflow": { - "timestamp": "2025-10-20T09:21:18.815791", + "timestamp": "2025-10-27T09:23:25.154703", "data": { "technologies": [], "description": "", @@ -5859,7 +5859,7 @@ } }, "2022_open-food-facts": { - "timestamp": "2025-10-20T09:21:15.034192", + "timestamp": "2025-10-27T09:23:49.562057", "data": { "technologies": [], "description": "", @@ -5868,7 +5868,7 @@ } }, "2022_git": { - "timestamp": "2025-10-20T09:22:29.202068", + "timestamp": "2025-10-27T09:23:05.769273", "data": { "technologies": [], "description": "", @@ -5886,7 +5886,7 @@ } }, "2022_debian": { - "timestamp": "2025-10-20T09:22:07.201322", + "timestamp": "2025-10-27T09:23:30.071205", "data": { "technologies": [], "description": "", @@ -5895,7 +5895,7 @@ } }, "2022_robocomp": { - "timestamp": "2025-10-20T09:21:28.861271", + "timestamp": "2025-10-27T09:23:30.677153", "data": { "technologies": [], "description": "", @@ -5904,7 +5904,7 @@ } }, "2022_international-catrobat-association": { - "timestamp": "2025-10-20T09:21:57.136397", + "timestamp": "2025-10-27T09:23:07.595103", "data": { "technologies": [], "description": "", @@ -5931,7 +5931,7 @@ } }, "2022_libssh": { - "timestamp": "2025-10-20T09:21:42.053803", + "timestamp": "2025-10-27T09:22:10.284134", "data": { "technologies": [], "description": "", @@ -5940,7 +5940,7 @@ } }, "2022_scala-center": { - "timestamp": "2025-10-20T09:21:52.737338", + "timestamp": "2025-10-27T09:22:39.167465", "data": { "technologies": [], "description": "", @@ -5949,7 +5949,7 @@ } }, "2022_polypheny": { - "timestamp": "2025-10-20T09:21:35.768503", + "timestamp": "2025-10-27T09:22:45.023569", "data": { "technologies": [], "description": "", @@ -5958,7 +5958,7 @@ } }, "2022_mit-app-inventor": { - "timestamp": "2025-10-20T09:23:08.848684", + "timestamp": "2025-10-27T09:23:22.724212", "data": { "technologies": [], "description": "", @@ -5976,7 +5976,7 @@ } }, "2022_homebrew": { - "timestamp": "2025-10-20T09:23:13.872891", + "timestamp": "2025-10-27T09:23:36.150169", "data": { "technologies": [], "description": "", @@ -5985,7 +5985,7 @@ } }, "2022_geomscale": { - "timestamp": "2025-10-20T09:22:27.942141", + "timestamp": "2025-10-27T09:22:35.168768", "data": { "technologies": [], "description": "", @@ -5994,7 +5994,7 @@ } }, "2022_cuneiform-digital-library-initiative-cdli": { - "timestamp": "2025-10-20T09:21:36.396795", + "timestamp": "2025-10-27T09:22:18.175569", "data": { "technologies": [], "description": "", @@ -6003,7 +6003,7 @@ } }, "2022_moveit": { - "timestamp": "2025-10-20T09:22:45.558164", + "timestamp": "2025-10-27T09:23:31.285076", "data": { "technologies": [], "description": "", @@ -6021,7 +6021,7 @@ } }, "2022_freetype": { - "timestamp": "2025-10-20T09:21:48.329018", + "timestamp": "2025-10-27T09:22:53.790083", "data": { "technologies": [], "description": "", @@ -6039,7 +6039,7 @@ } }, "2022_omegaup": { - "timestamp": "2025-10-20T09:21:55.255265", + "timestamp": "2025-10-27T09:23:41.015364", "data": { "technologies": [], "description": "", @@ -6048,7 +6048,7 @@ } }, "2022_responsible-ai-and-human-centred-technology": { - "timestamp": "2025-10-20T09:22:32.984861", + "timestamp": "2025-10-27T09:23:04.555763", "data": { "technologies": [], "description": "", @@ -6057,7 +6057,7 @@ } }, "2022_chips-alliance": { - "timestamp": "2025-10-20T09:22:55.622476", + "timestamp": "2025-10-27T09:23:36.755416", "data": { "technologies": [], "description": "", @@ -6066,7 +6066,7 @@ } }, "2022_cern-hsf": { - "timestamp": "2025-10-20T09:22:13.489128", + "timestamp": "2025-10-27T09:23:56.335049", "data": { "technologies": [], "description": "", @@ -6075,7 +6075,7 @@ } }, "2022_qemu": { - "timestamp": "2025-10-20T09:21:20.694034", + "timestamp": "2025-10-27T09:23:29.462858", "data": { "technologies": [], "description": "", @@ -6084,7 +6084,7 @@ } }, "2022_score-lab": { - "timestamp": "2025-10-20T09:22:46.188158", + "timestamp": "2025-10-27T09:23:03.277813", "data": { "technologies": [], "description": "", @@ -6093,7 +6093,7 @@ } }, "2022_aboutcode": { - "timestamp": "2025-10-20T09:22:24.807347", + "timestamp": "2025-10-27T09:22:38.562489", "data": { "technologies": [], "description": "", @@ -6102,7 +6102,7 @@ } }, "2022_national-resource-for-network-biology-nrnb": { - "timestamp": "2025-10-20T09:22:36.759746", + "timestamp": "2025-10-27T09:23:09.422524", "data": { "technologies": [], "description": "", @@ -6111,7 +6111,7 @@ } }, "2022_chromium-lj": { - "timestamp": "2025-10-20T09:21:53.992765", + "timestamp": "2025-10-27T09:23:53.831468", "data": { "technologies": [], "description": "", @@ -6129,7 +6129,7 @@ } }, "2022_aossie": { - "timestamp": "2025-10-20T09:21:32.625803", + "timestamp": "2025-10-27T09:22:48.630172", "data": { "technologies": [], "description": "", @@ -6138,7 +6138,7 @@ } }, "2022_joplin": { - "timestamp": "2025-10-20T09:21:48.954643", + "timestamp": "2025-10-27T09:23:20.231651", "data": { "technologies": [], "description": "", @@ -6147,7 +6147,7 @@ } }, "2022_genome-assembly-and-annotation": { - "timestamp": "2025-10-20T09:22:04.682455", + "timestamp": "2025-10-27T09:23:28.246113", "data": { "technologies": [], "description": "", @@ -6165,7 +6165,7 @@ } }, "2022_haskellorg": { - "timestamp": "2025-10-20T09:22:09.713199", + "timestamp": "2025-10-27T09:22:46.849864", "data": { "technologies": [], "description": "", @@ -6174,7 +6174,7 @@ } }, "2022_chaoss": { - "timestamp": "2025-10-20T09:21:28.234179", + "timestamp": "2025-10-27T09:23:53.217570", "data": { "technologies": [], "description": "", @@ -6192,7 +6192,7 @@ } }, "2022_jderobot": { - "timestamp": "2025-10-20T09:22:17.260078", + "timestamp": "2025-10-27T09:22:49.852240", "data": { "technologies": [], "description": "", @@ -6201,7 +6201,7 @@ } }, "2022_xwiki": { - "timestamp": "2025-10-20T09:22:34.239098", + "timestamp": "2025-10-27T09:23:42.273641", "data": { "technologies": [], "description": "", @@ -6210,7 +6210,7 @@ } }, "2022_metasploit": { - "timestamp": "2025-10-20T09:21:49.582349", + "timestamp": "2025-10-27T09:22:25.157934", "data": { "technologies": [], "description": "", @@ -6219,7 +6219,7 @@ } }, "2022_ffmpeg": { - "timestamp": "2025-10-20T09:21:31.999562", + "timestamp": "2025-10-27T09:22:46.243012", "data": { "technologies": [], "description": "", @@ -6237,7 +6237,7 @@ } }, "2022_52north-spatial-information-research-gmbh": { - "timestamp": "2025-10-20T09:21:18.189207", + "timestamp": "2025-10-27T09:23:25.760139", "data": { "technologies": [], "description": "", @@ -6255,7 +6255,7 @@ } }, "2022_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-20T09:21:38.911711", + "timestamp": "2025-10-27T09:23:15.973140", "data": { "technologies": [], "description": "", @@ -6264,7 +6264,7 @@ } }, "2022_performance-co-pilot": { - "timestamp": "2025-10-20T09:21:42.681444", + "timestamp": "2025-10-27T09:23:14.147656", "data": { "technologies": [], "description": "", @@ -6273,7 +6273,7 @@ } }, "2022_reactos-foundation": { - "timestamp": "2025-10-20T09:21:43.309347", + "timestamp": "2025-10-27T09:23:48.351357", "data": { "technologies": [], "description": "", @@ -6282,7 +6282,7 @@ } }, "2022_kde-community": { - "timestamp": "2025-10-20T09:22:00.920624", + "timestamp": "2025-10-27T09:22:40.880331", "data": { "technologies": [], "description": "", @@ -6291,7 +6291,7 @@ } }, "2022_our-world-in-data": { - "timestamp": "2025-10-20T09:21:55.882028", + "timestamp": "2025-10-27T09:22:42.702709", "data": { "technologies": [], "description": "", @@ -6300,7 +6300,7 @@ } }, "2022_circuitverseorg": { - "timestamp": "2025-10-20T09:22:17.889751", + "timestamp": "2025-10-27T09:22:25.762806", "data": { "technologies": [], "description": "", @@ -6309,7 +6309,7 @@ } }, "2022_libcamera": { - "timestamp": "2025-10-20T09:21:13.148650", + "timestamp": "2025-10-27T09:23:06.375942", "data": { "technologies": [], "description": "", @@ -6318,7 +6318,7 @@ } }, "2022_mariadb": { - "timestamp": "2025-10-20T09:21:16.929833", + "timestamp": "2025-10-27T09:22:36.780402", "data": { "technologies": [], "description": "", @@ -6327,7 +6327,7 @@ } }, "2022_godot-engine": { - "timestamp": "2025-10-20T09:22:12.225237", + "timestamp": "2025-10-27T09:22:24.551093", "data": { "technologies": [], "description": "", @@ -6336,7 +6336,7 @@ } }, "2022_intel-video-and-audio-for-linux": { - "timestamp": "2025-10-20T09:22:14.117844", + "timestamp": "2025-10-27T09:22:56.117239", "data": { "technologies": [], "description": "", @@ -6345,7 +6345,7 @@ } }, "2022_rocketchat": { - "timestamp": "2025-10-20T09:21:51.471295", + "timestamp": "2025-10-27T09:22:45.632363", "data": { "technologies": [], "description": "", @@ -6372,7 +6372,7 @@ } }, "2022_coreboot": { - "timestamp": "2025-10-20T09:22:47.448070", + "timestamp": "2025-10-27T09:23:39.186122", "data": { "technologies": [], "description": "", @@ -6381,7 +6381,7 @@ } }, "2022_metabrainz-foundation-inc": { - "timestamp": "2025-10-20T09:21:30.746423", + "timestamp": "2025-10-27T09:23:47.743111", "data": { "technologies": [], "description": "", @@ -6390,7 +6390,7 @@ } }, "2022_frrouting": { - "timestamp": "2025-10-20T09:21:22.573712", + "timestamp": "2025-10-27T09:23:20.837526", "data": { "technologies": [], "description": "", @@ -6417,7 +6417,7 @@ } }, "2022_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-20T09:22:40.526379", + "timestamp": "2025-10-27T09:23:39.795120", "data": { "technologies": [], "description": "", @@ -6426,7 +6426,7 @@ } }, "2022_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-20T09:22:43.040233", + "timestamp": "2025-10-27T09:23:56.947172", "data": { "technologies": [], "description": "", @@ -6435,7 +6435,7 @@ } }, "2022_blender-foundation": { - "timestamp": "2025-10-20T09:21:15.670551", + "timestamp": "2025-10-27T09:23:45.915144", "data": { "technologies": [], "description": "", @@ -6444,7 +6444,7 @@ } }, "2022_ardupilot": { - "timestamp": "2025-10-20T09:22:24.179768", + "timestamp": "2025-10-27T09:23:16.583838", "data": { "technologies": [], "description": "", @@ -6453,7 +6453,7 @@ } }, "2022_open-robotics": { - "timestamp": "2025-10-20T09:21:21.322489", + "timestamp": "2025-10-27T09:23:00.947824", "data": { "technologies": [], "description": "", @@ -6462,7 +6462,7 @@ } }, "2022_gentoo-foundation": { - "timestamp": "2025-10-20T09:21:12.519132", + "timestamp": "2025-10-27T09:22:14.832403", "data": { "technologies": [], "description": "", @@ -6471,7 +6471,7 @@ } }, "2022_red-hen-lab": { - "timestamp": "2025-10-20T09:21:52.098798", + "timestamp": "2025-10-27T09:22:14.215853", "data": { "technologies": [], "description": "", @@ -6480,7 +6480,7 @@ } }, "2022_ioos": { - "timestamp": "2025-10-20T09:22:36.132102", + "timestamp": "2025-10-27T09:22:47.457113", "data": { "technologies": [], "description": "", @@ -6489,7 +6489,7 @@ } }, "2022_the-netbsd-foundation": { - "timestamp": "2025-10-20T09:22:14.744565", + "timestamp": "2025-10-27T09:22:30.534851", "data": { "technologies": [], "description": "", @@ -6498,7 +6498,7 @@ } }, "2022_organic-maps": { - "timestamp": "2025-10-20T09:22:22.290634", + "timestamp": "2025-10-27T09:22:33.445158", "data": { "technologies": [], "description": "", @@ -6507,7 +6507,7 @@ } }, "2022_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-20T09:22:48.078955", + "timestamp": "2025-10-27T09:23:11.251266", "data": { "technologies": [], "description": "", @@ -6525,7 +6525,7 @@ } }, "2022_jabref-ev": { - "timestamp": "2025-10-20T09:23:03.163824", + "timestamp": "2025-10-27T09:23:10.644362", "data": { "technologies": [], "description": "", @@ -6534,7 +6534,7 @@ } }, "2022_inkscape": { - "timestamp": "2025-10-20T09:23:10.107158", + "timestamp": "2025-10-27T09:23:55.045303", "data": { "technologies": [], "description": "", @@ -6543,7 +6543,7 @@ } }, "2022_cgal-project": { - "timestamp": "2025-10-20T09:21:59.030720", + "timestamp": "2025-10-27T09:22:23.335739", "data": { "technologies": [], "description": "", @@ -6552,7 +6552,7 @@ } }, "2022_xorg-foundation": { - "timestamp": "2025-10-20T09:21:14.404823", + "timestamp": "2025-10-27T09:23:37.969774", "data": { "technologies": [], "description": "", @@ -6561,7 +6561,7 @@ } }, "2022_radar-base": { - "timestamp": "2025-10-20T09:21:34.513449", + "timestamp": "2025-10-27T09:22:42.095178", "data": { "technologies": [], "description": "", @@ -6570,7 +6570,7 @@ } }, "2022_center-for-translational-data-science": { - "timestamp": "2025-10-20T09:22:54.988543", + "timestamp": "2025-10-27T09:23:08.817820", "data": { "technologies": [], "description": "", @@ -6579,7 +6579,7 @@ } }, "2022_opensuse-project": { - "timestamp": "2025-10-20T09:21:50.839300", + "timestamp": "2025-10-27T09:23:02.166516", "data": { "technologies": [], "description": "", @@ -6588,7 +6588,7 @@ } }, "2022_criu": { - "timestamp": "2025-10-20T09:21:56.509168", + "timestamp": "2025-10-27T09:23:48.957553", "data": { "technologies": [], "description": "", @@ -6597,7 +6597,7 @@ } }, "2022_ceph": { - "timestamp": "2025-10-20T09:21:47.700741", + "timestamp": "2025-10-27T09:22:18.782805", "data": { "technologies": [], "description": "", @@ -6633,7 +6633,7 @@ } }, "2022_pecan-project": { - "timestamp": "2025-10-20T09:22:31.730688", + "timestamp": "2025-10-27T09:23:19.016670", "data": { "technologies": [], "description": "", @@ -6642,7 +6642,7 @@ } }, "2022_eclipse-foundation": { - "timestamp": "2025-10-20T09:22:39.897253", + "timestamp": "2025-10-27T09:23:54.439830", "data": { "technologies": [], "description": "", @@ -6660,7 +6660,7 @@ } }, "2022_learning-equality": { - "timestamp": "2025-10-20T09:21:25.089821", + "timestamp": "2025-10-27T09:23:18.405447", "data": { "technologies": [], "description": "", @@ -6669,7 +6669,7 @@ } }, "2022_ruby": { - "timestamp": "2025-10-20T09:22:26.685602", + "timestamp": "2025-10-27T09:23:28.855671", "data": { "technologies": [], "description": "", @@ -6678,7 +6678,7 @@ } }, "2022_the-enigma-team": { - "timestamp": "2025-10-20T09:21:23.831196", + "timestamp": "2025-10-27T09:23:00.338972", "data": { "technologies": [], "description": "", @@ -6687,7 +6687,7 @@ } }, "2022_wellcome-sanger-institute": { - "timestamp": "2025-10-20T09:21:31.373177", + "timestamp": "2025-10-27T09:22:19.895244", "data": { "technologies": [], "description": "", @@ -6696,7 +6696,7 @@ } }, "2022_monado": { - "timestamp": "2025-10-20T09:22:39.270070", + "timestamp": "2025-10-27T09:23:17.189566", "data": { "technologies": [], "description": "", From 62330d43c7cfb5a1f6fa74b65494ef517c62883c Mon Sep 17 00:00:00 2001 From: Imranch4 Date: Mon, 3 Nov 2025 09:23:15 +0000 Subject: [PATCH 6/6] Auto-update GSoC organizations --- README.md | 990 +++++++++++++++---------------- gsoc_2022_web_organizations.json | 270 ++++----- gsoc_2023_web_organizations.json | 186 +++--- gsoc_2024_web_organizations.json | 264 ++++----- gsoc_2025_web_organizations.json | 206 +++---- gsoc_cache.json | 554 ++++++++--------- 6 files changed, 1235 insertions(+), 1235 deletions(-) diff --git a/README.md b/README.md index efcd6b1..f7c515a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ - **GSoC 2023**: 21 organizations with web projects - **GSoC 2022**: 32 organizations with web projects -> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-10-27 09:23:58 +> πŸ”„ **Auto-updates weekly** | πŸ“… Last updated: 2025-11-03 09:23:15 ## πŸš€ GSoC 2025 - Web Development Organizations @@ -25,29 +25,29 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [OpenAstronomy](#2025-openastronomy) | HTML | -| 2. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 1. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | +| 2. | [Checker Framework](#2025-checker-framework) | HTML | | 3. | [Haskell.org](#2025-haskellorg) | JavaScript | -| 4. | [Graphite](#2025-graphite) | Node.js | -| 5. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | -| 6. | [API Dash](#2025-api-dash) | GraphQL | -| 7. | [JdeRobot](#2025-jderobot) | JavaScript | -| 8. | [Alaska](#2025-alaska) | REST API | -| 9. | [Checker Framework](#2025-checker-framework) | HTML | -| 10. | [freifunk](#2025-freifunk) | Babel | -| 11. | [stdlib](#2025-stdlib) | JavaScript, Node.js | -| 12. | [Joomla!](#2025-joomla!) | HTML | -| 13. | [BRL-CAD](#2025-brl-cad) | JavaScript | -| 14. | [Plone Foundation](#2025-plone-foundation) | React | -| 15. | [Processing Foundation](#2025-processing-foundation) | JavaScript | -| 16. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | -| 17. | [Jenkins](#2025-jenkins) | JavaScript | -| 18. | [Python Software Foundation](#2025-python-software-foundation) | HTML | -| 19. | [webpack](#2025-webpack) | JavaScript, Node.js, REST API, Webpack | -| 20. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | -| 21. | [Git](#2025-git) | Ruby on Rails | -| 22. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | -| 23. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 4. | [National Resource for Network Biology (NRNB)](#2025-national-resource-for-network-biology-(nrnb)) | HTML | +| 5. | [Joomla!](#2025-joomla!) | HTML | +| 6. | [Processing Foundation](#2025-processing-foundation) | JavaScript | +| 7. | [freifunk](#2025-freifunk) | Babel | +| 8. | [BRL-CAD](#2025-brl-cad) | JavaScript | +| 9. | [Electron](#2025-electron) | CSS, HTML, JavaScript, Node.js | +| 10. | [Graphite](#2025-graphite) | Node.js | +| 11. | [Python Software Foundation](#2025-python-software-foundation) | HTML | +| 12. | [JdeRobot](#2025-jderobot) | JavaScript | +| 13. | [rocket.chat](#2025-rocketchat) | Node.js, TypeScript | +| 14. | [Alaska](#2025-alaska) | REST API | +| 15. | [Open Science Initiative for Perfusion Imaging](#2025-open-science-initiative-for-perfusion-imaging) | Less | +| 16. | [stdlib](#2025-stdlib) | JavaScript, Node.js | +| 17. | [AOSSIE](#2025-aossie) | CSS, HTML, JavaScript, Jest, React | +| 18. | [Git](#2025-git) | Ruby on Rails | +| 19. | [Django Software Foundation](#2025-django-software-foundation) | Django | +| 20. | [Plone Foundation](#2025-plone-foundation) | React | +| 21. | [Jenkins](#2025-jenkins) | JavaScript | +| 22. | [OpenAstronomy](#2025-openastronomy) | HTML | +| 23. | [API Dash](#2025-api-dash) | GraphQL |
@@ -57,34 +57,34 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [Jenkins](#2024-jenkins) | JavaScript | -| 2. | [Haskell.org](#2024-haskellorg) | JavaScript | -| 3. | [Django Software Foundation](#2024-django-software-foundation) | Django | -| 4. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | -| 5. | [Graphite](#2024-graphite) | Node.js | -| 6. | [Git](#2024-git) | Ruby on Rails | -| 7. | [freifunk](#2024-freifunk) | Babel | -| 8. | [stdlib](#2024-stdlib) | JavaScript, Node.js | -| 9. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | -| 10. | [Python Software Foundation](#2024-python-software-foundation) | HTML | -| 11. | [Open Chemistry](#2024-open-chemistry) | Babel | -| 12. | [Purr Data](#2024-purr-data) | HTML | -| 13. | [Alaska](#2024-alaska) | REST API | -| 14. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | -| 15. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | -| 16. | [JdeRobot](#2024-jderobot) | JavaScript | -| 17. | [BRL-CAD](#2024-brl-cad) | JavaScript | -| 18. | [API Dash](#2024-api-dash) | GraphQL | -| 19. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | -| 20. | [OpenAstronomy](#2024-openastronomy) | HTML | -| 21. | [MetaCall](#2024-metacall) | Node.js | -| 22. | [Plone Foundation](#2024-plone-foundation) | React | -| 23. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | -| 24. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | -| 25. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | -| 26. | [Apertium](#2024-apertium) | Less | -| 27. | [Polypheny](#2024-polypheny) | REST API | -| 28. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 1. | [Polypheny](#2024-polypheny) | REST API | +| 2. | [Purr Data](#2024-purr-data) | HTML | +| 3. | [API Dash](#2024-api-dash) | GraphQL | +| 4. | [JdeRobot](#2024-jderobot) | JavaScript | +| 5. | [Git](#2024-git) | Ruby on Rails | +| 6. | [webpack](#2024-webpack) | JavaScript, Node.js, REST API, Webpack | +| 7. | [Nightwatch.js](#2024-nightwatchjs) | Angular, JavaScript, Node.js, React, Vue.js | +| 8. | [Alaska](#2024-alaska) | REST API | +| 9. | [National Resource for Network Biology (NRNB)](#2024-national-resource-for-network-biology-(nrnb)) | HTML | +| 10. | [Apertium](#2024-apertium) | Less | +| 11. | [rocket.chat](#2024-rocketchat) | Node.js, TypeScript | +| 12. | [freifunk](#2024-freifunk) | Babel | +| 13. | [OpenAstronomy](#2024-openastronomy) | HTML | +| 14. | [Django Software Foundation](#2024-django-software-foundation) | Django | +| 15. | [Haskell.org](#2024-haskellorg) | JavaScript | +| 16. | [MetaCall](#2024-metacall) | Node.js | +| 17. | [Graphite](#2024-graphite) | Node.js | +| 18. | [Python Software Foundation](#2024-python-software-foundation) | HTML | +| 19. | [AOSSIE](#2024-aossie) | CSS, HTML, JavaScript, Jest, React | +| 20. | [Plone Foundation](#2024-plone-foundation) | React | +| 21. | [Open Science Initiative for Perfusion Imaging](#2024-open-science-initiative-for-perfusion-imaging) | Less | +| 22. | [Electron](#2024-electron) | CSS, HTML, JavaScript, Node.js | +| 23. | [stdlib](#2024-stdlib) | JavaScript, Node.js | +| 24. | [Neutralinojs](#2024-neutralinojs) | CSS, HTML, JavaScript | +| 25. | [The ENIGMA Team](#2024-the-enigma-team) | JavaScript | +| 26. | [Open Chemistry](#2024-open-chemistry) | Babel | +| 27. | [Jenkins](#2024-jenkins) | JavaScript | +| 28. | [BRL-CAD](#2024-brl-cad) | JavaScript | | 29. | [caMicroscope](#2024-camicroscope) | HTML |
@@ -95,27 +95,27 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | -| 2. | [Git](#2023-git) | Ruby on Rails | -| 3. | [BRL-CAD](#2023-brl-cad) | JavaScript | -| 4. | [Jenkins](#2023-jenkins) | JavaScript | -| 5. | [Plone Foundation](#2023-plone-foundation) | React | -| 6. | [freifunk](#2023-freifunk) | Babel | -| 7. | [Apertium](#2023-apertium) | Less | -| 8. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | -| 9. | [Django Software Foundation](#2023-django-software-foundation) | Django | -| 10. | [Purr Data](#2023-purr-data) | HTML | -| 11. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | -| 12. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 1. | [freifunk](#2023-freifunk) | Babel | +| 2. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | +| 3. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | +| 4. | [Django Software Foundation](#2023-django-software-foundation) | Django | +| 5. | [The ENIGMA Team](#2023-the-enigma-team) | JavaScript | +| 6. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | +| 7. | [Open Chemistry](#2023-open-chemistry) | Babel | +| 8. | [BRL-CAD](#2023-brl-cad) | JavaScript | +| 9. | [AOSSIE](#2023-aossie) | CSS, HTML, JavaScript, Jest, React | +| 10. | [Plone Foundation](#2023-plone-foundation) | React | +| 11. | [JdeRobot](#2023-jderobot) | JavaScript | +| 12. | [Git](#2023-git) | Ruby on Rails | | 13. | [MetaCall](#2023-metacall) | Node.js | -| 14. | [Open Chemistry](#2023-open-chemistry) | Babel | -| 15. | [JdeRobot](#2023-jderobot) | JavaScript | -| 16. | [Python Software Foundation](#2023-python-software-foundation) | HTML | -| 17. | [XWiki](#2023-xwiki) | CSS, HTML, JavaScript | -| 18. | [MZmine and MS-DIAL](#2023-mzmine-and-ms-dial) | HTML | -| 19. | [caMicroscope](#2023-camicroscope) | HTML | -| 20. | [National Resource for Network Biology (NRNB)](#2023-national-resource-for-network-biology-(nrnb)) | HTML | -| 21. | [OpenAstronomy](#2023-openastronomy) | HTML | +| 14. | [Python Software Foundation](#2023-python-software-foundation) | HTML | +| 15. | [caMicroscope](#2023-camicroscope) | HTML | +| 16. | [Apertium](#2023-apertium) | Less | +| 17. | [Jenkins](#2023-jenkins) | JavaScript | +| 18. | [rocket.chat](#2023-rocketchat) | Node.js, TypeScript | +| 19. | [OpenAstronomy](#2023-openastronomy) | HTML | +| 20. | [Processing Foundation](#2023-processing-foundation) | JavaScript | +| 21. | [Purr Data](#2023-purr-data) | HTML |
@@ -125,56 +125,56 @@ | No. | Organization | Web Technologies | |-----|--------------|------------------| -| 1. | [freifunk](#2022-freifunk) | Babel | -| 2. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | -| 3. | [JBoss Community](#2022-jboss-community) | Node.js | -| 4. | [OpenAstronomy](#2022-openastronomy) | HTML | -| 5. | [Purr Data](#2022-purr-data) | HTML | -| 6. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | -| 7. | [Godot Engine](#2022-godot-engine) | HTML | -| 8. | [Jenkins](#2022-jenkins) | JavaScript | -| 9. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | -| 10. | [Weaviate](#2022-weaviate) | GraphQL, REST API | -| 11. | [Open Chemistry](#2022-open-chemistry) | Babel | -| 12. | [Polypheny](#2022-polypheny) | REST API | -| 13. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | -| 14. | [Haskell.org](#2022-haskellorg) | JavaScript | -| 15. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | -| 16. | [SeaQL](#2022-seaql) | GraphQL | -| 17. | [JdeRobot](#2022-jderobot) | JavaScript | -| 18. | [Casbin](#2022-casbin) | JavaScript, Node.js | -| 19. | [Plone Foundation](#2022-plone-foundation) | React | -| 20. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | -| 21. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | -| 22. | [Django Software Foundation](#2022-django-software-foundation) | Django | -| 23. | [Python Software Foundation](#2022-python-software-foundation) | HTML | -| 24. | [Git](#2022-git) | Ruby on Rails | -| 25. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | -| 26. | [FRRouting](#2022-frrouting) | Babel | -| 27. | [BRL-CAD](#2022-brl-cad) | JavaScript | -| 28. | [Processing Foundation](#2022-processing-foundation) | JavaScript | -| 29. | [Matrix.org](#2022-matrixorg) | WebRTC | -| 30. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | -| 31. | [Joomla!](#2022-joomla!) | HTML | -| 32. | [MetaCall](#2022-metacall) | Node.js | +| 1. | [OpenAstronomy](#2022-openastronomy) | HTML | +| 2. | [BRL-CAD](#2022-brl-cad) | JavaScript | +| 3. | [freifunk](#2022-freifunk) | Babel | +| 4. | [Processing Foundation](#2022-processing-foundation) | JavaScript | +| 5. | [Plone Foundation](#2022-plone-foundation) | React | +| 6. | [Jenkins](#2022-jenkins) | JavaScript | +| 7. | [Forschungszentrum JΓΌlich](#2022-forschungszentrum-jΓΌlich) | Node.js | +| 8. | [Open Chemistry](#2022-open-chemistry) | Babel | +| 9. | [Python Software Foundation](#2022-python-software-foundation) | HTML | +| 10. | [MetaCall](#2022-metacall) | Node.js | +| 11. | [Godot Engine](#2022-godot-engine) | HTML | +| 12. | [Joomla!](#2022-joomla!) | HTML | +| 13. | [JBoss Community](#2022-jboss-community) | Node.js | +| 14. | [FRRouting](#2022-frrouting) | Babel | +| 15. | [Haskell.org](#2022-haskellorg) | JavaScript | +| 16. | [syslog-ng](#2022-syslog-ng) | JavaScript, REST API | +| 17. | [XWiki](#2022-xwiki) | CSS, HTML, JavaScript | +| 18. | [Weaviate](#2022-weaviate) | GraphQL, REST API | +| 19. | [The ENIGMA Team](#2022-the-enigma-team) | JavaScript | +| 20. | [Electron](#2022-electron) | CSS, HTML, JavaScript, Node.js | +| 21. | [Casbin](#2022-casbin) | JavaScript, Node.js | +| 22. | [rocket.chat](#2022-rocketchat) | Node.js, TypeScript | +| 23. | [Neutralinojs](#2022-neutralinojs) | CSS, HTML, JavaScript | +| 24. | [Purr Data](#2022-purr-data) | HTML | +| 25. | [Polypheny](#2022-polypheny) | REST API | +| 26. | [National Resource for Network Biology (NRNB)](#2022-national-resource-for-network-biology-(nrnb)) | HTML | +| 27. | [AOSSIE](#2022-aossie) | CSS, HTML, JavaScript, Jest, React | +| 28. | [Matrix.org](#2022-matrixorg) | WebRTC | +| 29. | [Django Software Foundation](#2022-django-software-foundation) | Django | +| 30. | [JdeRobot](#2022-jderobot) | JavaScript | +| 31. | [SeaQL](#2022-seaql) | GraphQL | +| 32. | [Git](#2022-git) | Ruby on Rails |
## πŸ“‹ GSoC 2025 - Organization Details -### 1. OpenAstronomy {#2025-openastronomy} +### 1. webpack {#2025-webpack} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 2. Django Software Foundation {#2025-django-software-foundation} +### 2. Checker Framework {#2025-checker-framework} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) +- **Website**: [Visit Website](https://checkerframework.org/)
@@ -186,55 +186,31 @@
-### 4. Graphite {#2025-graphite} - -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) - -
- -### 5. AOSSIE {#2025-aossie} +### 4. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 6. API Dash {#2025-api-dash} +### 5. Joomla! {#2025-joomla!} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 7. JdeRobot {#2025-jderobot} +### 6. Processing Foundation {#2025-processing-foundation} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) - -
- -### 8. Alaska {#2025-alaska} - -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) -- **Website**: [Visit Website](https://www.uaa.alaska.edu/research) - -
- -### 9. Checker Framework {#2025-checker-framework} - -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework) -- **Website**: [Visit Website](https://checkerframework.org/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 10. freifunk {#2025-freifunk} +### 7. freifunk {#2025-freifunk} - **Technologies**: Babel - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk) @@ -242,87 +218,87 @@
-### 11. stdlib {#2025-stdlib} +### 8. BRL-CAD {#2025-brl-cad} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 12. Joomla! {#2025-joomla!} +### 9. Electron {#2025-electron} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **Technologies**: CSS, HTML, JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) +- **Website**: [Visit Website](https://electronjs.org)
-### 13. BRL-CAD {#2025-brl-cad} +### 10. Graphite {#2025-graphite} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
-### 14. Plone Foundation {#2025-plone-foundation} +### 11. Python Software Foundation {#2025-python-software-foundation} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 15. Processing Foundation {#2025-processing-foundation} +### 12. JdeRobot {#2025-jderobot} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 16. National Resource for Network Biology (NRNB) {#2025-national-resource-for-network-biology-(nrnb)} +### 13. rocket.chat {#2025-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 17. Jenkins {#2025-jenkins} +### 14. Alaska {#2025-alaska} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/alaska) +- **Website**: [Visit Website](https://www.uaa.alaska.edu/research)
-### 18. Python Software Foundation {#2025-python-software-foundation} +### 15. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 19. webpack {#2025-webpack} +### 16. stdlib {#2025-stdlib} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-### 20. Electron {#2025-electron} +### 17. AOSSIE {#2025-aossie} -- **Technologies**: CSS, HTML, JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/electron) -- **Website**: [Visit Website](https://electronjs.org) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 21. Git {#2025-git} +### 18. Git {#2025-git} - **Technologies**: Ruby on Rails - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/git) @@ -330,121 +306,105 @@
-### 22. Open Science Initiative for Perfusion Imaging {#2025-open-science-initiative-for-perfusion-imaging} +### 19. Django Software Foundation {#2025-django-software-foundation} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 23. rocket.chat {#2025-rocketchat} +### 20. Plone Foundation {#2025-plone-foundation} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-## πŸ“‹ GSoC 2024 - Organization Details - -### 1. Jenkins {#2024-jenkins} +### 21. Jenkins {#2025-jenkins} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp) - **Website**: [Visit Website](https://jenkins.io)
-### 2. Haskell.org {#2024-haskellorg} - -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) - -
- -### 3. Django Software Foundation {#2024-django-software-foundation} +### 22. OpenAstronomy {#2025-openastronomy} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 4. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} +### 23. API Dash {#2025-api-dash} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) -- **Website**: [Visit Website](https://osipi.ismrm.org/) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 5. Graphite {#2024-graphite} - -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) -- **Website**: [Visit Website](https://graphite.rs) - -
+## πŸ“‹ GSoC 2024 - Organization Details -### 6. Git {#2024-git} +### 1. Polypheny {#2024-polypheny} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 7. freifunk {#2024-freifunk} +### 2. Purr Data {#2024-purr-data} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 8. stdlib {#2024-stdlib} +### 3. API Dash {#2024-api-dash} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) -- **Website**: [Visit Website](https://stdlib.io) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) +- **Website**: [Visit Website](https://apidash.dev)
-### 9. Neutralinojs {#2024-neutralinojs} +### 4. JdeRobot {#2024-jderobot} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 10. Python Software Foundation {#2024-python-software-foundation} +### 5. Git {#2024-git} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 11. Open Chemistry {#2024-open-chemistry} +### 6. webpack {#2024-webpack} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: JavaScript, Node.js, REST API, Webpack +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) +- **Website**: [Visit Website](https://webpack.js.org)
-### 12. Purr Data {#2024-purr-data} +### 7. Nightwatch.js {#2024-nightwatchjs} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) +- **Website**: [Visit Website](https://nightwatchjs.org)
-### 13. Alaska {#2024-alaska} +### 8. Alaska {#2024-alaska} - **Technologies**: REST API - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/alaska) @@ -452,63 +412,63 @@
-### 14. Nightwatch.js {#2024-nightwatchjs} +### 9. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} -- **Technologies**: Angular, JavaScript, Node.js, React, Vue.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs) -- **Website**: [Visit Website](https://nightwatchjs.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 15. webpack {#2024-webpack} +### 10. Apertium {#2024-apertium} -- **Technologies**: JavaScript, Node.js, REST API, Webpack -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/webpack) -- **Website**: [Visit Website](https://webpack.js.org) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 16. JdeRobot {#2024-jderobot} +### 11. rocket.chat {#2024-rocketchat} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 17. BRL-CAD {#2024-brl-cad} +### 12. freifunk {#2024-freifunk} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 18. API Dash {#2024-api-dash} +### 13. OpenAstronomy {#2024-openastronomy} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash) -- **Website**: [Visit Website](https://apidash.dev) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) +- **Website**: [Visit Website](https://openastronomy.org/)
-### 19. National Resource for Network Biology (NRNB) {#2024-national-resource-for-network-biology-(nrnb)} +### 14. Django Software Foundation {#2024-django-software-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 20. OpenAstronomy {#2024-openastronomy} +### 15. Haskell.org {#2024-haskellorg} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy) -- **Website**: [Visit Website](https://openastronomy.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 21. MetaCall {#2024-metacall} +### 16. MetaCall {#2024-metacall} - **Technologies**: Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/metacall) @@ -516,23 +476,23 @@
-### 22. Plone Foundation {#2024-plone-foundation} +### 17. Graphite {#2024-graphite} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/graphite) +- **Website**: [Visit Website](https://graphite.rs)
-### 23. The ENIGMA Team {#2024-the-enigma-team} +### 18. Python Software Foundation {#2024-python-software-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) -- **Website**: [Visit Website](https://enigma-dev.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 24. AOSSIE {#2024-aossie} +### 19. AOSSIE {#2024-aossie} - **Technologies**: CSS, HTML, JavaScript, Jest, React - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/aossie) @@ -540,31 +500,23 @@
-### 25. rocket.chat {#2024-rocketchat} +### 20. Plone Foundation {#2024-plone-foundation} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 26. Apertium {#2024-apertium} +### 21. Open Science Initiative for Perfusion Imaging {#2024-open-science-initiative-for-perfusion-imaging} - **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) - -
- -### 27. Polypheny {#2024-polypheny} - -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging) +- **Website**: [Visit Website](https://osipi.ismrm.org/)
-### 28. Electron {#2024-electron} +### 22. Electron {#2024-electron} - **Technologies**: CSS, HTML, JavaScript, Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/electron) @@ -572,97 +524,129 @@
-### 29. caMicroscope {#2024-camicroscope} +### 23. stdlib {#2024-stdlib} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib) +- **Website**: [Visit Website](https://stdlib.io)
-## πŸ“‹ GSoC 2023 - Organization Details +### 24. Neutralinojs {#2024-neutralinojs} + +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org) -### 1. The ENIGMA Team {#2023-the-enigma-team} +
+ +### 25. The ENIGMA Team {#2024-the-enigma-team} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team) - **Website**: [Visit Website](https://enigma-dev.org)
-### 2. Git {#2023-git} +### 26. Open Chemistry {#2024-open-chemistry} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 3. BRL-CAD {#2023-brl-cad} +### 27. Jenkins {#2024-jenkins} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 4. Jenkins {#2023-jenkins} +### 28. BRL-CAD {#2024-brl-cad} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) -- **Website**: [Visit Website](https://jenkins.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 5. Plone Foundation {#2023-plone-foundation} +### 29. caMicroscope {#2024-camicroscope} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io) + +
+ +## πŸ“‹ GSoC 2023 - Organization Details + +### 1. freifunk {#2023-freifunk} + +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en) + +
+ +### 2. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) +- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) + +
+ +### 3. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} + +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 6. freifunk {#2023-freifunk} +### 4. Django Software Foundation {#2023-django-software-foundation} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 7. Apertium {#2023-apertium} +### 5. The ENIGMA Team {#2023-the-enigma-team} -- **Technologies**: Less -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) -- **Website**: [Visit Website](https://apertium.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team) +- **Website**: [Visit Website](https://enigma-dev.org)
-### 8. rocket.chat {#2023-rocketchat} +### 6. XWiki {#2023-xwiki} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 9. Django Software Foundation {#2023-django-software-foundation} +### 7. Open Chemistry {#2023-open-chemistry} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 10. Purr Data {#2023-purr-data} +### 8. BRL-CAD {#2023-brl-cad} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 11. AOSSIE {#2023-aossie} +### 9. AOSSIE {#2023-aossie} - **Technologies**: CSS, HTML, JavaScript, Jest, React - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/aossie) @@ -670,39 +654,39 @@
-### 12. Processing Foundation {#2023-processing-foundation} +### 10. Plone Foundation {#2023-plone-foundation} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 13. MetaCall {#2023-metacall} +### 11. JdeRobot {#2023-jderobot} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 14. Open Chemistry {#2023-open-chemistry} +### 12. Git {#2023-git} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
-### 15. JdeRobot {#2023-jderobot} +### 13. MetaCall {#2023-metacall} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 16. Python Software Foundation {#2023-python-software-foundation} +### 14. Python Software Foundation {#2023-python-software-foundation} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation) @@ -710,39 +694,39 @@
-### 17. XWiki {#2023-xwiki} +### 15. caMicroscope {#2023-camicroscope} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) +- **Website**: [Visit Website](https://camicroscope.github.io)
-### 18. MZmine and MS-DIAL {#2023-mzmine-and-ms-dial} +### 16. Apertium {#2023-apertium} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial) -- **Website**: [Visit Website](https://mzmine-ms-dial-gsoc.github.io/) +- **Technologies**: Less +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/apertium) +- **Website**: [Visit Website](https://apertium.org/)
-### 19. caMicroscope {#2023-camicroscope} +### 17. Jenkins {#2023-jenkins} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/camicroscope) -- **Website**: [Visit Website](https://camicroscope.github.io) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp) +- **Website**: [Visit Website](https://jenkins.io)
-### 20. National Resource for Network Biology (NRNB) {#2023-national-resource-for-network-biology-(nrnb)} +### 18. rocket.chat {#2023-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 21. OpenAstronomy {#2023-openastronomy} +### 19. OpenAstronomy {#2023-openastronomy} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/openastronomy) @@ -750,33 +734,25 @@
-## πŸ“‹ GSoC 2022 - Organization Details - -### 1. freifunk {#2022-freifunk} +### 20. Processing Foundation {#2023-processing-foundation} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) -- **Website**: [Visit Website](https://freifunk.net/en) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org)
-### 2. syslog-ng {#2022-syslog-ng} +### 21. Purr Data {#2023-purr-data} -- **Technologies**: JavaScript, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) -- **Website**: [Visit Website](https://www.syslog-ng.com/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 3. JBoss Community {#2022-jboss-community} - -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) -- **Website**: [Visit Website](http://www.jboss.org/) - -
+## πŸ“‹ GSoC 2022 - Organization Details -### 4. OpenAstronomy {#2022-openastronomy} +### 1. OpenAstronomy {#2022-openastronomy} - **Technologies**: HTML - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy) @@ -784,31 +760,39 @@
-### 5. Purr Data {#2022-purr-data} +### 2. BRL-CAD {#2022-brl-cad} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) -- **Website**: [Visit Website](https://www.purrdata.net/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) +- **Website**: [Visit Website](https://opencax.github.io/)
-### 6. Neutralinojs {#2022-neutralinojs} +### 3. freifunk {#2022-freifunk} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) -- **Website**: [Visit Website](https://neutralino.js.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk) +- **Website**: [Visit Website](https://freifunk.net/en)
-### 7. Godot Engine {#2022-godot-engine} +### 4. Processing Foundation {#2022-processing-foundation} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) -- **Website**: [Visit Website](https://godotengine.org) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) +- **Website**: [Visit Website](http://processingfoundation.org) + +
+ +### 5. Plone Foundation {#2022-plone-foundation} + +- **Technologies**: React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) +- **Website**: [Visit Website](https://plone.org)
-### 8. Jenkins {#2022-jenkins} +### 6. Jenkins {#2022-jenkins} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jenkins-wp) @@ -816,7 +800,7 @@
-### 9. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} +### 7. Forschungszentrum JΓΌlich {#2022-forschungszentrum-jΓΌlich} - **Technologies**: Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/forschungszentrum-julich) @@ -824,87 +808,95 @@
-### 10. Weaviate {#2022-weaviate} +### 8. Open Chemistry {#2022-open-chemistry} -- **Technologies**: GraphQL, REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) -- **Website**: [Visit Website](https://weaviate.io) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) +- **Website**: [Visit Website](https://openchemistry.org/)
-### 11. Open Chemistry {#2022-open-chemistry} +### 9. Python Software Foundation {#2022-python-software-foundation} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry) -- **Website**: [Visit Website](https://openchemistry.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) +- **Website**: [Visit Website](https://python-gsoc.org/)
-### 12. Polypheny {#2022-polypheny} +### 10. MetaCall {#2022-metacall} -- **Technologies**: REST API -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) -- **Website**: [Visit Website](https://polypheny.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) +- **Website**: [Visit Website](https://metacall.io)
-### 13. rocket.chat {#2022-rocketchat} +### 11. Godot Engine {#2022-godot-engine} -- **Technologies**: Node.js, TypeScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) -- **Website**: [Visit Website](https://github.com/RocketChat) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine) +- **Website**: [Visit Website](https://godotengine.org)
-### 14. Haskell.org {#2022-haskellorg} +### 12. Joomla! {#2022-joomla!} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) -- **Website**: [Visit Website](https://haskell.org/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) +- **Website**: [Visit Website](https://www.joomla.org/)
-### 15. AOSSIE {#2022-aossie} +### 13. JBoss Community {#2022-jboss-community} -- **Technologies**: CSS, HTML, JavaScript, Jest, React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) -- **Website**: [Visit Website](https://www.aossie.org) +- **Technologies**: Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community) +- **Website**: [Visit Website](http://www.jboss.org/)
-### 16. SeaQL {#2022-seaql} +### 14. FRRouting {#2022-frrouting} -- **Technologies**: GraphQL -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) -- **Website**: [Visit Website](https://www.sea-ql.org) +- **Technologies**: Babel +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) +- **Website**: [Visit Website](https://frrouting.org/)
-### 17. JdeRobot {#2022-jderobot} +### 15. Haskell.org {#2022-haskellorg} - **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) -- **Website**: [Visit Website](http://jderobot.github.io) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg) +- **Website**: [Visit Website](https://haskell.org/)
-### 18. Casbin {#2022-casbin} +### 16. syslog-ng {#2022-syslog-ng} -- **Technologies**: JavaScript, Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) -- **Website**: [Visit Website](https://casbin.org) +- **Technologies**: JavaScript, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng) +- **Website**: [Visit Website](https://www.syslog-ng.com/)
-### 19. Plone Foundation {#2022-plone-foundation} +### 17. XWiki {#2022-xwiki} -- **Technologies**: React -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation) -- **Website**: [Visit Website](https://plone.org) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) +- **Website**: [Visit Website](https://www.xwiki.org/)
-### 20. The ENIGMA Team {#2022-the-enigma-team} +### 18. Weaviate {#2022-weaviate} + +- **Technologies**: GraphQL, REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate) +- **Website**: [Visit Website](https://weaviate.io) + +
+ +### 19. The ENIGMA Team {#2022-the-enigma-team} - **Technologies**: JavaScript - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/the-enigma-team) @@ -912,7 +904,7 @@
-### 21. Electron {#2022-electron} +### 20. Electron {#2022-electron} - **Technologies**: CSS, HTML, JavaScript, Node.js - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/electron) @@ -920,63 +912,63 @@
-### 22. Django Software Foundation {#2022-django-software-foundation} +### 21. Casbin {#2022-casbin} -- **Technologies**: Django -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) -- **Website**: [Visit Website](https://www.djangoproject.com) +- **Technologies**: JavaScript, Node.js +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/casbin) +- **Website**: [Visit Website](https://casbin.org)
-### 23. Python Software Foundation {#2022-python-software-foundation} +### 22. rocket.chat {#2022-rocketchat} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation) -- **Website**: [Visit Website](https://python-gsoc.org/) +- **Technologies**: Node.js, TypeScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat) +- **Website**: [Visit Website](https://github.com/RocketChat)
-### 24. Git {#2022-git} +### 23. Neutralinojs {#2022-neutralinojs} -- **Technologies**: Ruby on Rails -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) -- **Website**: [Visit Website](https://git-scm.com/) +- **Technologies**: CSS, HTML, JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs) +- **Website**: [Visit Website](https://neutralino.js.org)
-### 25. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} +### 24. Purr Data {#2022-purr-data} - **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) -- **Website**: [Visit Website](https://nrnb.org/gsoc.html) +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data) +- **Website**: [Visit Website](https://www.purrdata.net/)
-### 26. FRRouting {#2022-frrouting} +### 25. Polypheny {#2022-polypheny} -- **Technologies**: Babel -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting) -- **Website**: [Visit Website](https://frrouting.org/) +- **Technologies**: REST API +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny) +- **Website**: [Visit Website](https://polypheny.org)
-### 27. BRL-CAD {#2022-brl-cad} +### 26. National Resource for Network Biology (NRNB) {#2022-national-resource-for-network-biology-(nrnb)} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad) -- **Website**: [Visit Website](https://opencax.github.io/) +- **Technologies**: HTML +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb) +- **Website**: [Visit Website](https://nrnb.org/gsoc.html)
-### 28. Processing Foundation {#2022-processing-foundation} +### 27. AOSSIE {#2022-aossie} -- **Technologies**: JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation) -- **Website**: [Visit Website](http://processingfoundation.org) +- **Technologies**: CSS, HTML, JavaScript, Jest, React +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/aossie) +- **Website**: [Visit Website](https://www.aossie.org)
-### 29. Matrix.org {#2022-matrixorg} +### 28. Matrix.org {#2022-matrixorg} - **Technologies**: WebRTC - **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/matrixorg) @@ -984,27 +976,35 @@
-### 30. XWiki {#2022-xwiki} +### 29. Django Software Foundation {#2022-django-software-foundation} -- **Technologies**: CSS, HTML, JavaScript -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki) -- **Website**: [Visit Website](https://www.xwiki.org/) +- **Technologies**: Django +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o) +- **Website**: [Visit Website](https://www.djangoproject.com)
-### 31. Joomla! {#2022-joomla!} +### 30. JdeRobot {#2022-jderobot} -- **Technologies**: HTML -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/joomla) -- **Website**: [Visit Website](https://www.joomla.org/) +- **Technologies**: JavaScript +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot) +- **Website**: [Visit Website](http://jderobot.github.io)
-### 32. MetaCall {#2022-metacall} +### 31. SeaQL {#2022-seaql} -- **Technologies**: Node.js -- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/metacall) -- **Website**: [Visit Website](https://metacall.io) +- **Technologies**: GraphQL +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/seaql) +- **Website**: [Visit Website](https://www.sea-ql.org) + +
+ +### 32. Git {#2022-git} + +- **Technologies**: Ruby on Rails +- **GSoC URL**: [View on GSoC](https://summerofcode.withgoogle.com/programs/2022/organizations/git) +- **Website**: [Visit Website](https://git-scm.com/)
@@ -1021,7 +1021,7 @@ ## πŸ”§ Technical Details -- **Last Updated**: 2025-10-27 09:23:58 +- **Last Updated**: 2025-11-03 09:23:15 - **Data Source**: Google Summer of Code Official API - **Web Technologies Detected**: angular, asp.net, babel, bootstrap, css, d3.js, django, express, fastapi, flask, graphql, html, javascript, jest, jquery, laravel, less, mocha, node.js, phoenix, react, react native, rest api, ruby on rails, sass, scss, spring boot, stylus, tailwind, three.js, typescript, vue, webpack, webrtc, websocket - **Update Frequency**: Weekly automatic checks diff --git a/gsoc_2022_web_organizations.json b/gsoc_2022_web_organizations.json index 97ebaca..8bc295b 100644 --- a/gsoc_2022_web_organizations.json +++ b/gsoc_2022_web_organizations.json @@ -1,28 +1,4 @@ [ - { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", - "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" - }, - { - "name": "syslog-ng", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", - "description": "", - "technologies": "JavaScript, REST API", - "website_url": "https://www.syslog-ng.com/", - "slug": "syslog-ng" - }, - { - "name": "JBoss Community", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", - "description": "", - "technologies": "Node.js", - "website_url": "http://www.jboss.org/", - "slug": "jboss-community" - }, { "name": "OpenAstronomy", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/openastronomy", @@ -32,28 +8,36 @@ "slug": "openastronomy" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/freifunk", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "Godot Engine", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", "description": "", - "technologies": "HTML", - "website_url": "https://godotengine.org", - "slug": "godot-engine" + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "description": "", + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { "name": "Jenkins", @@ -71,14 +55,6 @@ "website_url": "https://fz-juelich.de/en", "slug": "forschungszentrum-julich" }, - { - "name": "Weaviate", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", - "description": "", - "technologies": "GraphQL, REST API", - "website_url": "https://weaviate.io", - "slug": "weaviate" - }, { "name": "Open Chemistry", "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/open-chemistry", @@ -88,68 +64,84 @@ "slug": "open-chemistry" }, { - "name": "Polypheny", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", "description": "", - "technologies": "REST API", - "website_url": "https://polypheny.org", - "slug": "polypheny" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", + "name": "Godot Engine", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/godot-engine", "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "technologies": "HTML", + "website_url": "https://godotengine.org", + "slug": "godot-engine" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" }, { - "name": "SeaQL", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", + "name": "JBoss Community", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jboss-community", "description": "", - "technologies": "GraphQL", - "website_url": "https://www.sea-ql.org", - "slug": "seaql" + "technologies": "Node.js", + "website_url": "http://www.jboss.org/", + "slug": "jboss-community" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", + "name": "FRRouting", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "description": "", + "technologies": "Babel", + "website_url": "https://frrouting.org/", + "slug": "frrouting" + }, + { + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/haskellorg", "description": "", "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { - "name": "Casbin", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", + "name": "syslog-ng", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/syslog-ng", "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://casbin.org", - "slug": "casbin" + "technologies": "JavaScript, REST API", + "website_url": "https://www.syslog-ng.com/", + "slug": "syslog-ng" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/plone-foundation", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" + }, + { + "name": "Weaviate", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/weaviate", + "description": "", + "technologies": "GraphQL, REST API", + "website_url": "https://weaviate.io", + "slug": "weaviate" }, { "name": "The ENIGMA Team", @@ -168,60 +160,60 @@ "slug": "electron" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", + "name": "Casbin", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/casbin", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "JavaScript, Node.js", + "website_url": "https://casbin.org", + "slug": "casbin" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/python-software-foundation", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/rocketchat", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/git", + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/neutralinojs", "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/purr-data", "description": "", "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "FRRouting", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/frrouting", + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/polypheny", "description": "", - "technologies": "Babel", - "website_url": "https://frrouting.org/", - "slug": "frrouting" + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/brl-cad", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/processing-foundation", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/aossie", "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { "name": "Matrix.org", @@ -232,27 +224,35 @@ "slug": "matrixorg" }, { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/xwiki", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/django-software-foundation-8o", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/joomla", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/jderobot", "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/metacall", + "name": "SeaQL", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/seaql", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "GraphQL", + "website_url": "https://www.sea-ql.org", + "slug": "seaql" + }, + { + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2022/organizations/git", + "description": "", + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" } ] \ No newline at end of file diff --git a/gsoc_2023_web_organizations.json b/gsoc_2023_web_organizations.json index 8f5bf1f..5e2b8c6 100644 --- a/gsoc_2023_web_organizations.json +++ b/gsoc_2023_web_organizations.json @@ -1,44 +1,4 @@ [ - { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", - "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" - }, - { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", - "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" - }, - { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", - "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" - }, - { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", - "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" - }, - { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", - "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" - }, { "name": "freifunk", "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/freifunk", @@ -48,20 +8,20 @@ "slug": "freifunk" }, { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", + "name": "MZmine and MS-DIAL", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", "description": "", - "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" + "technologies": "HTML", + "website_url": "https://mzmine-ms-dial-gsoc.github.io/", + "slug": "mzmine-and-ms-dial" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { "name": "Django Software Foundation", @@ -72,44 +32,52 @@ "slug": "django-software-foundation-8o" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/the-enigma-team", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", + "name": "XWiki", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://www.xwiki.org/", + "slug": "xwiki" }, { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/brl-cad", "description": "", "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" }, { - "name": "MetaCall", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/aossie", "description": "", - "technologies": "Node.js", - "website_url": "https://metacall.io", - "slug": "metacall" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-chemistry", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/plone-foundation", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { "name": "JdeRobot", @@ -120,28 +88,28 @@ "slug": "jderobot" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/git", "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" }, { - "name": "XWiki", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/xwiki", + "name": "MetaCall", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metacall", "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://www.xwiki.org/", - "slug": "xwiki" + "technologies": "Node.js", + "website_url": "https://metacall.io", + "slug": "metacall" }, { - "name": "MZmine and MS-DIAL", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/mzmine-and-ms-dial", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/python-software-foundation", "description": "", "technologies": "HTML", - "website_url": "https://mzmine-ms-dial-gsoc.github.io/", - "slug": "mzmine-and-ms-dial" + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "caMicroscope", @@ -152,12 +120,28 @@ "slug": "camicroscope" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/national-resource-for-network-biology-nrnb", + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/apertium", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { "name": "OpenAstronomy", @@ -166,5 +150,21 @@ "technologies": "HTML", "website_url": "https://openastronomy.org/", "slug": "openastronomy" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2023/organizations/purr-data", + "description": "", + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" } ] \ No newline at end of file diff --git a/gsoc_2024_web_organizations.json b/gsoc_2024_web_organizations.json index fd75e73..142618c 100644 --- a/gsoc_2024_web_organizations.json +++ b/gsoc_2024_web_organizations.json @@ -1,43 +1,35 @@ [ { - "name": "Jenkins", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", - "description": "", - "technologies": "JavaScript", - "website_url": "https://jenkins.io", - "slug": "jenkins-wp" - }, - { - "name": "Haskell.org", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", + "name": "Polypheny", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny", "description": "", - "technologies": "JavaScript", - "website_url": "https://haskell.org/", - "slug": "haskellorg" + "technologies": "REST API", + "website_url": "https://polypheny.org", + "slug": "polypheny" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", + "name": "Purr Data", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "HTML", + "website_url": "https://www.purrdata.net/", + "slug": "purr-data" }, { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" }, { - "name": "Graphite", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", + "name": "JdeRobot", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", "description": "", - "technologies": "Node.js", - "website_url": "https://graphite.rs", - "slug": "graphite" + "technologies": "JavaScript", + "website_url": "http://jderobot.github.io", + "slug": "jderobot" }, { "name": "Git", @@ -48,52 +40,20 @@ "slug": "git" }, { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", - "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" - }, - { - "name": "stdlib", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", - "description": "", - "technologies": "JavaScript, Node.js", - "website_url": "https://stdlib.io", - "slug": "stdlib" - }, - { - "name": "Neutralinojs", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", - "description": "", - "technologies": "CSS, HTML, JavaScript", - "website_url": "https://neutralino.js.org", - "slug": "neutralinojs" - }, - { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", - "description": "", - "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" - }, - { - "name": "Open Chemistry", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", "description": "", - "technologies": "Babel", - "website_url": "https://openchemistry.org/", - "slug": "open-chemistry" + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" }, { - "name": "Purr Data", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/purr-data", + "name": "Nightwatch.js", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", "description": "", - "technologies": "HTML", - "website_url": "https://www.purrdata.net/", - "slug": "purr-data" + "technologies": "Angular, JavaScript, Node.js, React, Vue.js", + "website_url": "https://nightwatchjs.org", + "slug": "nightwatchjs" }, { "name": "Alaska", @@ -104,60 +64,60 @@ "slug": "alaska" }, { - "name": "Nightwatch.js", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/nightwatchjs", + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", "description": "", - "technologies": "Angular, JavaScript, Node.js, React, Vue.js", - "website_url": "https://nightwatchjs.org", - "slug": "nightwatchjs" + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" }, { - "name": "webpack", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/webpack", + "name": "Apertium", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", "description": "", - "technologies": "JavaScript, Node.js, REST API, Webpack", - "website_url": "https://webpack.js.org", - "slug": "webpack" + "technologies": "Less", + "website_url": "https://apertium.org/", + "slug": "apertium" }, { - "name": "JdeRobot", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jderobot", + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", "description": "", - "technologies": "JavaScript", - "website_url": "http://jderobot.github.io", - "slug": "jderobot" + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/freifunk", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" }, { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/api-dash", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" + "technologies": "HTML", + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/national-resource-for-network-biology-nrnb", + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/django-software-foundation-8o", "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/openastronomy", + "name": "Haskell.org", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/haskellorg", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "JavaScript", + "website_url": "https://haskell.org/", + "slug": "haskellorg" }, { "name": "MetaCall", @@ -168,20 +128,20 @@ "slug": "metacall" }, { - "name": "Plone Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", + "name": "Graphite", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/graphite", "description": "", - "technologies": "React", - "website_url": "https://plone.org", - "slug": "plone-foundation" + "technologies": "Node.js", + "website_url": "https://graphite.rs", + "slug": "graphite" }, { - "name": "The ENIGMA Team", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/python-software-foundation", "description": "", - "technologies": "JavaScript", - "website_url": "https://enigma-dev.org", - "slug": "the-enigma-team" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "AOSSIE", @@ -192,28 +152,20 @@ "slug": "aossie" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/rocketchat", + "name": "Plone Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/plone-foundation", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "React", + "website_url": "https://plone.org", + "slug": "plone-foundation" }, { - "name": "Apertium", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/apertium", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-science-initiative-for-perfusion-imaging", "description": "", "technologies": "Less", - "website_url": "https://apertium.org/", - "slug": "apertium" - }, - { - "name": "Polypheny", - "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/polypheny", - "description": "", - "technologies": "REST API", - "website_url": "https://polypheny.org", - "slug": "polypheny" + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { "name": "Electron", @@ -223,6 +175,54 @@ "website_url": "https://electronjs.org", "slug": "electron" }, + { + "name": "stdlib", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/stdlib", + "description": "", + "technologies": "JavaScript, Node.js", + "website_url": "https://stdlib.io", + "slug": "stdlib" + }, + { + "name": "Neutralinojs", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/neutralinojs", + "description": "", + "technologies": "CSS, HTML, JavaScript", + "website_url": "https://neutralino.js.org", + "slug": "neutralinojs" + }, + { + "name": "The ENIGMA Team", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/the-enigma-team", + "description": "", + "technologies": "JavaScript", + "website_url": "https://enigma-dev.org", + "slug": "the-enigma-team" + }, + { + "name": "Open Chemistry", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/open-chemistry", + "description": "", + "technologies": "Babel", + "website_url": "https://openchemistry.org/", + "slug": "open-chemistry" + }, + { + "name": "Jenkins", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/jenkins-wp", + "description": "", + "technologies": "JavaScript", + "website_url": "https://jenkins.io", + "slug": "jenkins-wp" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, { "name": "caMicroscope", "url": "https://summerofcode.withgoogle.com/programs/2024/organizations/camicroscope", diff --git a/gsoc_2025_web_organizations.json b/gsoc_2025_web_organizations.json index 20130e2..19305fb 100644 --- a/gsoc_2025_web_organizations.json +++ b/gsoc_2025_web_organizations.json @@ -1,19 +1,19 @@ [ { - "name": "OpenAstronomy", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", + "name": "webpack", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", "description": "", - "technologies": "HTML", - "website_url": "https://openastronomy.org/", - "slug": "openastronomy" + "technologies": "JavaScript, Node.js, REST API, Webpack", + "website_url": "https://webpack.js.org", + "slug": "webpack" }, { - "name": "Django Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "name": "Checker Framework", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", "description": "", - "technologies": "Django", - "website_url": "https://www.djangoproject.com", - "slug": "django-software-foundation-8o" + "technologies": "HTML", + "website_url": "https://checkerframework.org/", + "slug": "checker-framework" }, { "name": "Haskell.org", @@ -23,6 +23,54 @@ "website_url": "https://haskell.org/", "slug": "haskellorg" }, + { + "name": "National Resource for Network Biology (NRNB)", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", + "description": "", + "technologies": "HTML", + "website_url": "https://nrnb.org/gsoc.html", + "slug": "national-resource-for-network-biology-nrnb" + }, + { + "name": "Joomla!", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "description": "", + "technologies": "HTML", + "website_url": "https://www.joomla.org/", + "slug": "joomla" + }, + { + "name": "Processing Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", + "description": "", + "technologies": "JavaScript", + "website_url": "http://processingfoundation.org", + "slug": "processing-foundation" + }, + { + "name": "freifunk", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "description": "", + "technologies": "Babel", + "website_url": "https://freifunk.net/en", + "slug": "freifunk" + }, + { + "name": "BRL-CAD", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", + "description": "", + "technologies": "JavaScript", + "website_url": "https://opencax.github.io/", + "slug": "brl-cad" + }, + { + "name": "Electron", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", + "description": "", + "technologies": "CSS, HTML, JavaScript, Node.js", + "website_url": "https://electronjs.org", + "slug": "electron" + }, { "name": "Graphite", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite", @@ -32,20 +80,12 @@ "slug": "graphite" }, { - "name": "AOSSIE", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", - "description": "", - "technologies": "CSS, HTML, JavaScript, Jest, React", - "website_url": "https://www.aossie.org", - "slug": "aossie" - }, - { - "name": "API Dash", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", + "name": "Python Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", "description": "", - "technologies": "GraphQL", - "website_url": "https://apidash.dev", - "slug": "api-dash" + "technologies": "HTML", + "website_url": "https://python-gsoc.org/", + "slug": "python-software-foundation" }, { "name": "JdeRobot", @@ -55,6 +95,14 @@ "website_url": "http://jderobot.github.io", "slug": "jderobot" }, + { + "name": "rocket.chat", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "description": "", + "technologies": "Node.js, TypeScript", + "website_url": "https://github.com/RocketChat", + "slug": "rocketchat" + }, { "name": "Alaska", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/alaska", @@ -64,20 +112,12 @@ "slug": "alaska" }, { - "name": "Checker Framework", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checker-framework", - "description": "", - "technologies": "HTML", - "website_url": "https://checkerframework.org/", - "slug": "checker-framework" - }, - { - "name": "freifunk", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freifunk", + "name": "Open Science Initiative for Perfusion Imaging", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", "description": "", - "technologies": "Babel", - "website_url": "https://freifunk.net/en", - "slug": "freifunk" + "technologies": "Less", + "website_url": "https://osipi.ismrm.org/", + "slug": "open-science-initiative-for-perfusion-imaging" }, { "name": "stdlib", @@ -88,20 +128,28 @@ "slug": "stdlib" }, { - "name": "Joomla!", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla", + "name": "AOSSIE", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie", "description": "", - "technologies": "HTML", - "website_url": "https://www.joomla.org/", - "slug": "joomla" + "technologies": "CSS, HTML, JavaScript, Jest, React", + "website_url": "https://www.aossie.org", + "slug": "aossie" }, { - "name": "BRL-CAD", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad", + "name": "Git", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", "description": "", - "technologies": "JavaScript", - "website_url": "https://opencax.github.io/", - "slug": "brl-cad" + "technologies": "Ruby on Rails", + "website_url": "https://git-scm.com/", + "slug": "git" + }, + { + "name": "Django Software Foundation", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o", + "description": "", + "technologies": "Django", + "website_url": "https://www.djangoproject.com", + "slug": "django-software-foundation-8o" }, { "name": "Plone Foundation", @@ -111,22 +159,6 @@ "website_url": "https://plone.org", "slug": "plone-foundation" }, - { - "name": "Processing Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation", - "description": "", - "technologies": "JavaScript", - "website_url": "http://processingfoundation.org", - "slug": "processing-foundation" - }, - { - "name": "National Resource for Network Biology (NRNB)", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb", - "description": "", - "technologies": "HTML", - "website_url": "https://nrnb.org/gsoc.html", - "slug": "national-resource-for-network-biology-nrnb" - }, { "name": "Jenkins", "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp", @@ -136,51 +168,19 @@ "slug": "jenkins-wp" }, { - "name": "Python Software Foundation", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation", + "name": "OpenAstronomy", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy", "description": "", "technologies": "HTML", - "website_url": "https://python-gsoc.org/", - "slug": "python-software-foundation" - }, - { - "name": "webpack", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack", - "description": "", - "technologies": "JavaScript, Node.js, REST API, Webpack", - "website_url": "https://webpack.js.org", - "slug": "webpack" - }, - { - "name": "Electron", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/electron", - "description": "", - "technologies": "CSS, HTML, JavaScript, Node.js", - "website_url": "https://electronjs.org", - "slug": "electron" - }, - { - "name": "Git", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git", - "description": "", - "technologies": "Ruby on Rails", - "website_url": "https://git-scm.com/", - "slug": "git" - }, - { - "name": "Open Science Initiative for Perfusion Imaging", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging", - "description": "", - "technologies": "Less", - "website_url": "https://osipi.ismrm.org/", - "slug": "open-science-initiative-for-perfusion-imaging" + "website_url": "https://openastronomy.org/", + "slug": "openastronomy" }, { - "name": "rocket.chat", - "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat", + "name": "API Dash", + "url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash", "description": "", - "technologies": "Node.js, TypeScript", - "website_url": "https://github.com/RocketChat", - "slug": "rocketchat" + "technologies": "GraphQL", + "website_url": "https://apidash.dev", + "slug": "api-dash" } ] \ No newline at end of file diff --git a/gsoc_cache.json b/gsoc_cache.json index bb11cd4..0729645 100644 --- a/gsoc_cache.json +++ b/gsoc_cache.json @@ -1,6 +1,6 @@ { "2025_eclipse-foundation": { - "timestamp": "2025-10-27T09:16:39.390383", + "timestamp": "2025-11-03T09:17:52.319155", "data": { "technologies": [], "description": "", @@ -36,7 +36,7 @@ } }, "2025_aboutcode": { - "timestamp": "2025-10-27T09:16:49.069871", + "timestamp": "2025-11-03T09:17:31.062148", "data": { "technologies": [], "description": "", @@ -63,7 +63,7 @@ } }, "2025_rtems-project": { - "timestamp": "2025-10-27T09:17:32.748286", + "timestamp": "2025-11-03T09:17:57.028303", "data": { "technologies": [], "description": "", @@ -72,7 +72,7 @@ } }, "2025_videolan": { - "timestamp": "2025-10-27T09:17:16.224678", + "timestamp": "2025-11-03T09:17:41.957650", "data": { "technologies": [], "description": "", @@ -81,7 +81,7 @@ } }, "2025_international-catrobat-association": { - "timestamp": "2025-10-27T09:16:59.770673", + "timestamp": "2025-11-03T09:17:07.139533", "data": { "technologies": [], "description": "", @@ -108,7 +108,7 @@ } }, "2025_inkscape": { - "timestamp": "2025-10-27T09:16:46.067403", + "timestamp": "2025-11-03T09:17:17.754218", "data": { "technologies": [], "description": "", @@ -135,7 +135,7 @@ } }, "2025_meshery": { - "timestamp": "2025-10-27T09:18:07.059583", + "timestamp": "2025-11-03T09:18:10.241237", "data": { "technologies": [], "description": "", @@ -162,7 +162,7 @@ } }, "2025_libreoffice": { - "timestamp": "2025-10-27T09:16:49.674749", + "timestamp": "2025-11-03T09:17:49.981504", "data": { "technologies": [], "description": "", @@ -171,7 +171,7 @@ } }, "2025_swift": { - "timestamp": "2025-10-27T09:17:48.097165", + "timestamp": "2025-11-03T09:18:03.566062", "data": { "technologies": [], "description": "", @@ -189,7 +189,7 @@ } }, "2025_opencv": { - "timestamp": "2025-10-27T09:17:05.702883", + "timestamp": "2025-11-03T09:17:22.223858", "data": { "technologies": [], "description": "", @@ -198,7 +198,7 @@ } }, "2025_cloudcv": { - "timestamp": "2025-10-27T09:17:21.158330", + "timestamp": "2025-11-03T09:18:07.156158", "data": { "technologies": [], "description": "", @@ -207,7 +207,7 @@ } }, "2025_circuitverseorg": { - "timestamp": "2025-10-27T09:17:29.714909", + "timestamp": "2025-11-03T09:17:38.266296", "data": { "technologies": [], "description": "", @@ -216,7 +216,7 @@ } }, "2025_django-software-foundation-8o": { - "timestamp": "2025-10-20T09:17:11.053130", + "timestamp": "2025-11-03T09:17:44.686789", "data": { "technologies": [], "description": "", @@ -234,7 +234,7 @@ } }, "2025_openstreetmap": { - "timestamp": "2025-10-20T09:17:17.329520", + "timestamp": "2025-11-03T09:16:33.957279", "data": { "technologies": [], "description": "", @@ -243,7 +243,7 @@ } }, "2025_jitsi": { - "timestamp": "2025-10-20T09:17:22.975733", + "timestamp": "2025-11-03T09:16:48.191808", "data": { "technologies": [], "description": "", @@ -252,7 +252,7 @@ } }, "2025_gnu-octave": { - "timestamp": "2025-10-27T09:16:57.493574", + "timestamp": "2025-11-03T09:18:09.627281", "data": { "technologies": [], "description": "", @@ -279,7 +279,7 @@ } }, "2025_blender-foundation": { - "timestamp": "2025-10-27T09:16:53.892083", + "timestamp": "2025-11-03T09:17:29.429057", "data": { "technologies": [], "description": "", @@ -297,7 +297,7 @@ } }, "2025_postgresql": { - "timestamp": "2025-10-20T09:17:17.955492", + "timestamp": "2025-11-03T09:16:38.701189", "data": { "technologies": [], "description": "", @@ -306,7 +306,7 @@ } }, "2025_scala-center": { - "timestamp": "2025-10-20T09:17:14.823583", + "timestamp": "2025-11-03T09:16:32.235626", "data": { "technologies": [], "description": "", @@ -315,7 +315,7 @@ } }, "2025_aossie": { - "timestamp": "2025-10-27T09:17:03.980864", + "timestamp": "2025-11-03T09:17:41.345633", "data": { "technologies": [], "description": "", @@ -351,7 +351,7 @@ } }, "2025_ankidroid": { - "timestamp": "2025-10-27T09:16:47.850350", + "timestamp": "2025-11-03T09:18:01.096100", "data": { "technologies": [], "description": "", @@ -378,7 +378,7 @@ } }, "2025_omegaup": { - "timestamp": "2025-10-27T09:17:22.977844", + "timestamp": "2025-11-03T09:17:54.055669", "data": { "technologies": [], "description": "", @@ -414,7 +414,7 @@ } }, "2025_open-science-labs": { - "timestamp": "2025-10-27T09:17:32.140839", + "timestamp": "2025-11-03T09:17:48.758445", "data": { "technologies": [], "description": "", @@ -423,7 +423,7 @@ } }, "2025_stdlib": { - "timestamp": "2025-10-27T09:17:30.321356", + "timestamp": "2025-11-03T09:17:40.118248", "data": { "technologies": [], "description": "", @@ -486,7 +486,7 @@ } }, "2025_st-jude-childrens-research-hospital-ai": { - "timestamp": "2025-10-27T09:17:00.379218", + "timestamp": "2025-11-03T09:17:36.649590", "data": { "technologies": [], "description": "", @@ -513,7 +513,7 @@ } }, "2025_openelis-global": { - "timestamp": "2025-10-27T09:17:11.848587", + "timestamp": "2025-11-03T09:18:01.708362", "data": { "technologies": [], "description": "", @@ -531,7 +531,7 @@ } }, "2025_owasp-foundation": { - "timestamp": "2025-10-20T09:17:21.719044", + "timestamp": "2025-11-03T09:16:58.087878", "data": { "technologies": [], "description": "", @@ -585,7 +585,7 @@ } }, "2025_kotlin-foundation": { - "timestamp": "2025-10-27T09:17:18.714447", + "timestamp": "2025-11-03T09:17:19.483487", "data": { "technologies": [], "description": "", @@ -603,7 +603,7 @@ } }, "2025_zendalona": { - "timestamp": "2025-10-27T09:16:44.959367", + "timestamp": "2025-11-03T09:17:40.730684", "data": { "technologies": [], "description": "", @@ -612,7 +612,7 @@ } }, "2025_sagemath": { - "timestamp": "2025-10-27T09:16:58.600917", + "timestamp": "2025-11-03T09:18:04.680490", "data": { "technologies": [], "description": "", @@ -639,7 +639,7 @@ } }, "2025_google-deepmind-sq": { - "timestamp": "2025-10-27T09:16:35.937397", + "timestamp": "2025-11-03T09:18:05.920437", "data": { "technologies": [], "description": "", @@ -657,7 +657,7 @@ } }, "2025_jenkins-wp": { - "timestamp": "2025-10-27T09:17:46.881833", + "timestamp": "2025-11-03T09:17:56.400160", "data": { "technologies": [], "description": "", @@ -684,7 +684,7 @@ } }, "2025_api-dash": { - "timestamp": "2025-10-27T09:17:07.584677", + "timestamp": "2025-11-03T09:18:07.769275", "data": { "technologies": [], "description": "", @@ -693,7 +693,7 @@ } }, "2025_openastronomy": { - "timestamp": "2025-10-20T09:17:00.368660", + "timestamp": "2025-11-03T09:18:06.542272", "data": { "technologies": [], "description": "", @@ -702,7 +702,7 @@ } }, "2025_cgal-project": { - "timestamp": "2025-10-27T09:16:34.110044", + "timestamp": "2025-11-03T09:17:11.381772", "data": { "technologies": [], "description": "", @@ -711,7 +711,7 @@ } }, "2025_graphite": { - "timestamp": "2025-10-27T09:16:55.107556", + "timestamp": "2025-11-03T09:17:14.007437", "data": { "technologies": [], "description": "", @@ -738,7 +738,7 @@ } }, "2025_dora-rs-tb": { - "timestamp": "2025-10-27T09:16:39.999060", + "timestamp": "2025-11-03T09:16:52.950783", "data": { "technologies": [], "description": "", @@ -756,7 +756,7 @@ } }, "2025_pecan-project": { - "timestamp": "2025-10-27T09:17:17.498105", + "timestamp": "2025-11-03T09:17:27.191667", "data": { "technologies": [], "description": "", @@ -765,7 +765,7 @@ } }, "2025_humanai": { - "timestamp": "2025-10-27T09:16:34.720054", + "timestamp": "2025-11-03T09:18:05.309604", "data": { "technologies": [], "description": "", @@ -774,7 +774,7 @@ } }, "2025_gitlab": { - "timestamp": "2025-10-27T09:16:50.288546", + "timestamp": "2025-11-03T09:17:45.298990", "data": { "technologies": [], "description": "", @@ -801,7 +801,7 @@ } }, "2025_uramaki-lab": { - "timestamp": "2025-10-27T09:17:28.500102", + "timestamp": "2025-11-03T09:17:50.593548", "data": { "technologies": [], "description": "", @@ -846,7 +846,7 @@ } }, "2025_the-honeynet-project": { - "timestamp": "2025-10-27T09:17:34.031893", + "timestamp": "2025-11-03T09:17:59.983041", "data": { "technologies": [], "description": "", @@ -882,7 +882,7 @@ } }, "2025_society-for-arts-and-technology-sat": { - "timestamp": "2025-10-27T09:17:36.468898", + "timestamp": "2025-11-03T09:17:55.289854", "data": { "technologies": [], "description": "", @@ -900,7 +900,7 @@ } }, "2025_qc-devs": { - "timestamp": "2025-10-27T09:17:00.983648", + "timestamp": "2025-11-03T09:18:02.323994", "data": { "technologies": [], "description": "", @@ -927,7 +927,7 @@ } }, "2025_the-netbsd-foundation": { - "timestamp": "2025-10-27T09:16:38.723041", + "timestamp": "2025-11-03T09:17:39.504029", "data": { "technologies": [], "description": "", @@ -945,7 +945,7 @@ } }, "2025_numfocus": { - "timestamp": "2025-10-27T09:17:14.346240", + "timestamp": "2025-11-03T09:17:27.806431", "data": { "technologies": [], "description": "", @@ -963,7 +963,7 @@ } }, "2025_the-p4-language-consortium": { - "timestamp": "2025-10-20T09:17:16.075258", + "timestamp": "2025-11-03T09:16:41.322254", "data": { "technologies": [], "description": "", @@ -999,7 +999,7 @@ } }, "2025_kro-kube-resource-orchestrator": { - "timestamp": "2025-10-27T09:17:09.412922", + "timestamp": "2025-11-03T09:17:24.957375", "data": { "technologies": [], "description": "", @@ -1017,7 +1017,7 @@ } }, "2025_jderobot": { - "timestamp": "2025-10-27T09:17:10.629621", + "timestamp": "2025-11-03T09:17:18.870600", "data": { "technologies": [], "description": "", @@ -1035,7 +1035,7 @@ } }, "2025_checkstyle": { - "timestamp": "2025-10-27T09:16:54.499019", + "timestamp": "2025-11-03T09:17:16.134053", "data": { "technologies": [], "description": "", @@ -1053,7 +1053,7 @@ } }, "2025_chromium-lj": { - "timestamp": "2025-10-27T09:17:21.766515", + "timestamp": "2025-11-03T09:17:43.573034", "data": { "technologies": [], "description": "", @@ -1071,7 +1071,7 @@ } }, "2025_wellcome-sanger-institute": { - "timestamp": "2025-10-27T09:17:02.766567", + "timestamp": "2025-11-03T09:17:09.264339", "data": { "technologies": [], "description": "", @@ -1080,7 +1080,7 @@ } }, "2025_gnome-foundation": { - "timestamp": "2025-10-27T09:16:35.328330", + "timestamp": "2025-11-03T09:16:36.078049", "data": { "technologies": [], "description": "", @@ -1089,7 +1089,7 @@ } }, "2025_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-27T09:16:50.958118", + "timestamp": "2025-11-03T09:17:54.664427", "data": { "technologies": [], "description": "", @@ -1098,7 +1098,7 @@ } }, "2025_invesalius": { - "timestamp": "2025-10-20T09:17:19.831014", + "timestamp": "2025-11-03T09:16:45.060688", "data": { "technologies": [], "description": "", @@ -1125,7 +1125,7 @@ } }, "2025_r-project-for-statistical-computing": { - "timestamp": "2025-10-20T09:16:42.779232", + "timestamp": "2025-11-03T09:17:51.706904", "data": { "technologies": [], "description": "", @@ -1134,7 +1134,7 @@ } }, "2025_gnu-image-manipulation-program": { - "timestamp": "2025-10-27T09:16:43.231126", + "timestamp": "2025-11-03T09:18:02.935965", "data": { "technologies": [], "description": "", @@ -1179,7 +1179,7 @@ } }, "2025_prometheus-operator": { - "timestamp": "2025-10-27T09:16:32.892804", + "timestamp": "2025-11-03T09:17:58.253836", "data": { "technologies": [], "description": "", @@ -1188,7 +1188,7 @@ } }, "2025_stichting-su2": { - "timestamp": "2025-10-20T09:16:51.591802", + "timestamp": "2025-11-03T09:17:06.525357", "data": { "technologies": [], "description": "", @@ -1197,7 +1197,7 @@ } }, "2025_unikraft": { - "timestamp": "2025-10-27T09:17:47.489860", + "timestamp": "2025-11-03T09:18:08.997703", "data": { "technologies": [], "description": "", @@ -1224,7 +1224,7 @@ } }, "2025_openmrs": { - "timestamp": "2025-10-20T09:17:09.157633", + "timestamp": "2025-11-03T09:17:03.403435", "data": { "technologies": [], "description": "", @@ -1269,7 +1269,7 @@ } }, "2025_mariadb": { - "timestamp": "2025-10-27T09:16:48.461672", + "timestamp": "2025-11-03T09:17:00.774587", "data": { "technologies": [], "description": "", @@ -1278,7 +1278,7 @@ } }, "2025_stear-group": { - "timestamp": "2025-10-27T09:16:37.107275", + "timestamp": "2025-11-03T09:17:32.177878", "data": { "technologies": [], "description": "", @@ -1305,7 +1305,7 @@ } }, "2025_beagleboardorg": { - "timestamp": "2025-10-27T09:17:13.069774", + "timestamp": "2025-11-03T09:17:21.605835", "data": { "technologies": [], "description": "", @@ -1314,7 +1314,7 @@ } }, "2025_project-mesa": { - "timestamp": "2025-10-20T09:16:53.478253", + "timestamp": "2025-11-03T09:16:33.347193", "data": { "technologies": [], "description": "", @@ -1332,7 +1332,7 @@ } }, "2025_plone-foundation": { - "timestamp": "2025-10-27T09:17:42.606308", + "timestamp": "2025-11-03T09:17:49.368207", "data": { "technologies": [], "description": "", @@ -1368,7 +1368,7 @@ } }, "2025_dart": { - "timestamp": "2025-10-27T09:17:05.092085", + "timestamp": "2025-11-03T09:17:48.144261", "data": { "technologies": [], "description": "", @@ -1377,7 +1377,7 @@ } }, "2025_the-rust-foundation": { - "timestamp": "2025-10-27T09:16:33.500519", + "timestamp": "2025-11-03T09:16:51.820499", "data": { "technologies": [], "description": "", @@ -1386,7 +1386,7 @@ } }, "2025_qemu": { - "timestamp": "2025-10-27T09:17:26.012534", + "timestamp": "2025-11-03T09:17:57.641464", "data": { "technologies": [], "description": "", @@ -1395,7 +1395,7 @@ } }, "2025_mbdyn": { - "timestamp": "2025-10-20T09:17:05.382671", + "timestamp": "2025-11-03T09:17:22.835845", "data": { "technologies": [], "description": "", @@ -1422,7 +1422,7 @@ } }, "2025_incf": { - "timestamp": "2025-10-27T09:16:51.565237", + "timestamp": "2025-11-03T09:17:38.881099", "data": { "technologies": [], "description": "", @@ -1431,7 +1431,7 @@ } }, "2025_cern-hsf": { - "timestamp": "2025-10-27T09:16:31.666294", + "timestamp": "2025-11-03T09:17:32.787665", "data": { "technologies": [], "description": "", @@ -1458,7 +1458,7 @@ } }, "2025_alaska": { - "timestamp": "2025-10-27T09:17:14.957501", + "timestamp": "2025-11-03T09:17:25.569528", "data": { "technologies": [], "description": "", @@ -1467,7 +1467,7 @@ } }, "2025_the-ns-3-network-simulator-project": { - "timestamp": "2025-10-27T09:18:06.390367", + "timestamp": "2025-11-03T09:18:08.382781", "data": { "technologies": [], "description": "", @@ -1530,7 +1530,7 @@ } }, "2025_synfig": { - "timestamp": "2025-10-27T09:16:56.220296", + "timestamp": "2025-11-03T09:17:53.433563", "data": { "technologies": [], "description": "", @@ -1548,7 +1548,7 @@ } }, "2025_rizin": { - "timestamp": "2025-10-27T09:17:12.458690", + "timestamp": "2025-11-03T09:17:35.535556", "data": { "technologies": [], "description": "", @@ -1602,7 +1602,7 @@ } }, "2025_zulip": { - "timestamp": "2025-10-27T09:17:19.320452", + "timestamp": "2025-11-03T09:17:47.531598", "data": { "technologies": [], "description": "", @@ -1611,7 +1611,7 @@ } }, "2025_gnu-radio": { - "timestamp": "2025-10-27T09:16:32.278273", + "timestamp": "2025-11-03T09:17:58.866738", "data": { "technologies": [], "description": "", @@ -1620,7 +1620,7 @@ } }, "2025_organic-maps": { - "timestamp": "2025-10-20T09:17:10.411944", + "timestamp": "2025-11-03T09:17:34.415972", "data": { "technologies": [], "description": "", @@ -1629,7 +1629,7 @@ } }, "2025_grame": { - "timestamp": "2025-10-20T09:17:07.284186", + "timestamp": "2025-11-03T09:16:41.934324", "data": { "technologies": [], "description": "", @@ -1656,7 +1656,7 @@ } }, "2025_data-for-the-common-good": { - "timestamp": "2025-10-27T09:17:11.239081", + "timestamp": "2025-11-03T09:17:46.419947", "data": { "technologies": [], "description": "", @@ -1665,7 +1665,7 @@ } }, "2024_stdlib": { - "timestamp": "2025-10-27T09:18:55.475452", + "timestamp": "2025-11-03T09:19:39.868843", "data": { "technologies": [], "description": "", @@ -1701,7 +1701,7 @@ } }, "2024_scummvm": { - "timestamp": "2025-10-27T09:18:36.115983", + "timestamp": "2025-11-03T09:19:07.168208", "data": { "technologies": [], "description": "", @@ -1728,7 +1728,7 @@ } }, "2024_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-20T09:18:44.836104", + "timestamp": "2025-11-03T09:18:18.258436", "data": { "technologies": [], "description": "", @@ -1737,7 +1737,7 @@ } }, "2024_humanai": { - "timestamp": "2025-10-27T09:18:56.082278", + "timestamp": "2025-11-03T09:19:45.678872", "data": { "technologies": [], "description": "", @@ -1773,7 +1773,7 @@ } }, "2024_synfig": { - "timestamp": "2025-10-27T09:19:39.566141", + "timestamp": "2025-11-03T09:19:41.097637", "data": { "technologies": [], "description": "", @@ -1827,7 +1827,7 @@ } }, "2024_organic-maps": { - "timestamp": "2025-10-27T09:18:46.554110", + "timestamp": "2025-11-03T09:18:52.692830", "data": { "technologies": [], "description": "", @@ -1845,7 +1845,7 @@ } }, "2024_graphite": { - "timestamp": "2025-10-27T09:18:43.728719", + "timestamp": "2025-11-03T09:19:08.283388", "data": { "technologies": [], "description": "", @@ -1872,7 +1872,7 @@ } }, "2024_internet-archive": { - "timestamp": "2025-10-20T09:19:08.083752", + "timestamp": "2025-11-03T09:18:32.274890", "data": { "technologies": [], "description": "", @@ -1890,7 +1890,7 @@ } }, "2024_mlpack": { - "timestamp": "2025-10-20T09:18:59.283926", + "timestamp": "2025-11-03T09:18:36.231921", "data": { "technologies": [], "description": "", @@ -1899,7 +1899,7 @@ } }, "2024_haskellorg": { - "timestamp": "2025-10-20T09:18:51.122232", + "timestamp": "2025-11-03T09:18:55.927139", "data": { "technologies": [], "description": "", @@ -1926,7 +1926,7 @@ } }, "2024_robolectric": { - "timestamp": "2025-10-20T09:19:02.430413", + "timestamp": "2025-11-03T09:19:28.486174", "data": { "technologies": [], "description": "", @@ -1953,7 +1953,7 @@ } }, "2024_mbdyn": { - "timestamp": "2025-10-20T09:19:07.455773", + "timestamp": "2025-11-03T09:18:19.378615", "data": { "technologies": [], "description": "", @@ -1962,7 +1962,7 @@ } }, "2024_rizin": { - "timestamp": "2025-10-27T09:18:39.005615", + "timestamp": "2025-11-03T09:19:11.847036", "data": { "technologies": [], "description": "", @@ -1971,7 +1971,7 @@ } }, "2024_gnss-sdr": { - "timestamp": "2025-10-27T09:18:52.433546", + "timestamp": "2025-11-03T09:19:31.326558", "data": { "technologies": [], "description": "", @@ -1980,7 +1980,7 @@ } }, "2024_the-palisadoes-foundation": { - "timestamp": "2025-10-20T09:19:11.233691", + "timestamp": "2025-11-03T09:18:38.573996", "data": { "technologies": [], "description": "", @@ -2007,7 +2007,7 @@ } }, "2024_numfocus": { - "timestamp": "2025-10-27T09:19:51.866775", + "timestamp": "2025-11-03T09:19:54.647984", "data": { "technologies": [], "description": "", @@ -2025,7 +2025,7 @@ } }, "2024_circuitverseorg": { - "timestamp": "2025-10-20T09:19:13.111588", + "timestamp": "2025-11-03T09:18:36.843345", "data": { "technologies": [], "description": "", @@ -2061,7 +2061,7 @@ } }, "2024_sugar-labs": { - "timestamp": "2025-10-27T09:19:16.270108", + "timestamp": "2025-11-03T09:19:29.600154", "data": { "technologies": [], "description": "", @@ -2079,7 +2079,7 @@ } }, "2024_gnu-compiler-collection-gcc": { - "timestamp": "2025-10-20T09:19:18.825792", + "timestamp": "2025-11-03T09:19:21.071074", "data": { "technologies": [], "description": "", @@ -2097,7 +2097,7 @@ } }, "2024_purr-data": { - "timestamp": "2025-10-20T09:19:22.582257", + "timestamp": "2025-11-03T09:18:14.627184", "data": { "technologies": [], "description": "", @@ -2124,7 +2124,7 @@ } }, "2024_incf": { - "timestamp": "2025-10-20T09:19:08.713688", + "timestamp": "2025-11-03T09:19:38.636736", "data": { "technologies": [], "description": "", @@ -2133,7 +2133,7 @@ } }, "2024_machine-learning-for-science-ml4sci": { - "timestamp": "2025-10-27T09:19:05.177762", + "timestamp": "2025-11-03T09:19:49.750841", "data": { "technologies": [], "description": "", @@ -2142,7 +2142,7 @@ } }, "2024_tardis-rt-collaboration": { - "timestamp": "2025-10-27T09:18:58.511291", + "timestamp": "2025-11-03T09:19:21.683234", "data": { "technologies": [], "description": "", @@ -2151,7 +2151,7 @@ } }, "2024_the-p4-language-consortium": { - "timestamp": "2025-10-27T09:19:02.852448", + "timestamp": "2025-11-03T09:19:14.198650", "data": { "technologies": [], "description": "", @@ -2169,7 +2169,7 @@ } }, "2024_freetype": { - "timestamp": "2025-10-20T09:19:12.489679", + "timestamp": "2025-11-03T09:19:25.035728", "data": { "technologies": [], "description": "", @@ -2196,7 +2196,7 @@ } }, "2024_django-software-foundation-8o": { - "timestamp": "2025-10-27T09:18:36.722538", + "timestamp": "2025-11-03T09:18:51.076944", "data": { "technologies": [], "description": "", @@ -2214,7 +2214,7 @@ } }, "2024_the-jpf-team-hg": { - "timestamp": "2025-10-20T09:19:13.737520", + "timestamp": "2025-11-03T09:19:47.904843", "data": { "technologies": [], "description": "", @@ -2223,7 +2223,7 @@ } }, "2024_gnu-octave": { - "timestamp": "2025-10-27T09:19:00.125604", + "timestamp": "2025-11-03T09:19:50.975155", "data": { "technologies": [], "description": "", @@ -2250,7 +2250,7 @@ } }, "2024_deepchem": { - "timestamp": "2025-10-27T09:18:29.233540", + "timestamp": "2025-11-03T09:19:56.371434", "data": { "technologies": [], "description": "", @@ -2277,7 +2277,7 @@ } }, "2024_python-software-foundation": { - "timestamp": "2025-10-27T09:19:08.172160", + "timestamp": "2025-11-03T09:19:08.894395", "data": { "technologies": [], "description": "", @@ -2304,7 +2304,7 @@ } }, "2024_ardupilot": { - "timestamp": "2025-10-20T09:19:03.689728", + "timestamp": "2025-11-03T09:19:19.454104", "data": { "technologies": [], "description": "", @@ -2313,7 +2313,7 @@ } }, "2024_neutralinojs": { - "timestamp": "2025-10-27T09:19:05.785778", + "timestamp": "2025-11-03T09:19:43.948798", "data": { "technologies": [], "description": "", @@ -2340,7 +2340,7 @@ } }, "2024_openrefine-j0": { - "timestamp": "2025-10-27T09:19:25.947900", + "timestamp": "2025-11-03T09:19:34.573390", "data": { "technologies": [], "description": "", @@ -2358,7 +2358,7 @@ } }, "2024_global-alliance-for-genomics-and-health": { - "timestamp": "2025-10-27T09:19:40.838238", + "timestamp": "2025-11-03T09:19:42.833739", "data": { "technologies": [], "description": "", @@ -2394,7 +2394,7 @@ } }, "2024_open-technologies-alliance-gfoss": { - "timestamp": "2025-10-20T09:18:49.863356", + "timestamp": "2025-11-03T09:18:49.957561", "data": { "technologies": [], "description": "", @@ -2430,7 +2430,7 @@ } }, "2024_data-for-the-common-good": { - "timestamp": "2025-10-27T09:19:25.343135", + "timestamp": "2025-11-03T09:19:45.067654", "data": { "technologies": [], "description": "", @@ -2466,7 +2466,7 @@ } }, "2024_kolibrios-project-team": { - "timestamp": "2025-10-20T09:19:20.703882", + "timestamp": "2025-11-03T09:18:58.556601", "data": { "technologies": [], "description": "", @@ -2475,7 +2475,7 @@ } }, "2024_keploy": { - "timestamp": "2025-10-27T09:18:51.324569", + "timestamp": "2025-11-03T09:19:40.477942", "data": { "technologies": [], "description": "", @@ -2493,7 +2493,7 @@ } }, "2024_zendalona": { - "timestamp": "2025-10-27T09:18:50.106030", + "timestamp": "2025-11-03T09:19:52.808873", "data": { "technologies": [], "description": "", @@ -2511,7 +2511,7 @@ } }, "2024_learning-equality": { - "timestamp": "2025-10-27T09:18:44.337216", + "timestamp": "2025-11-03T09:19:42.219316", "data": { "technologies": [], "description": "", @@ -2538,7 +2538,7 @@ } }, "2024_inkscape": { - "timestamp": "2025-10-20T09:19:18.197618", + "timestamp": "2025-11-03T09:18:27.641244", "data": { "technologies": [], "description": "", @@ -2556,7 +2556,7 @@ } }, "2024_kde-community": { - "timestamp": "2025-10-20T09:19:04.324176", + "timestamp": "2025-11-03T09:18:41.700326", "data": { "technologies": [], "description": "", @@ -2565,7 +2565,7 @@ } }, "2024_json-schema": { - "timestamp": "2025-10-27T09:18:44.944961", + "timestamp": "2025-11-03T09:18:47.836795", "data": { "technologies": [], "description": "", @@ -2583,7 +2583,7 @@ } }, "2024_project-mesa": { - "timestamp": "2025-10-20T09:19:10.606255", + "timestamp": "2025-11-03T09:19:05.427819", "data": { "technologies": [], "description": "", @@ -2619,7 +2619,7 @@ } }, "2024_openelis-global": { - "timestamp": "2025-10-20T09:19:04.949493", + "timestamp": "2025-11-03T09:18:24.015098", "data": { "technologies": [], "description": "", @@ -2637,7 +2637,7 @@ } }, "2024_stichting-su2": { - "timestamp": "2025-10-27T09:18:33.837019", + "timestamp": "2025-11-03T09:18:59.175116", "data": { "technologies": [], "description": "", @@ -2646,7 +2646,7 @@ } }, "2024_invesalius": { - "timestamp": "2025-10-27T09:18:28.623493", + "timestamp": "2025-11-03T09:18:34.000730", "data": { "technologies": [], "description": "", @@ -2655,7 +2655,7 @@ } }, "2024_moveit": { - "timestamp": "2025-10-27T09:19:07.505188", + "timestamp": "2025-11-03T09:19:35.794531", "data": { "technologies": [], "description": "", @@ -2664,7 +2664,7 @@ } }, "2024_flare": { - "timestamp": "2025-10-20T09:18:37.316535", + "timestamp": "2025-11-03T09:19:55.256149", "data": { "technologies": [], "description": "", @@ -2682,7 +2682,7 @@ } }, "2024_drupal-association": { - "timestamp": "2025-10-27T09:18:38.336767", + "timestamp": "2025-11-03T09:19:49.139930", "data": { "technologies": [], "description": "", @@ -2772,7 +2772,7 @@ } }, "2024_eunomia-bpf": { - "timestamp": "2025-10-27T09:19:30.804686", + "timestamp": "2025-11-03T09:19:48.519880", "data": { "technologies": [], "description": "", @@ -2808,7 +2808,7 @@ } }, "2024_dbpedia": { - "timestamp": "2025-10-27T09:19:16.905304", + "timestamp": "2025-11-03T09:19:37.020171", "data": { "technologies": [], "description": "", @@ -2817,7 +2817,7 @@ } }, "2024_criu": { - "timestamp": "2025-10-27T09:18:48.275279", + "timestamp": "2025-11-03T09:19:06.555081", "data": { "technologies": [], "description": "", @@ -2826,7 +2826,7 @@ } }, "2024_brl-cad": { - "timestamp": "2025-10-27T09:19:41.444111", + "timestamp": "2025-11-03T09:19:54.035312", "data": { "technologies": [], "description": "", @@ -2835,7 +2835,7 @@ } }, "2024_ceph": { - "timestamp": "2025-10-27T09:18:32.121329", + "timestamp": "2025-11-03T09:19:52.200592", "data": { "technologies": [], "description": "", @@ -2844,7 +2844,7 @@ } }, "2024_openvino-toolkit": { - "timestamp": "2025-10-27T09:19:03.460607", + "timestamp": "2025-11-03T09:19:18.327671", "data": { "technologies": [], "description": "", @@ -2862,7 +2862,7 @@ } }, "2024_openmrs": { - "timestamp": "2025-10-27T09:19:21.666142", + "timestamp": "2025-11-03T09:19:30.214419", "data": { "technologies": [], "description": "", @@ -2898,7 +2898,7 @@ } }, "2024_zulip": { - "timestamp": "2025-10-20T09:19:14.366762", + "timestamp": "2025-11-03T09:19:13.079602", "data": { "technologies": [], "description": "", @@ -2907,7 +2907,7 @@ } }, "2024_freecad": { - "timestamp": "2025-10-20T09:18:59.912573", + "timestamp": "2025-11-03T09:18:37.959060", "data": { "technologies": [], "description": "", @@ -2925,7 +2925,7 @@ } }, "2024_open-chemistry": { - "timestamp": "2025-10-20T09:19:21.332191", + "timestamp": "2025-11-03T09:19:47.291573", "data": { "technologies": [], "description": "", @@ -2934,7 +2934,7 @@ } }, "2024_chips-alliance": { - "timestamp": "2025-10-27T09:19:22.274482", + "timestamp": "2025-11-03T09:19:26.762759", "data": { "technologies": [], "description": "", @@ -2961,7 +2961,7 @@ } }, "2024_the-mifos-initiative": { - "timestamp": "2025-10-27T09:18:57.294868", + "timestamp": "2025-11-03T09:19:09.508223", "data": { "technologies": [], "description": "", @@ -2988,7 +2988,7 @@ } }, "2024_ffmpeg": { - "timestamp": "2025-10-20T09:19:19.449328", + "timestamp": "2025-11-03T09:19:11.237654", "data": { "technologies": [], "description": "", @@ -2997,7 +2997,7 @@ } }, "2024_debian": { - "timestamp": "2025-10-27T09:18:31.012654", + "timestamp": "2025-11-03T09:19:57.491303", "data": { "technologies": [], "description": "", @@ -3024,7 +3024,7 @@ } }, "2024_accord-project": { - "timestamp": "2025-10-27T09:18:53.041549", + "timestamp": "2025-11-03T09:19:10.120398", "data": { "technologies": [], "description": "", @@ -3033,7 +3033,7 @@ } }, "2024_chromium-lj": { - "timestamp": "2025-10-20T09:19:24.463535", + "timestamp": "2025-11-03T09:18:33.389136", "data": { "technologies": [], "description": "", @@ -3051,7 +3051,7 @@ } }, "2024_ankidroid": { - "timestamp": "2025-10-20T09:19:14.989644", + "timestamp": "2025-11-03T09:19:39.258061", "data": { "technologies": [], "description": "", @@ -3087,7 +3087,7 @@ } }, "2024_cgal-project": { - "timestamp": "2025-10-20T09:19:06.828862", + "timestamp": "2025-11-03T09:18:35.616986", "data": { "technologies": [], "description": "", @@ -3132,7 +3132,7 @@ } }, "2024_jenkins-wp": { - "timestamp": "2025-10-27T09:18:24.284223", + "timestamp": "2025-11-03T09:19:50.362690", "data": { "technologies": [], "description": "", @@ -3168,7 +3168,7 @@ } }, "2024_postgresql": { - "timestamp": "2025-10-27T09:19:12.825475", + "timestamp": "2025-11-03T09:19:26.149611", "data": { "technologies": [], "description": "", @@ -3186,7 +3186,7 @@ } }, "2024_kubevirt": { - "timestamp": "2025-10-27T09:18:40.619877", + "timestamp": "2025-11-03T09:19:23.918776", "data": { "technologies": [], "description": "", @@ -3222,7 +3222,7 @@ } }, "2024_open-science-initiative-for-perfusion-imaging": { - "timestamp": "2025-10-20T09:18:41.704215", + "timestamp": "2025-11-03T09:19:33.964454", "data": { "technologies": [], "description": "", @@ -3249,7 +3249,7 @@ } }, "2024_waycrate": { - "timestamp": "2025-10-20T09:18:51.749521", + "timestamp": "2025-11-03T09:19:36.410177", "data": { "technologies": [], "description": "", @@ -3276,7 +3276,7 @@ } }, "2024_openstreetmap": { - "timestamp": "2025-10-20T09:19:20.076622", + "timestamp": "2025-11-03T09:19:27.875505", "data": { "technologies": [], "description": "", @@ -3303,7 +3303,7 @@ } }, "2024_stear-group": { - "timestamp": "2025-10-27T09:18:32.727707", + "timestamp": "2025-11-03T09:19:35.182646", "data": { "technologies": [], "description": "", @@ -3321,7 +3321,7 @@ } }, "2024_kotlin-foundation": { - "timestamp": "2025-10-27T09:19:09.390124", + "timestamp": "2025-11-03T09:19:22.299983", "data": { "technologies": [], "description": "", @@ -3348,7 +3348,7 @@ } }, "2024_r-project-for-statistical-computing": { - "timestamp": "2025-10-27T09:18:49.492869", + "timestamp": "2025-11-03T09:19:12.459281", "data": { "technologies": [], "description": "", @@ -3366,7 +3366,7 @@ } }, "2024_free-and-open-source-silicon-foundation": { - "timestamp": "2025-10-27T09:19:33.424637", + "timestamp": "2025-11-03T09:19:51.588681", "data": { "technologies": [], "description": "", @@ -3375,7 +3375,7 @@ } }, "2024_kiwix": { - "timestamp": "2025-10-27T09:18:41.288767", + "timestamp": "2025-11-03T09:19:53.421596", "data": { "technologies": [], "description": "", @@ -3384,7 +3384,7 @@ } }, "2024_gnu-radio": { - "timestamp": "2025-10-27T09:18:48.883677", + "timestamp": "2025-11-03T09:18:53.806661", "data": { "technologies": [], "description": "", @@ -3393,7 +3393,7 @@ } }, "2024_mdanalysis": { - "timestamp": "2025-10-27T09:18:30.344460", + "timestamp": "2025-11-03T09:19:04.815053", "data": { "technologies": [], "description": "", @@ -3429,7 +3429,7 @@ } }, "2023_unikraft": { - "timestamp": "2025-10-27T09:20:24.204183", + "timestamp": "2025-11-03T09:20:26.698770", "data": { "technologies": [], "description": "", @@ -3438,7 +3438,7 @@ } }, "2023_mdanalysis": { - "timestamp": "2025-10-27T09:20:23.595308", + "timestamp": "2025-11-03T09:20:51.502057", "data": { "technologies": [], "description": "", @@ -3510,7 +3510,7 @@ } }, "2023_libcamera": { - "timestamp": "2025-10-27T09:20:44.575280", + "timestamp": "2025-11-03T09:21:21.352991", "data": { "technologies": [], "description": "", @@ -3519,7 +3519,7 @@ } }, "2023_freecad": { - "timestamp": "2025-10-20T09:20:57.699659", + "timestamp": "2025-11-03T09:20:44.181819", "data": { "technologies": [], "description": "", @@ -3546,7 +3546,7 @@ } }, "2023_chips-alliance": { - "timestamp": "2025-10-20T09:21:08.410818", + "timestamp": "2025-11-03T09:20:27.329395", "data": { "technologies": [], "description": "", @@ -3555,7 +3555,7 @@ } }, "2023_software-and-computational-systems-lab-at-lmu-munich": { - "timestamp": "2025-10-20T09:21:03.353158", + "timestamp": "2025-11-03T09:20:33.968996", "data": { "technologies": [], "description": "", @@ -3609,7 +3609,7 @@ } }, "2023_internet-archive": { - "timestamp": "2025-10-20T09:20:50.808471", + "timestamp": "2025-11-03T09:20:15.071776", "data": { "technologies": [], "description": "", @@ -3618,7 +3618,7 @@ } }, "2023_rocketchat": { - "timestamp": "2025-10-27T09:20:59.575962", + "timestamp": "2025-11-03T09:21:05.568774", "data": { "technologies": [], "description": "", @@ -3627,7 +3627,7 @@ } }, "2023_purr-data": { - "timestamp": "2025-10-27T09:21:06.969600", + "timestamp": "2025-11-03T09:21:18.622036", "data": { "technologies": [], "description": "", @@ -3654,7 +3654,7 @@ } }, "2023_gnutls": { - "timestamp": "2025-10-27T09:20:42.007565", + "timestamp": "2025-11-03T09:20:55.864198", "data": { "technologies": [], "description": "", @@ -3672,7 +3672,7 @@ } }, "2023_the-julia-language": { - "timestamp": "2025-10-27T09:20:26.026920", + "timestamp": "2025-11-03T09:20:49.762379", "data": { "technologies": [], "description": "", @@ -3681,7 +3681,7 @@ } }, "2023_gnu-project": { - "timestamp": "2025-10-27T09:20:20.166400", + "timestamp": "2025-11-03T09:20:44.791764", "data": { "technologies": [], "description": "", @@ -3690,7 +3690,7 @@ } }, "2023_creative-commons": { - "timestamp": "2025-10-27T09:21:15.542479", + "timestamp": "2025-11-03T09:21:19.233269", "data": { "technologies": [], "description": "", @@ -3753,7 +3753,7 @@ } }, "2023_zulip": { - "timestamp": "2025-10-20T09:20:59.584042", + "timestamp": "2025-11-03T09:20:25.583485", "data": { "technologies": [], "description": "", @@ -3771,7 +3771,7 @@ } }, "2023_aboutcode": { - "timestamp": "2025-10-27T09:20:46.905367", + "timestamp": "2025-11-03T09:20:48.034162", "data": { "technologies": [], "description": "", @@ -3798,7 +3798,7 @@ } }, "2023_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-20T09:20:51.433346", + "timestamp": "2025-11-03T09:21:23.082642", "data": { "technologies": [], "description": "", @@ -3825,7 +3825,7 @@ } }, "2023_postgresql": { - "timestamp": "2025-10-27T09:20:22.989359", + "timestamp": "2025-11-03T09:21:26.154179", "data": { "technologies": [], "description": "", @@ -3834,7 +3834,7 @@ } }, "2023_xorg-foundation": { - "timestamp": "2025-10-20T09:20:42.642658", + "timestamp": "2025-11-03T09:20:24.457300", "data": { "technologies": [], "description": "", @@ -3861,7 +3861,7 @@ } }, "2023_kotlin-foundation": { - "timestamp": "2025-10-27T09:20:20.771525", + "timestamp": "2025-11-03T09:20:21.328529", "data": { "technologies": [], "description": "", @@ -3870,7 +3870,7 @@ } }, "2023_carbon-language": { - "timestamp": "2025-10-27T09:20:22.383937", + "timestamp": "2025-11-03T09:21:15.386058", "data": { "technologies": [], "description": "", @@ -3933,7 +3933,7 @@ } }, "2023_criu": { - "timestamp": "2025-10-27T09:20:54.597873", + "timestamp": "2025-11-03T09:21:12.041940", "data": { "technologies": [], "description": "", @@ -3987,7 +3987,7 @@ } }, "2023_gnome-foundation": { - "timestamp": "2025-10-20T09:20:31.977001", + "timestamp": "2025-11-03T09:20:35.697722", "data": { "technologies": [], "description": "", @@ -4032,7 +4032,7 @@ } }, "2023_flare": { - "timestamp": "2025-10-27T09:20:46.296252", + "timestamp": "2025-11-03T09:20:59.712711", "data": { "technologies": [], "description": "", @@ -4086,7 +4086,7 @@ } }, "2023_drupal-association": { - "timestamp": "2025-10-27T09:20:35.011329", + "timestamp": "2025-11-03T09:21:10.931590", "data": { "technologies": [], "description": "", @@ -4104,7 +4104,7 @@ } }, "2023_cloudcv": { - "timestamp": "2025-10-27T09:20:29.967027", + "timestamp": "2025-11-03T09:21:23.695510", "data": { "technologies": [], "description": "", @@ -4122,7 +4122,7 @@ } }, "2023_ceph": { - "timestamp": "2025-10-27T09:20:33.297148", + "timestamp": "2025-11-03T09:21:27.377315", "data": { "technologies": [], "description": "", @@ -4140,7 +4140,7 @@ } }, "2023_oppia-foundation": { - "timestamp": "2025-10-27T09:20:52.162017", + "timestamp": "2025-11-03T09:20:58.090426", "data": { "technologies": [], "description": "", @@ -4185,7 +4185,7 @@ } }, "2023_haiku": { - "timestamp": "2025-10-27T09:20:34.404272", + "timestamp": "2025-11-03T09:20:35.087319", "data": { "technologies": [], "description": "", @@ -4194,7 +4194,7 @@ } }, "2023_jenkins-wp": { - "timestamp": "2025-10-20T09:20:49.554866", + "timestamp": "2025-11-03T09:21:03.447611", "data": { "technologies": [], "description": "", @@ -4203,7 +4203,7 @@ } }, "2023_sugar-labs": { - "timestamp": "2025-10-27T09:20:49.125855", + "timestamp": "2025-11-03T09:21:26.766560", "data": { "technologies": [], "description": "", @@ -4212,7 +4212,7 @@ } }, "2023_organic-maps": { - "timestamp": "2025-10-20T09:20:39.509605", + "timestamp": "2025-11-03T09:21:08.303744", "data": { "technologies": [], "description": "", @@ -4239,7 +4239,7 @@ } }, "2023_ardupilot": { - "timestamp": "2025-10-20T09:21:07.159764", + "timestamp": "2025-11-03T09:20:00.384439", "data": { "technologies": [], "description": "", @@ -4257,7 +4257,7 @@ } }, "2023_qdrant": { - "timestamp": "2025-10-27T09:21:00.788629", + "timestamp": "2025-11-03T09:21:13.664156", "data": { "technologies": [], "description": "", @@ -4284,7 +4284,7 @@ } }, "2023_postman": { - "timestamp": "2025-10-20T09:20:37.000419", + "timestamp": "2025-11-03T09:20:40.948186", "data": { "technologies": [], "description": "", @@ -4293,7 +4293,7 @@ } }, "2023_brl-cad": { - "timestamp": "2025-10-27T09:20:32.688658", + "timestamp": "2025-11-03T09:20:45.908223", "data": { "technologies": [], "description": "", @@ -4383,7 +4383,7 @@ } }, "2023_open-genome-informatics": { - "timestamp": "2025-10-27T09:20:28.751856", + "timestamp": "2025-11-03T09:20:49.148707", "data": { "technologies": [], "description": "", @@ -4419,7 +4419,7 @@ } }, "2023_r-project-for-statistical-computing": { - "timestamp": "2025-10-27T09:21:06.362190", + "timestamp": "2025-11-03T09:21:21.964357", "data": { "technologies": [], "description": "", @@ -4428,7 +4428,7 @@ } }, "2023_kiwix": { - "timestamp": "2025-10-20T09:21:06.527395", + "timestamp": "2025-11-03T09:20:36.307947", "data": { "technologies": [], "description": "", @@ -4437,7 +4437,7 @@ } }, "2023_gnu-radio": { - "timestamp": "2025-10-27T09:20:39.783311", + "timestamp": "2025-11-03T09:20:56.474418", "data": { "technologies": [], "description": "", @@ -4473,7 +4473,7 @@ } }, "2023_moveit": { - "timestamp": "2025-10-27T09:20:45.183360", + "timestamp": "2025-11-03T09:20:53.130662", "data": { "technologies": [], "description": "", @@ -4572,7 +4572,7 @@ } }, "2023_submitty": { - "timestamp": "2025-10-20T09:21:04.008805", + "timestamp": "2025-11-03T09:20:17.697808", "data": { "technologies": [], "description": "", @@ -4581,7 +4581,7 @@ } }, "2023_uc-ospo": { - "timestamp": "2025-10-20T09:20:45.154283", + "timestamp": "2025-11-03T09:20:42.567020", "data": { "technologies": [], "description": "", @@ -4635,7 +4635,7 @@ } }, "2023_openwisp": { - "timestamp": "2025-10-27T09:20:32.081508", + "timestamp": "2025-11-03T09:21:24.918546", "data": { "technologies": [], "description": "", @@ -4644,7 +4644,7 @@ } }, "2023_git": { - "timestamp": "2025-10-27T09:20:29.359266", + "timestamp": "2025-11-03T09:20:54.749103", "data": { "technologies": [], "description": "", @@ -4698,7 +4698,7 @@ } }, "2023_circuitverseorg": { - "timestamp": "2025-10-27T09:20:38.007086", + "timestamp": "2025-11-03T09:21:07.191320", "data": { "technologies": [], "description": "", @@ -4707,7 +4707,7 @@ } }, "2023_chromium-lj": { - "timestamp": "2025-10-27T09:20:57.090554", + "timestamp": "2025-11-03T09:21:14.774848", "data": { "technologies": [], "description": "", @@ -4743,7 +4743,7 @@ } }, "2023_opensuse-project": { - "timestamp": "2025-10-27T09:21:01.399744", + "timestamp": "2025-11-03T09:21:25.530308", "data": { "technologies": [], "description": "", @@ -4779,7 +4779,7 @@ } }, "2023_apertium": { - "timestamp": "2025-10-27T09:20:58.912015", + "timestamp": "2025-11-03T09:21:02.837993", "data": { "technologies": [], "description": "", @@ -4797,7 +4797,7 @@ } }, "2023_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-27T09:21:02.709037", + "timestamp": "2025-11-03T09:21:17.503878", "data": { "technologies": [], "description": "", @@ -4833,7 +4833,7 @@ } }, "2023_gnu-image-manipulation-program": { - "timestamp": "2025-10-20T09:21:00.210840", + "timestamp": "2025-11-03T09:21:24.309222", "data": { "technologies": [], "description": "", @@ -4905,7 +4905,7 @@ } }, "2023_the-netbsd-foundation": { - "timestamp": "2025-10-20T09:20:52.060229", + "timestamp": "2025-11-03T09:20:50.891626", "data": { "technologies": [], "description": "", @@ -4950,7 +4950,7 @@ } }, "2022_sugar-labs": { - "timestamp": "2025-10-27T09:23:03.886546", + "timestamp": "2025-11-03T09:23:06.621640", "data": { "technologies": [], "description": "", @@ -4959,7 +4959,7 @@ } }, "2022_spdx": { - "timestamp": "2025-10-27T09:22:28.799473", + "timestamp": "2025-11-03T09:22:31.300283", "data": { "technologies": [], "description": "", @@ -4968,7 +4968,7 @@ } }, "2022_the-mifos-initiative": { - "timestamp": "2025-10-20T09:23:12.620223", + "timestamp": "2025-11-03T09:22:52.232289", "data": { "technologies": [], "description": "", @@ -4986,7 +4986,7 @@ } }, "2022_the-jpf-team": { - "timestamp": "2025-10-27T09:22:58.008565", + "timestamp": "2025-11-03T09:23:03.157040", "data": { "technologies": [], "description": "", @@ -5004,7 +5004,7 @@ } }, "2022_librecube-initiative": { - "timestamp": "2025-10-20T09:22:48.706558", + "timestamp": "2025-11-03T09:22:29.684321", "data": { "technologies": [], "description": "", @@ -5013,7 +5013,7 @@ } }, "2022_neutralinojs": { - "timestamp": "2025-10-27T09:22:23.945027", + "timestamp": "2025-11-03T09:22:41.115755", "data": { "technologies": [], "description": "", @@ -5031,7 +5031,7 @@ } }, "2022_wikimedia-foundation": { - "timestamp": "2025-10-20T09:23:02.535810", + "timestamp": "2025-11-03T09:21:51.047089", "data": { "technologies": [], "description": "", @@ -5058,7 +5058,7 @@ } }, "2022_librehealth": { - "timestamp": "2025-10-20T09:22:09.084968", + "timestamp": "2025-11-03T09:21:31.900215", "data": { "technologies": [], "description": "", @@ -5076,7 +5076,7 @@ } }, "2022_seaql": { - "timestamp": "2025-10-27T09:22:49.240905", + "timestamp": "2025-11-03T09:23:07.858176", "data": { "technologies": [], "description": "", @@ -5112,7 +5112,7 @@ } }, "2022_forschungszentrum-julich": { - "timestamp": "2025-10-20T09:22:50.589647", + "timestamp": "2025-11-03T09:21:54.171188", "data": { "technologies": [], "description": "", @@ -5121,7 +5121,7 @@ } }, "2022_synfig": { - "timestamp": "2025-10-20T09:22:57.510148", + "timestamp": "2025-11-03T09:22:02.770040", "data": { "technologies": [], "description": "", @@ -5157,7 +5157,7 @@ } }, "2022_rtems-project": { - "timestamp": "2025-10-27T09:22:11.498163", + "timestamp": "2025-11-03T09:22:24.094063", "data": { "technologies": [], "description": "", @@ -5184,7 +5184,7 @@ } }, "2022_internet-health-report": { - "timestamp": "2025-10-27T09:22:39.772182", + "timestamp": "2025-11-03T09:23:14.797510", "data": { "technologies": [], "description": "", @@ -5193,7 +5193,7 @@ } }, "2022_strace": { - "timestamp": "2025-10-27T09:22:29.912466", + "timestamp": "2025-11-03T09:22:50.505897", "data": { "technologies": [], "description": "", @@ -5229,7 +5229,7 @@ } }, "2022_sympy": { - "timestamp": "2025-10-20T09:23:15.130393", + "timestamp": "2025-11-03T09:23:00.819199", "data": { "technologies": [], "description": "", @@ -5265,7 +5265,7 @@ } }, "2022_moja-global": { - "timestamp": "2025-10-20T09:22:41.156903", + "timestamp": "2025-11-03T09:22:26.335012", "data": { "technologies": [], "description": "", @@ -5283,7 +5283,7 @@ } }, "2022_open3d-team": { - "timestamp": "2025-10-27T09:22:52.576140", + "timestamp": "2025-11-03T09:23:02.042031", "data": { "technologies": [], "description": "", @@ -5301,7 +5301,7 @@ } }, "2022_ccextractor-development": { - "timestamp": "2025-10-20T09:22:38.642131", + "timestamp": "2025-11-03T09:22:23.479034", "data": { "technologies": [], "description": "", @@ -5310,7 +5310,7 @@ } }, "2022_mathesar": { - "timestamp": "2025-10-20T09:22:34.872624", + "timestamp": "2025-11-03T09:23:14.163642", "data": { "technologies": [], "description": "", @@ -5337,7 +5337,7 @@ } }, "2022_gnss-sdr": { - "timestamp": "2025-10-20T09:22:56.876673", + "timestamp": "2025-11-03T09:21:34.746547", "data": { "technologies": [], "description": "", @@ -5346,7 +5346,7 @@ } }, "2022_submitty": { - "timestamp": "2025-10-20T09:23:15.757203", + "timestamp": "2025-11-03T09:21:59.532315", "data": { "technologies": [], "description": "", @@ -5400,7 +5400,7 @@ } }, "2022_department-of-biomedical-informatics-emory-university": { - "timestamp": "2025-10-27T09:22:16.950217", + "timestamp": "2025-11-03T09:22:40.001673", "data": { "technologies": [], "description": "", @@ -5409,7 +5409,7 @@ } }, "2022_mixxx": { - "timestamp": "2025-10-20T09:22:32.360389", + "timestamp": "2025-11-03T09:22:55.075400", "data": { "technologies": [], "description": "", @@ -5490,7 +5490,7 @@ } }, "2022_gitlab": { - "timestamp": "2025-10-20T09:22:54.358156", + "timestamp": "2025-11-03T09:22:03.381543", "data": { "technologies": [], "description": "", @@ -5499,7 +5499,7 @@ } }, "2022_liquid-galaxy-project": { - "timestamp": "2025-10-20T09:22:12.853710", + "timestamp": "2025-11-03T09:22:33.026866", "data": { "technologies": [], "description": "", @@ -5544,7 +5544,7 @@ } }, "2022_django-software-foundation-8o": { - "timestamp": "2025-10-20T09:23:03.793761", + "timestamp": "2025-11-03T09:23:01.429605", "data": { "technologies": [], "description": "", @@ -5571,7 +5571,7 @@ } }, "2022_cbioportal-for-cancer-genomics": { - "timestamp": "2025-10-27T09:22:02.425105", + "timestamp": "2025-11-03T09:22:31.911189", "data": { "technologies": [], "description": "", @@ -5580,7 +5580,7 @@ } }, "2022_sktime": { - "timestamp": "2025-10-20T09:22:10.970433", + "timestamp": "2025-11-03T09:22:17.011269", "data": { "technologies": [], "description": "", @@ -5589,7 +5589,7 @@ } }, "2022_micro-electronics-research-lab-uitu": { - "timestamp": "2025-10-20T09:22:44.931661", + "timestamp": "2025-11-03T09:21:32.513430", "data": { "technologies": [], "description": "", @@ -5607,7 +5607,7 @@ } }, "2022_the-linux-foundation": { - "timestamp": "2025-10-20T09:22:51.216002", + "timestamp": "2025-11-03T09:21:56.297499", "data": { "technologies": [], "description": "", @@ -5769,7 +5769,7 @@ } }, "2022_freifunk": { - "timestamp": "2025-10-20T09:22:21.661466", + "timestamp": "2025-11-03T09:21:36.364679", "data": { "technologies": [], "description": "", @@ -5778,7 +5778,7 @@ } }, "2022_openastronomy": { - "timestamp": "2025-10-20T09:22:10.341683", + "timestamp": "2025-11-03T09:21:30.784030", "data": { "technologies": [], "description": "", @@ -5796,7 +5796,7 @@ } }, "2022_kodi": { - "timestamp": "2025-10-27T09:22:28.192727", + "timestamp": "2025-11-03T09:22:35.762143", "data": { "technologies": [], "description": "", @@ -5868,7 +5868,7 @@ } }, "2022_git": { - "timestamp": "2025-10-27T09:23:05.769273", + "timestamp": "2025-11-03T09:23:10.708208", "data": { "technologies": [], "description": "", @@ -5877,7 +5877,7 @@ } }, "2022_xfce": { - "timestamp": "2025-10-20T09:23:06.322599", + "timestamp": "2025-11-03T09:23:13.550334", "data": { "technologies": [], "description": "", @@ -5913,7 +5913,7 @@ } }, "2022_r-project-for-statistical-computing": { - "timestamp": "2025-10-20T09:23:06.950809", + "timestamp": "2025-11-03T09:22:28.065621", "data": { "technologies": [], "description": "", @@ -5922,7 +5922,7 @@ } }, "2022_the-tor-project": { - "timestamp": "2025-10-20T09:23:11.365614", + "timestamp": "2025-11-03T09:23:11.820618", "data": { "technologies": [], "description": "", @@ -5940,7 +5940,7 @@ } }, "2022_scala-center": { - "timestamp": "2025-10-27T09:22:39.167465", + "timestamp": "2025-11-03T09:22:58.700608", "data": { "technologies": [], "description": "", @@ -5967,7 +5967,7 @@ } }, "2022_open-bioinformatics-foundation-obf": { - "timestamp": "2025-10-20T09:22:23.553169", + "timestamp": "2025-11-03T09:22:47.882295", "data": { "technologies": [], "description": "", @@ -5994,7 +5994,7 @@ } }, "2022_cuneiform-digital-library-initiative-cdli": { - "timestamp": "2025-10-27T09:22:18.175569", + "timestamp": "2025-11-03T09:23:03.770362", "data": { "technologies": [], "description": "", @@ -6012,7 +6012,7 @@ } }, "2022_libvirt": { - "timestamp": "2025-10-20T09:23:14.500916", + "timestamp": "2025-11-03T09:22:12.155878", "data": { "technologies": [], "description": "", @@ -6021,7 +6021,7 @@ } }, "2022_freetype": { - "timestamp": "2025-10-27T09:22:53.790083", + "timestamp": "2025-11-03T09:23:12.935178", "data": { "technologies": [], "description": "", @@ -6030,7 +6030,7 @@ } }, "2022_cncf": { - "timestamp": "2025-10-20T09:22:29.834893", + "timestamp": "2025-11-03T09:22:34.146925", "data": { "technologies": [], "description": "", @@ -6120,7 +6120,7 @@ } }, "2022_grame": { - "timestamp": "2025-10-20T09:23:09.476610", + "timestamp": "2025-11-03T09:22:20.135726", "data": { "technologies": [], "description": "", @@ -6156,7 +6156,7 @@ } }, "2022_osgeo-open-source-geospatial-foundation": { - "timestamp": "2025-10-20T09:22:31.101803", + "timestamp": "2025-11-03T09:22:22.254787", "data": { "technologies": [], "description": "", @@ -6183,7 +6183,7 @@ } }, "2022_openstreetmap": { - "timestamp": "2025-10-20T09:23:00.024941", + "timestamp": "2025-11-03T09:22:12.768775", "data": { "technologies": [], "description": "", @@ -6192,7 +6192,7 @@ } }, "2022_jderobot": { - "timestamp": "2025-10-27T09:22:49.852240", + "timestamp": "2025-11-03T09:23:07.243883", "data": { "technologies": [], "description": "", @@ -6210,7 +6210,7 @@ } }, "2022_metasploit": { - "timestamp": "2025-10-27T09:22:25.157934", + "timestamp": "2025-11-03T09:22:52.844140", "data": { "technologies": [], "description": "", @@ -6219,7 +6219,7 @@ } }, "2022_ffmpeg": { - "timestamp": "2025-10-27T09:22:46.243012", + "timestamp": "2025-11-03T09:23:08.471063", "data": { "technologies": [], "description": "", @@ -6228,7 +6228,7 @@ } }, "2022_llvm-compiler-infrastructure": { - "timestamp": "2025-10-20T09:23:04.422165", + "timestamp": "2025-11-03T09:22:25.718335", "data": { "technologies": [], "description": "", @@ -6246,7 +6246,7 @@ } }, "2022_incf": { - "timestamp": "2025-10-20T09:23:00.655861", + "timestamp": "2025-11-03T09:22:01.652403", "data": { "technologies": [], "description": "", @@ -6282,7 +6282,7 @@ } }, "2022_kde-community": { - "timestamp": "2025-10-27T09:22:40.880331", + "timestamp": "2025-11-03T09:23:04.894155", "data": { "technologies": [], "description": "", @@ -6354,7 +6354,7 @@ } }, "2022_ankidroid": { - "timestamp": "2025-10-20T09:22:46.819134", + "timestamp": "2025-11-03T09:22:06.516493", "data": { "technologies": [], "description": "", @@ -6363,7 +6363,7 @@ } }, "2022_syslog-ng": { - "timestamp": "2025-10-20T09:22:19.149964", + "timestamp": "2025-11-03T09:22:26.946292", "data": { "technologies": [], "description": "", @@ -6399,7 +6399,7 @@ } }, "2022_casbin": { - "timestamp": "2025-10-20T09:22:51.843999", + "timestamp": "2025-11-03T09:22:37.376963", "data": { "technologies": [], "description": "", @@ -6408,7 +6408,7 @@ } }, "2022_purr-data": { - "timestamp": "2025-10-20T09:22:58.142421", + "timestamp": "2025-11-03T09:22:42.733051", "data": { "technologies": [], "description": "", @@ -6471,7 +6471,7 @@ } }, "2022_red-hen-lab": { - "timestamp": "2025-10-27T09:22:14.215853", + "timestamp": "2025-11-03T09:23:09.592467", "data": { "technologies": [], "description": "", @@ -6516,7 +6516,7 @@ } }, "2022_keptn": { - "timestamp": "2025-10-20T09:22:49.331707", + "timestamp": "2025-11-03T09:21:34.131532", "data": { "technologies": [], "description": "", @@ -6561,7 +6561,7 @@ } }, "2022_radar-base": { - "timestamp": "2025-10-27T09:22:42.095178", + "timestamp": "2025-11-03T09:22:54.462905", "data": { "technologies": [], "description": "", @@ -6579,7 +6579,7 @@ } }, "2022_opensuse-project": { - "timestamp": "2025-10-27T09:23:02.166516", + "timestamp": "2025-11-03T09:23:06.007114", "data": { "technologies": [], "description": "", @@ -6606,7 +6606,7 @@ } }, "2022_jboss-community": { - "timestamp": "2025-10-20T09:22:26.061013", + "timestamp": "2025-11-03T09:22:13.885843", "data": { "technologies": [], "description": "", @@ -6615,7 +6615,7 @@ } }, "2022_sagemath": { - "timestamp": "2025-10-20T09:22:27.315188", + "timestamp": "2025-11-03T09:22:51.617994", "data": { "technologies": [], "description": "", @@ -6624,7 +6624,7 @@ } }, "2022_musescore": { - "timestamp": "2025-10-20T09:23:07.582694", + "timestamp": "2025-11-03T09:21:58.416655", "data": { "technologies": [], "description": "", @@ -6651,7 +6651,7 @@ } }, "2022_postgresql": { - "timestamp": "2025-10-20T09:22:16.000293", + "timestamp": "2025-11-03T09:22:22.866369", "data": { "technologies": [], "description": "",